:root {
  --bg-primary: #faf7f0;
  --bg-warm: #f3efe6;
  --text-primary: #2c2822;
  --text-muted: #8a847a;
  --border-subtle: #e8e0d5;
  --accent: #bfa98a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-primary);
  background: var(--bg-primary);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Noto Sans TC", "PingFang TC", sans-serif;
  letter-spacing: 0;
}

button,
input,
select {
  font: inherit;
}

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

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 78px;
  padding: 0 clamp(18px, 4vw, 56px);
  background: rgba(250, 247, 240, 0.92);
  border-bottom: 1px solid var(--border-subtle);
  backdrop-filter: blur(16px);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hamburger {
  display: none;
  border: 0;
  color: var(--text-primary);
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.left-nav {
  justify-content: flex-start;
}

.right-nav {
  justify-content: flex-end;
}

.desktop-nav a,
.bag-link,
.search-link {
  border: 0;
  padding: 0;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.bag-link:hover,
.search-link:hover {
  color: var(--text-primary);
}

.bag-link span {
  margin-left: 5px;
  color: var(--text-primary);
}

.brand-lockup {
  display: grid;
  justify-items: center;
  text-align: center;
}

.brand-lockup strong {
  color: var(--text-primary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-lockup small {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  background: var(--bg-primary);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu nav {
  display: grid;
  gap: 28px;
  justify-items: center;
}

.mobile-menu a {
  color: var(--text-primary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  border: 0;
  color: var(--text-primary);
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-section {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 0 clamp(18px, 5vw, 72px) 84px;
  color: #fff;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.12);
}

.hero-content {
  position: relative;
  max-width: 760px;
  animation: heroFadeIn 1.2s 0.3s ease-out both;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-brand {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.04;
}

.text-cta {
  display: inline-flex;
  margin-top: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  color: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: border-color 200ms ease, color 200ms ease;
}

.text-cta:hover {
  color: rgba(255, 255, 255, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.9);
}

.section-shell {
  padding: 140px clamp(18px, 5vw, 72px);
  background: var(--bg-primary);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.08;
}

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--text-muted);
  line-height: 1.8;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(110px, 1fr));
  gap: 22px;
  padding-top: 34px;
}

.brand-card {
  border: 0;
  padding: 0;
  text-align: left;
  color: var(--text-primary);
  background: transparent;
  cursor: pointer;
}

.brand-card strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
}

.brand-card span {
  display: block;
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.55;
}

.brand-card:hover strong {
  color: var(--accent);
}

.product-layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 44px;
  align-items: start;
}

.filters {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 20px;
}

.filters label {
  display: grid;
  gap: 10px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.filters select {
  width: 100%;
  height: 42px;
  border: 0;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-primary);
  background: transparent;
  border-radius: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 24px;
}

.product-card {
  background: transparent;
  cursor: pointer;
}

.product-media {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-warm);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.02);
}

.product-card:hover .product-title h3 {
  color: var(--accent);
}

.product-body {
  padding-top: 18px;
}

.product-title {
  display: grid;
  gap: 5px;
}

.product-title h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
}

.product-title span,
.price-lines {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.7;
}

.price-lines {
  display: grid;
  gap: 3px;
  margin-top: 12px;
}

.price-lines div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.card-actions {
  display: flex;
  gap: 18px;
  margin-top: 16px;
}

.card-actions a,
.card-actions button {
  border: 0;
  border-bottom: 1px solid currentColor;
  padding: 0 0 3px;
  color: var(--text-primary);
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.card-actions a:hover,
.card-actions button:hover {
  color: var(--accent);
}

.site-footer p {
  color: var(--text-muted);
  line-height: 1.75;
}

.site-footer {
  padding: 72px clamp(18px, 5vw, 72px) 28px;
  color: var(--text-primary);
  background: var(--bg-warm);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 48px;
}

.site-footer h3 {
  margin: 0 0 18px;
  font-size: 18px;
}

.site-footer p {
  max-width: 420px;
  margin: 0;
  font-size: 13px;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 12px;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--border-subtle);
  margin-top: 54px;
  padding-top: 20px;
}

.product-dialog {
  width: min(860px, calc(100vw - 28px));
  border: 1px solid var(--border-subtle);
  border-radius: 0;
  padding: 0;
  color: var(--text-primary);
  background: var(--bg-primary);
}

.product-dialog::backdrop {
  background: rgba(44, 40, 34, 0.28);
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: 0;
  padding: 0;
  color: var(--text-primary);
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dialog-product {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
}

.dialog-product img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.dialog-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(28px, 5vw, 52px);
}

.dialog-copy h3 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
}

.dialog-copy p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.75;
}

.dialog-price {
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 18px 0;
}

.dialog-price div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--text-muted);
  font-size: 13px;
}

.dialog-actions {
  display: flex;
  gap: 18px;
}

.dialog-actions a,
.dialog-actions button {
  border: 0;
  border-bottom: 1px solid currentColor;
  padding: 0 0 3px;
  color: var(--text-primary);
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 1120px) {
  .brand-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 72px;
  }

  .hamburger {
    display: block;
  }

  .left-nav {
    display: none;
  }

  .right-nav {
    gap: 16px;
  }

  .right-nav a[href="#faq"] {
    display: none;
  }

  .brand-lockup {
    justify-items: start;
  }

  .brand-lockup strong {
    font-size: 20px;
  }

  .brand-lockup small {
    display: none;
  }

  .hero-section {
    padding: 0 18px 68px;
  }

  .hero-content h1 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .section-shell {
    padding: 104px 18px;
  }

  .brand-grid,
  .product-layout,
  .product-grid,
  .faq-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .filters {
    position: static;
  }

  .footer-bottom {
    display: grid;
  }

  .dialog-product {
    grid-template-columns: 1fr;
  }

  .dialog-product img {
    min-height: 320px;
    max-height: 380px;
  }
}

/* ===== TYPOGRAPHY UPGRADE ===== */
.eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  margin: 0 0 20px;
}

.section-heading h2 {
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1.04;
  margin: 0;
}

.section-heading p:not(.eyebrow) {
  margin: 24px 0 0;
  max-width: 580px;
  font-size: 15px;
  line-height: 1.9;
}

/* ===== SECTION SPACING ===== */
.section-shell {
  padding: 160px clamp(18px, 6vw, 80px);
  background: var(--bg-primary);
}

/* ===== ALTERNATING SECTIONS ===== */
.section-shell:nth-child(even) {
  background: var(--bg-warm);
}

/* ===== BRANDS — 改為圖片卡片 ===== */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.brand-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: var(--bg-warm);
  cursor: pointer;
}

.brand-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease, filter 700ms ease;
  filter: brightness(0.92);
}

.brand-card:hover img {
  transform: scale(1.04);
  filter: brightness(1);
}

.brand-card .brand-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 28px 28px;
  background: linear-gradient(to top, rgba(250,247,240,0.92) 0%, transparent 100%);
}

.brand-card .brand-label strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text-primary);
}

.brand-card .brand-label span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== PRODUCTS — 放大、去框 ===== */
.product-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 56px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px 28px;
}

.product-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-warm);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.03);
}

.product-body {
  padding-top: 20px;
}

.product-title h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
}

.product-title span {
  display: block;
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.price-lines {
  margin-top: 16px;
  display: grid;
  gap: 4px;
  font-size: 12px;
  color: var(--text-muted);
}

.card-actions button {
  border: 0;
  border-bottom: 1px solid var(--text-primary);
  background: transparent;
  padding: 0 0 4px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 18px;
}

.card-actions button:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.filters {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 24px;
}

.filters label {
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  display: grid;
  gap: 10px;
}

.filters select {
  border: 0;
  border-bottom: 1px solid var(--border-subtle);
  background: transparent;
  height: 38px;
  font-size: 13px;
  color: var(--text-primary);
  border-radius: 0;
}

/* ===== SCROLL FADE-IN ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms ease, transform 800ms ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== IMAGE BAND (首頁) ===== */
.image-band {
  width: 100%;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
}

.image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== FOOTER 微調 ===== */
.site-footer {
  padding: 100px clamp(18px, 6vw, 80px) 32px;
}

.footer-grid {
  grid-template-columns: 1.6fr 0.7fr 0.7fr;
  gap: 64px;
}

/* ===== MOBILE ===== */
@media (max-width: 820px) {
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .product-layout { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .faq-list { grid-template-columns: 1fr; }
  .section-shell { padding: 100px 18px; }
}

/* ===== PROCESS — editorial timeline ===== */
.process-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 72px 0;
  border-top: 1px solid var(--border-subtle);
}

.process-row:last-child {
  border-bottom: 1px solid var(--border-subtle);
}

.process-row.reverse .process-image {
  order: -1;
}

.process-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-num {
  display: block;
  font-family: Georgia, serif;
  font-size: 80px;
  line-height: 0.85;
  color: var(--accent);
  margin-bottom: 28px;
}

.process-text h3 {
  margin: 0 0 16px;
  font-size: 28px;
}

.process-text p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-muted);
  max-width: 420px;
}

/* ===== FAQ — clean accordion ===== */
.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 780px;
  margin-top: 40px;
}

.faq-item {
  border: 0;
  border-bottom: 1px solid var(--border-subtle);
  padding: 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--border-subtle);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: 21px;
  font-weight: 400;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 300;
  color: var(--accent);
  transition: transform 300ms ease;
}

.faq-item[open] summary::after {
  content: "−";
  transform: rotate(0);
}

.faq-item p {
  margin: 0 0 32px;
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 15px;
  max-width: 620px;
}

@media (max-width: 820px) {
  .process-row {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 0;
  }

  .process-row.reverse .process-image {
    order: 0;
  }
}

/* ===== CART DRAWER ===== */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(44, 40, 34, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}

.drawer-open .cart-drawer-overlay {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 210;
  width: min(440px, 92vw);
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg-primary);
  transform: translateX(100%);
  transition: transform 350ms ease;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 32px;
  border-bottom: 1px solid var(--border-subtle);
}

.cart-drawer-header h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.06em;
}

.cart-drawer-header h3 span {
  margin-left: 8px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 400;
}

.cart-drawer-header button {
  border: 0;
  padding: 0;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cart-drawer-header button:hover {
  color: var(--text-primary);
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 32px;
}

.cart-drawer-empty {
  margin: 60px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

.cart-drawer-list {
  display: grid;
  gap: 20px;
}

.cart-drawer-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  align-items: center;
}

.cart-drawer-item img {
  width: 72px;
  height: 96px;
  object-fit: cover;
}

.cart-drawer-item-info strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
}

.cart-drawer-item-info span {
  display: block;
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 12px;
}

.cart-drawer-remove {
  border: 0;
  padding: 4px;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.cart-drawer-remove:hover {
  color: var(--text-primary);
}

.cart-drawer-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 24px 32px 36px;
  display: none;
  flex-direction: column;
  gap: 20px;
}

.cart-drawer-footer.visible {
  display: flex;
}

.cart-drawer-total-line {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
}

.cart-drawer-total-line span:last-child {
  font-family: Georgia, serif;
  font-size: 20px;
}

.cart-drawer-checkout {
  width: 100%;
  border: 1px solid var(--text-primary);
  padding: 16px;
  color: var(--text-primary);
  background: transparent;
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: 15px;
  letter-spacing: 0.06em;
  transition: background 200ms ease, color 200ms ease;
}

.cart-drawer-checkout:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
}

.license-display {
  max-width: 800px;
  margin-top: 32px;
  border: 1px solid var(--border-subtle);
  padding: 40px;
  background: #fff;
}

.license-display img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 820px) {
  .cart-drawer {
    width: 100vw;
  }

  .cart-drawer-header,
  .cart-drawer-body,
  .cart-drawer-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .license-display {
    padding: 18px;
  }
}

/* ===== H5 COMPATIBILITY OVERRIDES ===== */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    padding: 0 18px;
  }

  .hamburger {
    justify-self: start;
  }

  .brand-lockup {
    justify-self: center;
    justify-items: center;
    min-width: 0;
  }

  .brand-lockup strong {
    max-width: 42vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 18px;
  }

  .right-nav {
    justify-self: end;
  }

  .right-nav a {
    display: none;
  }

  .bag-link {
    white-space: nowrap;
  }

  .mobile-menu {
    z-index: 220;
    padding: 72px 18px;
  }

  .mobile-menu nav {
    width: 100%;
  }

  .mobile-menu a {
    font-size: clamp(24px, 8vw, 34px);
    text-align: center;
  }

  .section-heading h2 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .product-layout {
    gap: 36px;
    margin-top: 40px;
  }

  .filters {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .filters select {
    width: 100%;
    min-height: 44px;
  }

  .product-dialog {
    width: calc(100vw - 24px);
    max-height: calc(100svh - 24px);
    overflow: auto;
  }

  .dialog-product img {
    min-height: 260px;
    max-height: 340px;
  }

  .dialog-actions {
    flex-wrap: wrap;
  }

  .cart-drawer {
    height: 100svh;
  }

  .cart-drawer-footer {
    padding-bottom: calc(28px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 560px) {
  .hero-section {
    min-height: 100svh;
    padding-bottom: 54px;
  }

  .hero-content h1 {
    font-size: clamp(34px, 12vw, 48px);
  }

  .brand-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .brand-card {
    aspect-ratio: 4 / 5;
  }

  .product-grid {
    gap: 42px;
  }

  .process-num {
    font-size: 64px;
  }

  .faq-item summary {
    gap: 20px;
    align-items: flex-start;
    font-size: 19px;
  }

  .cart-drawer-item {
    grid-template-columns: 64px 1fr auto;
    gap: 12px;
  }

  .cart-drawer-item img {
    width: 64px;
    height: 86px;
  }
}
