:root {
  --ink: #14110e;
  --muted: #6e655b;
  --paper: #f5efe4;
  --cream: #fffaf1;
  --white: #ffffff;
  --line: #ded1bd;
  --gold: #b7955b;
  --gold-soft: #e6d6b8;
  --charcoal: #1c1916;
  --shadow: 0 22px 70px rgba(20, 17, 14, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(245, 239, 228, 0.94);
  border-bottom: 1px solid rgba(222, 209, 189, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 42px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 6px;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.72rem;
  letter-spacing: 0;
}

.brand span:last-child {
  display: grid;
  gap: 1px;
}

.brand small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 26px);
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-links a:hover {
  color: var(--ink);
}

.button,
.nav-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0 18px;
  font-weight: 900;
  cursor: pointer;
}

.button.primary,
.nav-cta {
  background: var(--ink);
  color: var(--cream);
}

.button.secondary {
  background: rgba(255, 250, 241, 0.88);
  border-color: rgba(20, 17, 14, 0.14);
}

.button.full {
  width: 100%;
  border: 0;
  font-size: 1rem;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  min-height: min(690px, calc(88vh - 20px));
  padding: clamp(58px, 8vw, 106px) clamp(18px, 5vw, 70px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 28%, rgba(183, 149, 91, 0.18), transparent 28%),
    linear-gradient(135deg, #fffaf1 0%, #f3eadb 52%, #e6d6b8 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 26px;
  z-index: -1;
  border: 1px solid rgba(183, 149, 91, 0.26);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -18%;
  z-index: -1;
  width: 46%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 250, 241, 0.54);
  filter: blur(2px);
  pointer-events: none;
}


.hero-content {
  max-width: 740px;
}

.hero-products {
  position: relative;
  min-height: 520px;
}

.hero-products::before {
  content: "";
  position: absolute;
  inset: auto 2% 8% 8%;
  height: 46%;
  border-radius: 50%;
  background: rgba(20, 17, 14, 0.08);
  filter: blur(34px);
}

.hero-badge,
.catalog-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(183, 149, 91, 0.5);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.92);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(20, 17, 14, 0.12);
}

.hero-badge {
  position: absolute;
  right: 34%;
  bottom: 10%;
  z-index: 5;
}

.hero-bag {
  position: absolute;
  width: min(58vw, 520px);
  max-height: 470px;
  object-fit: contain;
  filter: drop-shadow(0 26px 28px rgba(20, 17, 14, 0.16));
}

.hero-bag-large {
  right: 7%;
  bottom: 4%;
  z-index: 3;
}

.hero-bag-medium {
  left: 0;
  bottom: 4%;
  z-index: 2;
  width: min(38vw, 330px);
}

.hero-bag-small {
  right: 1%;
  top: 4%;
  z-index: 1;
  width: min(36vw, 300px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.5vw, 4.6rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 600px;
  margin: 24px 0 0;
  color: #39332c;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.announcement {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
}

.announcement div {
  display: grid;
  gap: 6px;
  min-height: 104px;
  align-content: center;
  padding: 20px clamp(16px, 3vw, 34px);
  background: var(--charcoal);
  color: var(--cream);
}

.announcement span {
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.announcement strong {
  font-size: 0.98rem;
}

.intro-band,
.section,
.disclaimer {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 70px);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
  background: var(--cream);
}

.intro-band p:last-child,
.section-heading p,
.about-section p,
.request-panel p,
.contact-copy p {
  color: var(--muted);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 0.8fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: 30px;
}

.section-heading.compact {
  display: block;
  max-width: 820px;
}

.catalog-section {
  background: #f9f4eb;
}

.available-section {
  background: var(--white);
}

.inventory-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.inventory-toolbar p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.inventory-search {
  display: grid;
  gap: 8px;
  width: min(100%, 360px);
  font-weight: 900;
}

.inventory-search input {
  min-height: 44px;
  padding: 10px 12px;
}

.style-family-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.style-family-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  min-height: 430px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--cream);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.style-family-card:hover,
.style-family-card:focus-visible {
  border-color: rgba(182, 139, 73, 0.75);
  box-shadow: 0 18px 42px rgba(17, 14, 11, 0.12);
  transform: translateY(-3px);
}

.style-family-image {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 310px;
  padding: 12px;
  background: #fffaf1;
}

.catalog-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
}

.style-family-image img {
  width: 100%;
  height: 300px;
  object-fit: contain;
}

.style-family-copy {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.style-family-copy > span {
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1;
}

.style-family-copy small,
.style-family-copy em {
  color: var(--muted);
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 800;
}

.style-family-copy strong {
  font-size: 0.98rem;
}

.availability-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  place-items: center;
  padding: 22px;
  background: rgba(17, 14, 11, 0.62);
}

.availability-modal[aria-hidden="false"] {
  display: grid;
}

.availability-modal-card {
  position: relative;
  overflow: auto;
  width: min(1040px, 100%);
  max-height: min(86vh, 820px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.availability-modal-head {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(260px, 1fr);
  gap: clamp(18px, 4vw, 40px);
  align-items: center;
  padding: clamp(22px, 4vw, 42px);
  border-bottom: 1px solid var(--line);
  background: #fffaf1;
}

.availability-modal-head img {
  width: 100%;
  height: 260px;
  object-fit: contain;
}

.availability-modal-head h3 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.4rem);
}

.availability-modal-head p:last-child {
  color: var(--muted);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.modal-open {
  overflow: hidden;
}

.inventory-list {
  display: grid;
  gap: 12px;
}

.inventory-family {
  border-color: var(--line);
}

.inventory-family summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.inventory-family small {
  color: var(--muted);
  font-size: 0.82rem;
}

.inventory-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 12px;
  padding: 16px;
}

.inventory-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  min-height: 330px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbf6ee;
}

.inventory-item figure {
  display: grid;
  place-items: center;
  min-height: 190px;
  margin: 0;
  padding: 8px;
  background: var(--white);
}

.inventory-item img {
  width: 100%;
  height: 180px;
  object-fit: contain;
}

.inventory-item h3,
.inventory-item p {
  margin: 0;
}

.inventory-item h3 {
  font-family: var(--sans);
  font-size: 1rem;
}

.inventory-item p {
  color: var(--muted);
  font-size: 0.92rem;
}

.inventory-item strong {
  align-self: end;
  font-size: 0.98rem;
}

.inventory-item a {
  width: fit-content;
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.inventory-empty {
  margin: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.catalog-group {
  display: grid;
  gap: 16px;
  margin-top: clamp(28px, 5vw, 54px);
}

.catalog-group:first-of-type {
  margin-top: 0;
}

.catalog-group-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.catalog-group-heading span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
}

.catalog-group-heading h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  font-weight: 500;
}

.product-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(20, 17, 14, 0.06);
}

.product-image {
  display: grid;
  min-height: 360px;
  margin: 0;
  place-items: center;
  background: linear-gradient(180deg, #fffaf1 0%, #f0e6d7 100%);
  border-bottom: 1px solid var(--line);
}

.product-image img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  padding: 6px;
  filter: drop-shadow(0 18px 22px rgba(20, 17, 14, 0.12));
}

.product-image.placeholder {
  background-image: url("assets/luxury-bag-catalog.png");
  background-repeat: no-repeat;
  background-size: 300% 200%;
}

.crop-1 {
  background-position: 0% 0%;
}

.crop-2 {
  background-position: 50% 0%;
}

.crop-3 {
  background-position: 100% 0%;
}

.crop-4 {
  background-position: 0% 100%;
}

.crop-5 {
  background-position: 50% 100%;
}

.crop-6 {
  background-position: 100% 100%;
}

.product-body {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.product-kicker {
  margin: 0;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-body p:not(.product-kicker) {
  margin: 0;
  color: var(--muted);
}

.product-body strong {
  font-size: 1.08rem;
}

.product-body a {
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 5px;
}

.steps-section {
  background: var(--cream);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.steps article {
  min-height: 168px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.steps span {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--gold);
  font-weight: 900;
}

.why-section,
.about-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(280px, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.benefit-grid p {
  min-height: 88px;
  margin: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--cream);
  font-weight: 800;
}

.why-copy {
  max-width: 460px;
  color: var(--muted);
}

.customs-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  background: var(--ink);
  color: var(--cream);
}

.customs-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 250, 241, 0.72);
}

.customs-panel {
  display: grid;
  gap: 20px;
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.06);
}

.customs-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.customs-panel li {
  position: relative;
  padding-left: 30px;
  font-weight: 900;
}

.customs-panel li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.customs-panel p {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 250, 241, 0.16);
  color: rgba(255, 250, 241, 0.78);
}

.insight-section {
  background: #fffaf1;
}

.tiktok-frame {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  align-items: start;
  margin-top: 24px;
}

.insight-video {
  display: grid;
  gap: 12px;
}

.insight-video h3 {
  margin: 0;
  font-size: 1.05rem;
}

.tiktok-frame .tiktok-embed {
  width: 100%;
  min-width: 280px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.creator-note {
  max-width: 680px;
  margin: 20px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.92rem;
}

.request-section {
  background: var(--charcoal);
}

.request-panel {
  max-width: 860px;
  color: var(--cream);
}

.request-panel p {
  max-width: 620px;
}

.faq-section {
  background: var(--cream);
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 940px;
}

details {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 20px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.policy-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(280px, 1fr);
  gap: clamp(28px, 5vw, 76px);
}

.policy-section ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.policy-section li {
  padding: 16px 18px;
  border-left: 3px solid var(--gold);
  background: var(--cream);
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(280px, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
  background: var(--ink);
  color: var(--cream);
}

.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-list a {
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 250, 241, 0.22);
  border-radius: 4px;
  color: var(--cream);
  font-weight: 900;
}

.order-form {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--cream);
  color: var(--ink);
}

.order-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #d5c8b8;
  border-radius: 4px;
  background: white;
  color: var(--ink);
  font: inherit;
}

textarea,
select,
.order-form input {
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--gold);
  font-weight: 900;
}

.message-output {
  background: #efe5d5;
}

.disclaimer {
  background: #fff6e4;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #4d4438;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 70px);
  background: #100e0c;
  color: rgba(255, 250, 241, 0.74);
}

.footer p {
  margin: 0;
}

.footer p:first-child {
  color: var(--cream);
  font-weight: 900;
}

.chat-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
}

.chat-launcher {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 8px 16px 8px 8px;
  border: 1px solid rgba(255, 250, 241, 0.2);
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  cursor: pointer;
  box-shadow: 0 18px 36px rgba(17, 14, 11, 0.2);
}

.chat-launcher span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
}

.chat-launcher strong {
  font-size: 0.95rem;
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 68px;
  display: none;
  overflow: hidden;
  width: min(380px, calc(100vw - 36px));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 26px 70px rgba(17, 14, 11, 0.22);
}

.chat-panel[aria-hidden="false"] {
  display: block;
}

.chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  background: var(--ink);
  color: var(--cream);
}

.chat-head p,
.chat-head span {
  margin: 0;
}

.chat-head p {
  font-weight: 900;
}

.chat-head span {
  color: rgba(255, 250, 241, 0.68);
  font-size: 0.86rem;
}

.chat-close {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 250, 241, 0.22);
  border-radius: 50%;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  font-size: 1.25rem;
}

.chat-messages {
  display: grid;
  gap: 10px;
  max-height: 320px;
  padding: 16px;
  overflow: auto;
  background: #fffaf1;
}

.chat-message {
  width: fit-content;
  max-width: 86%;
  margin: 0;
  padding: 11px 13px;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.92rem;
}

.chat-message.user {
  justify-self: end;
  background: var(--ink);
  color: var(--cream);
}

.chat-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 16px 0;
}

.chat-prompts button {
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 16px;
}

.chat-form input {
  min-height: 44px;
  padding: 10px 12px;
}

.chat-form button {
  min-height: 44px;
  padding: 10px 14px;
  border: 0;
  border-radius: 4px;
  background: var(--ink);
  color: var(--cream);
  cursor: pointer;
  font-weight: 900;
}

@media (max-width: 1100px) {
  .nav-links {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .announcement {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 640px;
    padding-top: 52px;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero-products {
    min-height: 360px;
  }

  .hero-bag-large {
    right: 6%;
    width: min(72vw, 410px);
  }

  .hero-bag-medium {
    left: 2%;
    width: min(46vw, 250px);
  }

  .hero-bag-small {
    right: 0;
    top: 0;
    width: min(42vw, 220px);
  }

  .hero-badge {
    right: 12%;
    bottom: 9%;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(3rem, 13vw, 5rem);
  }

  .announcement,
  .intro-band,
  .section-heading,
  .inventory-toolbar,
  .steps,
  .why-section,
  .benefit-grid,
  .customs-section,
  .policy-section,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .inventory-toolbar {
    display: grid;
  }

  .inventory-search {
    width: 100%;
  }

  .footer {
    display: grid;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand small {
    display: none;
  }

  .nav-cta {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 610px;
  }

  .style-family-card {
    min-height: 380px;
  }

  .style-family-image {
    min-height: 260px;
  }

  .style-family-image img {
    height: 250px;
  }

  .availability-modal {
    padding: 12px;
  }

  .availability-modal-head {
    grid-template-columns: 1fr;
  }

  .availability-modal-head img {
    height: 220px;
  }

  .hero-content {
    width: calc(100% - 28px);
  }

  .hero-products {
    min-height: 280px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .chat-widget {
    right: 12px;
    bottom: 12px;
  }

  .chat-panel {
    width: calc(100vw - 24px);
  }

  .chat-launcher strong {
    display: none;
  }

  .announcement {
    grid-template-columns: 1fr;
  }

  .product-image {
    min-height: 310px;
  }

  .product-image img {
    height: 310px;
  }
}
