@import "tailwindcss";

:root {
  --background: #f6f6f6;
  --foreground: #151515;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Arial, Helvetica, sans-serif;
}
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { display: block; }

.store-page {
  min-height: 100vh;
  background: #f7f7f7;
  color: #151515;
}

.store-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 58px;
  background: #181818;
  color: #f4f4f4;
}

.store-header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 1240px;
  height: 100%;
  margin: 0 auto;
  padding: 0 32px;
}

.store-logo {
  display: grid;
  min-width: 78px;
  line-height: 1;
  text-transform: uppercase;
}
.store-logo span { font-size: 22px; font-weight: 700; letter-spacing: -0.08em; }
.store-logo small { margin-top: 2px; font-size: 7px; letter-spacing: 0.42em; color: #a8a8a8; }
.store-nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%; font-size: 14px; color: #d6d6d6; }
.store-nav a { white-space: nowrap; transition: color 160ms ease; }
.store-nav a:hover { color: #ffffff; }

.hero-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(390px, 0.92fr) minmax(520px, 1.08fr);
  min-height: 650px;
  overflow: hidden;
  background: radial-gradient(circle at 78% 44%, #ffb64b 0 18%, transparent 19%), linear-gradient(105deg, #fff5e4 0%, #ffd99d 50%, #f4a746 100%);
}

.hero-banner__copy {
  z-index: 2;
  align-self: center;
  padding: 74px 0 48px max(32px, calc((100vw - 1240px) / 2 + 32px));
}
.hero-banner h1 { margin: 0; max-width: 620px; font-size: clamp(42px, 4.1vw, 66px); line-height: 0.98; font-weight: 800; text-transform: uppercase; }
.hero-banner__subtitle { margin: 16px 0 12px; font-size: clamp(24px, 2.2vw, 34px); }
.hero-banner ul { margin: 0 0 70px; padding-left: 24px; font-size: 18px; line-height: 1.35; color: #262626; }
.hero-banner__actions { display: flex; gap: 14px; margin-bottom: 22px; }
.hero-banner__actions a { display: inline-flex; align-items: center; justify-content: center; width: 164px; height: 44px; background: #111; color: white; font-size: 12px; text-transform: uppercase; }
.hero-banner__actions a + a { background: white; color: #333; }
.hero-banner__brand { margin: 0; font-size: 16px; line-height: 1.14; text-transform: uppercase; letter-spacing: 0.18em; }
.hero-banner__lines { display: flex; gap: 12px; margin-top: 70px; }
.hero-banner__lines span { display: block; width: 88px; height: 3px; background: rgba(255,255,255,0.88); }
.hero-banner__scene { position: relative; min-height: 650px; }
.hero-banner__sun { position: absolute; top: 46px; right: 70px; width: 500px; aspect-ratio: 1; border-radius: 50%; background: rgba(238, 137, 25, 0.52); box-shadow: 0 0 0 4px rgba(255,255,255,0.62), inset 0 0 60px rgba(255,210,128,0.55); }
.hero-banner__stone { position: absolute; right: 0; bottom: -28px; width: 680px; height: 170px; background: linear-gradient(165deg, #efc583, #c98239); border-radius: 72% 0 0 0 / 55% 0 0 0; box-shadow: inset 0 35px 70px rgba(255,244,217,0.5); }
.spf-stick { position: absolute; right: 250px; bottom: 138px; width: 150px; height: 420px; border-radius: 12px 12px 8px 8px; overflow: hidden; box-shadow: 26px 32px 60px rgba(82,44,8,0.36); }
.spf-stick__cap { height: 300px; padding-top: 46px; background: linear-gradient(90deg, #f47b18, #ff942e 50%, #c9550b); color: #fff8ef; text-align: center; font-family: Georgia, serif; font-size: 21px; letter-spacing: 0.07em; }
.spf-stick__body { height: 120px; background: linear-gradient(90deg, #f2eee5, #fff 52%, #e2d8c9); text-align: center; color: #ff7a13; }
.spf-stick__body strong { display: block; padding-top: 18px; font-size: 66px; line-height: 0.8; }
.spf-stick__body span { font-size: 12px; font-weight: 700; }

.promo-ticker { display: flex; gap: 30px; overflow: hidden; height: 24px; align-items: center; background: #080808; color: white; white-space: nowrap; font-size: 10px; text-transform: uppercase; }
.promo-ticker span { flex: 0 0 auto; }

.page-section { max-width: 1240px; margin: 0 auto; padding: 72px 32px; }
.compact-section { padding-bottom: 40px; }
.page-section h2 { margin: 0 0 34px; font-size: 18px; font-weight: 700; }
.brand-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.brand-strip div { display: flex; align-items: center; justify-content: center; height: 58px; background: #fff; font-family: Georgia, serif; font-size: 18px; font-weight: 700; text-align: center; }

.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 42px 26px; }
.product-card { position: relative; min-width: 0; background: #fff; padding: 0 0 8px; }
.product-card h3 { min-height: 36px; margin: 14px 0 5px; font-size: 12px; line-height: 1.32; font-weight: 700; }
.product-card p { min-height: 28px; margin: 0 0 8px; font-size: 10px; line-height: 1.35; color: #696969; }
.product-card strong { display: block; margin-bottom: 14px; font-size: 11px; }
.heart-button { position: absolute; top: 8px; right: 10px; z-index: 2; width: 24px; height: 24px; border: 0; background: transparent; font-size: 18px; line-height: 1; }
.hit-badge { position: absolute; top: 9px; left: 9px; z-index: 2; display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: #060606; color: #ff3030; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.cart-button, .center-action a, .center-action button { display: inline-flex; align-items: center; justify-content: center; min-width: 118px; height: 31px; border: 0; background: #060606; color: #fff; padding: 0 18px; font-size: 9px; font-weight: 700; text-transform: uppercase; }
.center-action { display: flex; justify-content: center; margin-top: 28px; }

.product-visual { position: relative; display: grid; place-items: center; width: 100%; height: 245px; overflow: hidden; background: #fff; }
.product-visual--image { object-fit: contain; padding: 18px; }
.product-visual span, .product-visual i, .product-visual b { display: block; position: absolute; }
.product-visual--cream span { width: 120px; height: 70px; border-radius: 50% 50% 44px 44px; background: #f8ca55; bottom: 72px; box-shadow: inset 0 18px 25px rgba(255,255,255,0.5); }
.product-visual--cream i { width: 70px; height: 22px; border-radius: 50%; background: #ffd777; bottom: 132px; }
.product-visual--bottle span { width: 56px; height: 160px; border-radius: 30px 30px 18px 18px; background: linear-gradient(#ffd9d7, #ff9eab); bottom: 38px; }
.product-visual--bottle i { width: 34px; height: 32px; border-radius: 8px 8px 0 0; background: #e9c7a7; bottom: 188px; }
.product-visual--palette span { width: 118px; height: 138px; border-radius: 4px; background: #edb8ac; bottom: 52px; }
.product-visual--palette i { width: 62px; height: 62px; border-radius: 50%; background: #d8897f; bottom: 90px; }
.product-visual--stick span { width: 62px; height: 176px; border-radius: 36px; background: linear-gradient(#d3a082 0 42%, #f2dfca 43%); bottom: 34px; }
.product-visual--stick i { width: 72px; height: 72px; border-radius: 50%; background: rgba(208,146,104,0.25); bottom: 100px; }
.product-visual--kit span { width: 180px; height: 124px; border-radius: 8px; background: #ffd5d9; bottom: 54px; }
.product-visual--kit i { width: 48px; height: 120px; border-radius: 24px; background: #fff1a7; bottom: 76px; left: 52%; }
.product-visual--kit b { width: 38px; height: 96px; border-radius: 20px; background: #ff8b95; bottom: 76px; left: 34%; }
.product-visual--tube span { width: 72px; height: 172px; border-radius: 18px 18px 34px 34px; background: linear-gradient(#fff, #efd6bd); bottom: 34px; }
.product-visual--tube i { width: 45px; height: 28px; border-radius: 8px; background: #d6b69a; bottom: 30px; }

.trend-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trend-card { min-height: 430px; display: grid; grid-template-rows: 1fr 44px; gap: 16px; }
.trend-card div { display: flex; align-items: flex-start; justify-content: center; padding: 22px; color: white; text-align: center; background: linear-gradient(160deg, #2b201b, #c79478); }
.trend-card--2 div { background: linear-gradient(160deg, #52453d, #d8b99f); }
.trend-card--3 div { background: linear-gradient(160deg, #f2d1c9, #744539); }
.trend-card--4 div { background: linear-gradient(160deg, #5d392d, #f1b99e); }
.trend-card p { max-width: 220px; margin: 0; font-size: 13px; line-height: 1.45; }
.trend-card button { border: 0; background: #050505; color: white; font-size: 10px; font-weight: 700; text-transform: uppercase; }

.gift-banner { display: grid; grid-template-columns: 1fr 0.9fr; align-items: center; max-width: 1120px; min-height: 360px; margin: 70px auto; padding: 52px 44px; overflow: hidden; background: #ffe0b7; }
.gift-banner h2 { margin: 0; font-size: 44px; line-height: 1.04; text-transform: uppercase; }
.gift-banner p { max-width: 430px; margin: 24px 0 64px; color: #6d5747; font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase; }
.gift-banner a { display: inline-flex; align-items: center; justify-content: center; width: 190px; height: 42px; background: white; font-size: 10px; text-transform: uppercase; }
.gift-banner__person { position: relative; min-height: 280px; background: radial-gradient(circle at 52% 30%, #f6b0a9 0 12%, transparent 13%), radial-gradient(circle at 52% 23%, #16110f 0 12%, transparent 13%), linear-gradient(100deg, transparent 0 34%, #f8a9be 35% 68%, transparent 69%); }
.gift-banner__person span { position: absolute; top: 58px; left: 38%; transform: rotate(-8deg); display: grid; place-items: center; width: 120px; height: 76px; background: #1a1a1a; color: white; font-weight: 700; }

.testimonials-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.testimonials-grid blockquote { min-height: 230px; margin: 0; padding: 36px 28px; background: #fff; color: #555; font-size: 13px; line-height: 1.8; }
.testimonial-photo { min-height: 230px; background: linear-gradient(135deg, #c99a75, #f4dbce); }
.testimonial-photo--product { background: linear-gradient(135deg, #efe4d6, #bc7f72); }

.help-section { max-width: 1160px; margin: 88px auto 130px; padding: 0 32px; }
.help-title { display: flex; align-items: center; height: 112px; margin-bottom: 28px; background: #fff; padding: 0 40px; }
.help-title h1 { margin: 0; font-size: 30px; font-weight: 500; }
.help-tabs { display: grid; grid-template-columns: 1.1fr 1.1fr 2.2fr 1.1fr 1.1fr; margin-bottom: 18px; }
.help-tabs button { height: 36px; border: 1px solid #161616; background: transparent; font-size: 11px; text-transform: uppercase; }
.help-tabs .is-active { background: #090909; color: white; }
.faq-list { display: grid; gap: 12px; }
.faq-item { background: #fff; }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; min-height: 78px; padding: 0 30px; list-style: none; font-size: 18px; font-weight: 600; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span { position: relative; width: 24px; height: 24px; }
.faq-item summary span::before, .faq-item summary span::after { content: ""; position: absolute; inset: 50% auto auto 0; width: 24px; height: 1px; background: #111; }
.faq-item summary span::after { transform: rotate(90deg); }
.faq-item[open] summary span::after { display: none; }
.faq-item p { margin: 0; padding: 0 30px 28px; color: #555; line-height: 1.7; }

.catalog-layout { display: grid; grid-template-columns: 170px 1fr; gap: 40px; max-width: 1240px; margin: 80px auto 120px; padding: 0 32px; }
.catalog-filters { display: grid; align-content: start; gap: 30px; font-size: 11px; }
.catalog-filters h2 { margin: 0 0 14px; font-size: 12px; }
.catalog-filters label { display: flex; align-items: center; gap: 8px; margin-bottom: 9px; color: #555; }
.catalog-filters input { width: 12px; height: 12px; accent-color: #111; }
.catalog-toolbar { display: flex; justify-content: flex-end; gap: 18px; margin-bottom: 28px; }
.catalog-toolbar input, .catalog-toolbar select { height: 32px; border: 0; border-bottom: 1px solid #cfcfcf; background: transparent; color: #777; font-size: 11px; outline: none; }
.catalog-content .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 54px; }

.store-footer { background: #030303; color: #cfcfcf; padding: 76px 32px 42px; }
.store-footer__top { display: grid; grid-template-columns: 1.2fr 1fr 1.6fr 1fr; gap: 70px; max-width: 1240px; margin: 0 auto; }
.store-footer h3 { margin: 0 0 20px; color: white; font-size: 12px; }
.store-footer a { display: block; margin-bottom: 14px; color: #bdbdbd; font-size: 11px; }
.subscribe-form { max-width: 1240px; margin: 90px auto 0; }
.subscribe-form label { display: block; margin-bottom: 28px; color: white; font-size: 13px; font-weight: 700; }
.subscribe-form div { display: grid; grid-template-columns: minmax(240px, 470px) 170px; gap: 44px; }
.subscribe-form input { height: 40px; border: 0; border-bottom: 1px solid #565656; background: transparent; color: white; outline: none; }
.subscribe-form button { height: 40px; border: 1px solid #fff; background: transparent; color: white; font-size: 10px; font-weight: 700; }
.store-footer__bottom { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1240px; margin: 110px auto 0; font-size: 10px; }
.store-footer__note { max-width: 1240px; margin: 28px auto 0; font-size: 9px; color: #9a9a9a; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

.admin-section { border-radius: 28px; background: #ffffff; padding: 24px; box-shadow: 0 1px 2px rgba(40, 28, 19, 0.04); }
.admin-grid { display: grid; gap: 16px; }
.admin-item { display: grid; gap: 16px; border-radius: 24px; border: 1px solid #eee4da; background: #fffaf5; padding: 18px; }
.admin-input { margin-top: 8px; height: 48px; width: 100%; border-radius: 16px; border: 1px solid #e1d3c4; background: #ffffff; padding: 0 14px; outline: none; transition: border-color 160ms ease, box-shadow 160ms ease; }
.admin-input:focus { border-color: #b7772e; box-shadow: 0 0 0 3px rgba(183, 119, 46, 0.14); }

@media (max-width: 1100px) {
  .store-nav { overflow-x: auto; gap: 18px; }
  .hero-banner { grid-template-columns: 1fr; }
  .hero-banner__copy { padding: 56px 32px 0; }
  .hero-banner__scene { min-height: 420px; }
  .spf-stick { right: 24%; bottom: 78px; transform: scale(0.82); transform-origin: bottom center; }
  .product-grid, .trend-grid, .testimonials-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog-layout { grid-template-columns: 1fr; }
  .catalog-filters { grid-template-columns: repeat(3, 1fr); }
  .catalog-content .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .store-header__inner { padding: 0 16px; gap: 16px; }
  .store-nav { font-size: 12px; }
  .hero-banner { min-height: auto; }
  .hero-banner__copy { padding: 42px 18px 0; }
  .hero-banner h1 { font-size: 38px; }
  .hero-banner__subtitle { font-size: 22px; }
  .hero-banner ul { margin-bottom: 36px; font-size: 15px; }
  .hero-banner__actions { flex-wrap: wrap; }
  .hero-banner__lines { margin-top: 36px; }
  .hero-banner__scene { min-height: 330px; }
  .hero-banner__sun { width: 280px; right: 12px; }
  .hero-banner__stone { width: 420px; }
  .spf-stick { right: 28%; bottom: 54px; transform: scale(0.58); }
  .page-section { padding: 48px 18px; }
  .brand-strip, .product-grid, .trend-grid, .testimonials-grid, .store-footer__top, .store-footer__bottom, .gift-banner, .catalog-content .product-grid { grid-template-columns: 1fr; }
  .gift-banner { margin: 40px 18px; padding: 32px 22px; }
  .gift-banner h2 { font-size: 30px; }
  .help-section { margin: 48px auto 80px; padding: 0 18px; }
  .help-tabs { grid-template-columns: 1fr; }
  .faq-item summary { font-size: 15px; padding: 0 18px; }
  .catalog-layout { margin: 48px auto 80px; padding: 0 18px; }
  .catalog-filters { grid-template-columns: 1fr; }
  .catalog-toolbar { justify-content: stretch; flex-direction: column; }
  .subscribe-form div { grid-template-columns: 1fr; gap: 16px; }
}

@media (min-width: 640px) {
  .admin-grid,
  .admin-item { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.empty-products {
  display: grid;
  place-items: center;
  min-height: 180px;
  border: 1px dashed #d9d9d9;
  background: #fff;
  text-align: center;
}
.empty-products p {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
}
.empty-products span {
  color: #777;
  font-size: 13px;
}
.admin-product-card {
  display: grid;
  grid-template-rows: 190px 1fr;
  min-height: 100%;
}
.admin-product-card__image {
  display: grid;
  place-items: center;
  background: #fbf8f4;
  color: #9a8a7b;
  font-size: 13px;
}
.admin-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
}
.admin-product-card__body {
  display: grid;
  gap: 10px;
  padding: 16px;
}
.admin-product-card__body h4 {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
}
.admin-product-card__body p {
  margin: 0;
  color: #73665c;
  font-size: 13px;
  line-height: 1.45;
}
.admin-product-card__body div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
}
.admin-product-card__body span {
  color: #8c7d70;
}
.filter-group {
  min-width: 0;
}
.filter-search {
  width: 100%;
  height: 32px;
  margin: 0 0 10px;
  border: 0;
  border-bottom: 1px solid #d8d8d8;
  background: transparent;
  font-size: 11px;
  outline: none;
}
.filter-options {
  display: grid;
  gap: 9px;
}
.filter-options--scroll {
  max-height: 260px;
  overflow-y: auto;
  padding-right: 6px;
}
.price-range {
  display: grid;
  gap: 10px;
}
.price-range input[type="range"] {
  width: 100%;
  accent-color: #111;
}
.price-range div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #555;
  font-size: 11px;
}
.catalog-category-sections {
  display: grid;
  gap: 64px;
}
.catalog-category-section {
  scroll-margin-top: 86px;
}
.catalog-category-section h2 {
  margin: 0 0 24px;
  font-size: 20px;
}
.hero-banner__image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-banner__image ~ .hero-banner__sun,
.hero-banner__image ~ .hero-banner__stone {
  display: none;
}

/* Figma alignment overrides */
body {
  background: #fcfcfc;
  font-family: Inter, Arial, Helvetica, sans-serif;
}

.store-page {
  background: #fcfcfc;
  color: #000;
}

.store-header {
  height: 91px;
  background: #171717;
  color: #fff;
}

.store-header__inner {
  max-width: 1920px;
  padding: 0 100px;
  gap: 70px;
}

.store-logo {
  display: flex;
  align-items: center;
  min-width: 85px;
  width: 85px;
}

.store-logo img {
  width: 85px;
  height: auto;
}

.store-logo span,
.store-logo small {
  display: none;
}

.store-nav {
  gap: clamp(24px, 2.45vw, 47px);
  justify-content: flex-start;
  font-size: clamp(14px, 1vw, 19.3px);
  font-weight: 300;
  color: #fff;
}

.hero-banner {
  display: block;
  min-height: 990px;
  background: #fce0b4;
  overflow: hidden;
}

.hero-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-banner__copy {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100vw - 48px));
  padding: 254px 0 60px max(24px, 5.2vw);
}

.hero-banner h1 {
  max-width: none;
  font-family: Montserrat, Inter, Arial, sans-serif;
  font-size: clamp(42px, 3.35vw, 64px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-banner__subtitle {
  margin: 18px 0 14px;
  font-family: Montserrat, Inter, Arial, sans-serif;
  font-size: clamp(23px, 1.88vw, 36px);
  line-height: 1.15;
}

.hero-banner ul {
  margin: 0 0 76px;
  padding-left: 31px;
  font-family: Montserrat, Inter, Arial, sans-serif;
  font-size: clamp(16px, 1.25vw, 24px);
  line-height: 1.12;
  color: #000;
}

.hero-banner__actions {
  gap: 20px;
  margin-bottom: 38px;
}

.hero-banner__actions a {
  width: 253px;
  height: 65px;
  border-radius: 4px;
  background: #171717;
  font-size: 20px;
  font-weight: 300;
}

.hero-banner__actions a + a {
  width: 319px;
  background: #fff;
  color: #171717;
}

.hero-banner__brand {
  font-family: Montserrat, Inter, Arial, sans-serif;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.1;
  letter-spacing: 0.14em;
  color: #000;
}

.hero-banner__lines {
  gap: 19px;
  margin-top: 93px;
}

.hero-banner__lines span {
  width: 133px;
  height: 5px;
  background: rgba(255,255,255,0.5);
}

.hero-banner__lines span:first-child {
  background: #fff;
}

.hero-banner__scene {
  display: none;
}

.promo-ticker {
  height: 39px;
  gap: 34px;
  padding-left: 0;
  background: #171717;
  font-size: 12px;
  text-transform: uppercase;
}

.page-section {
  max-width: 1720px;
  padding: 74px 0;
}

.compact-section {
  padding-top: 74px;
  padding-bottom: 60px;
}

.page-section h2 {
  margin: 0 0 42px;
  font-family: Montserrat, Inter, Arial, sans-serif;
  font-size: 26px;
  font-weight: 700;
}

.brand-strip {
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.brand-strip div {
  height: 89px;
  border-radius: 6px;
  font-size: 20px;
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 74px 56px;
}

.product-card {
  background: transparent;
}

.product-visual {
  height: 520px;
  border-radius: 6px;
  background: #fff;
}

.product-visual--image {
  padding: 24px;
}

.product-card h3 {
  min-height: 31px;
  margin: 26px 0 6px;
  color: #3d231d;
  font-size: 14px;
  line-height: 1.15;
}

.product-card p {
  min-height: 20px;
  color: #3d231d;
  font-size: 14px;
  line-height: 1.45;
}

.product-card strong {
  color: #3d231d;
  font-size: 12px;
}

.cart-button,
.center-action a,
.center-action button {
  min-width: 192px;
  height: 40px;
  background: #000;
  font-size: 10px;
  font-weight: 400;
}

.center-action {
  margin-top: 50px;
}

.trend-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.trend-card {
  min-height: 580px;
  gap: 20px;
}

.trend-card button {
  height: 50px;
  font-size: 12px;
}

.gift-banner {
  max-width: 1720px;
  min-height: 757px;
  margin: 92px auto;
  padding: 95px 65px;
  grid-template-columns: 0.95fr 1.05fr;
  border-radius: 8px;
  background: #fce5c8;
}

.gift-banner h2 {
  font-family: Montserrat, Inter, Arial, sans-serif;
  font-size: clamp(42px, 3.35vw, 64px);
  line-height: 1.1;
}

.gift-banner p {
  margin-top: 52px;
  font-family: Montserrat, Inter, Arial, sans-serif;
  font-size: 24px;
  color: #000;
}

.gift-banner a {
  width: 319px;
  height: 65px;
  margin-top: 188px;
  border-radius: 4px;
  font-size: 20px;
  font-weight: 300;
}

.gift-banner__person {
  min-height: 620px;
  background: transparent;
  overflow: visible;
}

.gift-banner__person img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
}

.gift-banner__person span {
  display: none;
}

.testimonials-section {
  padding-top: 40px;
  padding-bottom: 210px;
}

.testimonials-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.testimonials-grid blockquote,
.testimonial-photo {
  min-height: 375px;
  border-radius: 9px;
}

.testimonials-grid blockquote {
  padding: 50px 44px;
  background: #f8f8f8;
  color: #3d231d;
  font-size: 18px;
  line-height: 1.65;
}

.testimonial-photo {
  overflow: hidden;
  background: #fff;
}

.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.help-section {
  max-width: 1824px;
  margin: 120px auto 200px;
  padding: 0 48px;
}

.help-title {
  height: 179px;
  margin-bottom: 35px;
  border-radius: 6px;
  padding: 0 64px;
}

.help-title h1 {
  font-size: 38px;
}

.help-tabs {
  grid-template-columns: 290px 286px 570px 286px 290px;
  margin-bottom: 22px;
}

.help-tabs button {
  height: 53px;
  border-color: #000;
  font-size: 16px;
}

.faq-list {
  gap: 14px;
}

.faq-item {
  border-radius: 6px;
}

.faq-item summary {
  min-height: 101px;
  padding: 0 56px;
  font-size: 22px;
  font-weight: 400;
}

.faq-item summary span,
.faq-item summary span::before,
.faq-item summary span::after {
  width: 35px;
}

.catalog-layout {
  grid-template-columns: 250px 1fr;
  gap: 48px;
  max-width: 1880px;
  margin: 120px auto 180px;
  padding: 0 20px;
}

.catalog-filters {
  gap: 32px;
  padding-left: 0;
  font-size: 15px;
}

.catalog-filters h2 {
  margin-bottom: 18px;
  font-size: 15px;
  font-weight: 500;
}

.catalog-filters label {
  gap: 14px;
  margin-bottom: 13px;
  color: #000;
}

.catalog-filters input {
  width: 20px;
  height: 20px;
}

.catalog-toolbar {
  height: 28px;
  margin-bottom: 20px;
}

.catalog-toolbar input,
.catalog-toolbar select {
  height: 28px;
  border: 1px solid #ddd;
  border-radius: 3px;
  background: #f8f8f8;
  font-size: 14px;
}

.catalog-content .product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 86px 58px;
}

.catalog-content .product-visual {
  height: 500px;
}

.catalog-category-section h2 {
  display: none;
}

.store-footer {
  min-height: 770px;
  padding: 85px 100px 60px;
  background: #000;
  color: #fff;
}

.store-footer__top {
  max-width: 1720px;
  grid-template-columns: 1.25fr 1.15fr 2fr 1fr;
  gap: 96px;
}

.store-footer h3 {
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: 500;
}

.store-footer a {
  margin-bottom: 22px;
  color: #fff;
  font-size: 13px;
}

.subscribe-form {
  max-width: 1720px;
  margin-top: 118px;
}

.subscribe-form label {
  font-size: 16px;
}

.subscribe-form div {
  grid-template-columns: 728px 224px;
  gap: 40px;
}

.subscribe-form input,
.subscribe-form button {
  height: 48px;
}

.store-footer__bottom {
  max-width: 1720px;
  margin-top: 130px;
  font-size: 13px;
}

.store-footer__note {
  max-width: 1720px;
  font-size: 10px;
}

@media (max-width: 1200px) {
  .store-header__inner { padding: 0 32px; gap: 32px; }
  .store-nav { overflow-x: auto; gap: 24px; font-size: 15px; }
  .hero-banner { min-height: 720px; }
  .hero-banner__copy { padding-top: 150px; }
  .hero-banner__actions a { width: 190px; height: 52px; font-size: 14px; }
  .hero-banner__actions a + a { width: 230px; }
  .page-section,
  .gift-banner,
  .store-footer__top,
  .subscribe-form,
  .store-footer__bottom,
  .store-footer__note { max-width: calc(100vw - 48px); }
  .product-grid,
  .catalog-content .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-visual,
  .catalog-content .product-visual { height: 420px; }
  .help-tabs { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .store-header { height: 64px; }
  .store-header__inner { padding: 0 18px; }
  .store-logo, .store-logo img { width: 72px; min-width: 72px; }
  .hero-banner { min-height: 620px; }
  .hero-banner__bg { object-position: 62% top; opacity: 0.72; }
  .hero-banner__copy { padding: 92px 18px 32px; }
  .hero-banner h1 { font-size: 36px; }
  .hero-banner__subtitle { font-size: 20px; }
  .hero-banner ul { font-size: 14px; margin-bottom: 34px; }
  .hero-banner__actions a,
  .hero-banner__actions a + a { width: 100%; height: 48px; font-size: 12px; }
  .hero-banner__brand { font-size: 14px; }
  .hero-banner__lines span { width: 64px; }
  .page-section { max-width: none; padding: 48px 18px; }
  .brand-strip,
  .product-grid,
  .trend-grid,
  .testimonials-grid,
  .catalog-content .product-grid,
  .gift-banner,
  .store-footer__top,
  .store-footer__bottom { grid-template-columns: 1fr; }
  .product-visual,
  .catalog-content .product-visual { height: 330px; }
  .gift-banner { max-width: none; min-height: auto; margin: 44px 18px; padding: 32px 22px; }
  .gift-banner h2 { font-size: 30px; }
  .gift-banner p { font-size: 13px; margin: 22px 0; }
  .gift-banner a { width: 100%; height: 48px; margin-top: 24px; font-size: 12px; }
  .help-section { margin: 52px auto 90px; padding: 0 18px; }
  .help-title { height: 120px; padding: 0 24px; }
  .help-title h1 { font-size: 28px; }
  .help-tabs { grid-template-columns: 1fr; }
  .faq-item summary { min-height: 78px; padding: 0 18px; font-size: 15px; }
  .catalog-layout { grid-template-columns: 1fr; margin: 52px auto 90px; padding: 0 18px; }
  .catalog-filters { font-size: 14px; }
  .catalog-toolbar { flex-direction: column; height: auto; }
  .store-footer { min-height: auto; padding: 52px 18px 36px; }
  .subscribe-form div { grid-template-columns: 1fr; }
}

/* Figma fix pass */
.help-tabs {
  grid-template-columns: 1.04fr 1.03fr 2.05fr 1.03fr 1.04fr;
  width: 100%;
}

/* Hero spacing match pass */
.hero-banner ul {
  margin-bottom: 175px;
  list-style: disc outside;
}

.hero-banner__lines {
  margin-top: 155px;
}

@media (max-width: 1200px) {
  .hero-banner ul { margin-bottom: 76px; }
  .hero-banner__lines { margin-top: 92px; }
}

@media (max-width: 700px) {
  .hero-banner ul { margin-bottom: 34px; }
  .hero-banner__lines { margin-top: 36px; }
}

/* Interactive marquee and slider controls */
.hero-banner__lines button {
  display: block;
  width: 133px;
  height: 5px;
  border: 0;
  padding: 0;
  background: rgba(255,255,255,0.5);
}

.hero-banner__lines button.is-active {
  background: #fff;
}

.marquee {
  --marquee-duration: 22s;
  --marquee-direction: normal;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  width: max-content;
  gap: 34px;
  animation: marquee-scroll var(--marquee-duration) linear infinite;
  animation-direction: var(--marquee-direction);
}

.promo-ticker span {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-marquee-section {
  overflow: hidden;
}

.brand-marquee {
  --marquee-duration: 28s;
  --marquee-direction: reverse;
  overflow: hidden;
}

.brand-marquee__track {
  display: flex;
  width: max-content;
  gap: 22px;
  animation: marquee-scroll var(--marquee-duration) linear infinite;
  animation-direction: var(--marquee-direction);
}

.brand-marquee:hover .brand-marquee__track {
  animation-play-state: paused;
}

.brand-marquee__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 326px;
  height: 89px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: #fff;
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  transition: border-color 160ms ease;
}

.brand-marquee__item:hover {
  border-color: #000;
}

.brand-marquee__item img {
  max-width: 72%;
  max-height: 58px;
  object-fit: contain;
}

.hit-badge--new {
  color: #111;
  background: #fff;
  border: 1px solid #111;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 700px) {
  .hero-banner__lines button { width: 64px; }
  .brand-marquee__item { flex-basis: 240px; height: 72px; font-size: 18px; }
}

/* Trend review media cards */
.trend-card {
  min-width: 0;
}

.trend-card__media {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding: 26px;
  background: linear-gradient(160deg, #2b201b, #c79478);
  color: #fff;
  text-align: center;
}

.trend-card--2 .trend-card__media { background: linear-gradient(160deg, #52453d, #d8b99f); }
.trend-card--3 .trend-card__media { background: linear-gradient(160deg, #f2d1c9, #744539); }
.trend-card--4 .trend-card__media { background: linear-gradient(160deg, #5d392d, #f1b99e); }

.trend-card__media img,
.trend-card__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trend-card__media video {
  background: #111;
}

.trend-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.36), rgba(0,0,0,0.05) 34%, rgba(0,0,0,0.22));
  pointer-events: none;
}

.trend-card__media p {
  position: relative;
  z-index: 1;
  max-width: 270px;
  margin: 0;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,0.28);
}

.trend-card__fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #2b201b, #c79478);
}

.trend-card__fallback--2 { background: linear-gradient(160deg, #52453d, #d8b99f); }
.trend-card__fallback--3 { background: linear-gradient(160deg, #f2d1c9, #744539); }
.trend-card__fallback--4 { background: linear-gradient(160deg, #5d392d, #f1b99e); }

.trend-card a,
.trend-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border: 0;
  background: #050505;
  color: white;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Stability fixes: centered header, fixed hero height, stable slider controls */
.store-header__inner {
  justify-content: center;
}

.store-nav {
  width: auto;
  flex: 0 1 auto;
  justify-content: center;
}

.hero-banner {
  height: 990px;
  min-height: 990px;
}

.hero-banner__copy {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 990px;
}

.hero-banner h1 {
  min-height: 138px;
}

.hero-banner__subtitle {
  min-height: 84px;
}

.hero-banner__bullets {
  min-height: 82px;
  margin-bottom: 76px;
}

.hero-banner__bullets.is-empty {
  list-style: none;
}

.hero-banner__actions,
.hero-banner__brand {
  flex: 0 0 auto;
}

.hero-banner__lines {
  margin-top: auto;
}

.catalog-category-section {
  scroll-margin-top: 118px;
}

@media (max-width: 1200px) {
  .hero-banner {
    height: 720px;
    min-height: 720px;
  }

  .hero-banner__copy {
    min-height: 720px;
  }

  .hero-banner h1 {
    min-height: 108px;
  }

  .hero-banner__subtitle {
    min-height: 58px;
  }

  .hero-banner__bullets {
    min-height: 66px;
    margin-bottom: 42px;
  }
}

@media (max-width: 700px) {
  .store-header__inner {
    justify-content: flex-start;
  }

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

  .hero-banner {
    height: 620px;
    min-height: 620px;
  }

  .hero-banner__copy {
    min-height: 620px;
  }

  .hero-banner h1 {
    min-height: 80px;
  }

  .hero-banner__subtitle {
    min-height: 46px;
  }

  .hero-banner__bullets {
    min-height: 58px;
    margin-bottom: 28px;
  }
}

.product-stock {
  display: block;
  margin: 0 0 8px;
  color: #5f534a;
  font-size: 11px;
  line-height: 1.35;
}

/* Admin catalog controls */
.admin-primary-link,
.admin-filter-submit,
.admin-product-actions a,
.admin-product-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 0;
  border-radius: 16px;
  background: #221b16;
  color: #fff;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.admin-filter-reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid #d8c8b6;
  border-radius: 16px;
  background: #fff;
  color: #221b16;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 700;
}
.admin-view-toggle {
  display: flex;
  gap: 4px;
  border: 1px solid #d8c8b6;
  border-radius: 18px;
  background: #fff;
  padding: 5px;
}
.admin-view-toggle a {
  min-width: 86px;
  border-radius: 13px;
  padding: 10px 16px;
  color: #221b16;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}
.admin-view-toggle a.is-active {
  background: #221b16;
  color: #fff;
}
.admin-product-filters {
  display: grid;
  grid-template-columns: minmax(220px, 2fr) repeat(4, minmax(130px, 1fr));
  gap: 10px;
  border: 1px solid #e5d8ca;
  border-radius: 24px;
  background: #fffaf5;
  padding: 16px;
}
.admin-filter-search { grid-column: span 2; }
.admin-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.admin-product-list {
  display: grid;
  gap: 10px;
}
.admin-product-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  border: 1px solid #eee4da;
  border-radius: 22px;
  background: #fff;
  padding: 14px 16px;
}
.admin-product-row h4 {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
}
.admin-product-row p {
  margin: 5px 0 0;
  color: #73665c;
  font-size: 13px;
}
.admin-product-tile {
  display: grid;
  grid-template-rows: 1fr auto;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #eee4da;
  border-radius: 24px;
  background: #fff;
}
.admin-product-tile .admin-product-actions {
  border-top: 1px solid #eee4da;
  padding: 12px;
}
.admin-product-card {
  display: grid;
  grid-template-rows: 220px minmax(165px, auto);
  min-height: 385px;
  min-width: 0;
  overflow: hidden;
}
.admin-product-card__image {
  display: grid;
  place-items: center;
  height: 220px;
  overflow: hidden;
  background: #fbf8f4;
  color: #9a8a7b;
  font-size: 13px;
}
.admin-product-card__image img {
  width: 100%;
  height: 100%;
  max-height: 220px;
  object-fit: contain;
  padding: 14px;
}
.admin-product-card__body {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
  padding: 16px;
}
.admin-product-card__body h4 {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 15px;
  line-height: 1.35;
}
.admin-product-card__body p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #73665c;
  font-size: 13px;
  line-height: 1.45;
}
.admin-product-card__body div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
}
.admin-product-card__body span,
.admin-product-card__body small { color: #8c7d70; }
.admin-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.admin-product-actions button {
  background: #fff;
  color: #221b16;
  border: 1px solid #d8c8b6;
}
.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  padding: 24px;
}
.admin-modal:target { display: grid; place-items: center; }
.admin-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 12, 0.48);
}
.admin-modal__panel {
  position: relative;
  z-index: 1;
  width: min(880px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  border-radius: 28px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 24px 80px rgba(20, 16, 12, 0.28);
}
.admin-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.admin-modal__header h3 { margin: 0; font-size: 20px; }
.admin-modal__header a {
  border: 1px solid #d8c8b6;
  border-radius: 14px;
  padding: 9px 14px;
  color: #221b16;
  font-size: 13px;
  font-weight: 700;
}
.admin-toggle-panel {
  display: grid;
  gap: 12px;
  border: 1px solid #e5d8ca;
  border-radius: 20px;
  background: #fffaf5;
  padding: 16px;
}
.admin-toggle-panel h3,
.admin-toggle-panel p { margin: 0; }
.admin-toggle-panel label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #221b16;
  font-size: 14px;
}
.admin-toggle-panel input { width: 16px; height: 16px; accent-color: #b7772e; }
.admin-toggle-panel p { color: #73665c; font-size: 13px; line-height: 1.45; }
@media (max-width: 1100px) {
  .admin-product-filters { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .admin-filter-search { grid-column: span 2; }
  .admin-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .admin-product-filters,
  .admin-product-row { grid-template-columns: 1fr; }
  .admin-filter-search { grid-column: span 1; }
  .admin-product-grid { grid-template-columns: 1fr; }
  .admin-modal { padding: 12px; }
  .admin-modal__panel { max-height: calc(100vh - 24px); padding: 16px; }
}

/* Admin product refinements */
.admin-product-topbar {
  display: flex;
  align-items: stretch;
  gap: 14px;
  margin-bottom: 20px;
}
.admin-product-topbar form { display: flex; align-items: stretch; }
.admin-submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.admin-submit-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #ffffff;
  border-radius: 999px;
  animation: admin-spin 700ms linear infinite;
}
@keyframes admin-spin {
  to { transform: rotate(360deg); }
}
.admin-status {
  margin-bottom: 14px;
  border-radius: 18px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 600;
}
.admin-status--success { border: 1px solid #b8d8bc; background: #effaf1; color: #256431; }
.admin-status--error { border: 1px solid #efb8b8; background: #fff1f1; color: #9b1c1c; }
.admin-product-row.is-hidden,
.admin-product-tile.is-hidden { background: #f3f1ee; color: #756c64; }
.admin-product-row.is-hidden .admin-product-row__dates,
.admin-product-tile.is-hidden .admin-product-card__body span,
.admin-product-tile.is-hidden .admin-product-card__body small { color: #91877d; }
.admin-product-row__dates {
  margin-top: 3px !important;
  color: #8c7d70 !important;
  font-size: 12px !important;
}
.admin-product-actions {
  align-items: center;
  justify-content: flex-end;
}
.admin-icon-button {
  display: inline-grid !important;
  place-items: center;
  width: 42px;
  min-width: 42px;
  height: 42px;
  min-height: 42px !important;
  border: 1px solid #d8c8b6 !important;
  border-radius: 14px !important;
  background: #221b16 !important;
  color: #fff !important;
  padding: 0 !important;
}
.admin-icon-button.is-muted {
  background: #e6e0da !important;
  color: #71685f !important;
  border-color: #d5cbc0 !important;
}
.admin-icon-button svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}
.admin-current-image {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  border: 1px solid #eaded1;
  border-radius: 18px;
  background: #fff;
  padding: 10px;
}
.admin-current-image img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  border-radius: 14px;
  background: #fbf8f4;
}
.admin-current-image span {
  min-width: 0;
  overflow-wrap: anywhere;
  color: #8c7d70;
  font-size: 12px;
  line-height: 1.4;
}
.admin-product-form-dates {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border: 1px solid #eaded1;
  border-radius: 16px;
  background: #fff;
  padding: 10px 12px;
  color: #73665c;
  font-size: 13px;
}
@media (max-width: 700px) {
  .admin-product-topbar { flex-direction: column; }
  .admin-product-actions { justify-content: flex-start; }
  .admin-current-image { grid-template-columns: 1fr; }
}

.help-doc-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.help-document-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  align-items: start;
  border: 1px solid #eee4da;
  background: #fff;
  padding: 24px;
}

.help-document-card img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  background: #fbf8f4;
}

.help-document-card h2 {
  margin: 0 0 10px;
  font-size: 18px;
}

.help-document-card p {
  margin: 0;
  color: #555;
  line-height: 1.7;
}

.help-file-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 44px;
  margin-top: 16px;
  background: #050505;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.faq-empty {
  background: #fff;
  padding: 28px;
  color: #73665c;
}

@media (max-width: 760px) {
  .help-document-card {
    grid-template-columns: 1fr;
  }
}
/* Mobile adaptation pass */
@media (max-width: 900px) {
  .store-header {
    position: sticky;
    top: 0;
    height: auto;
  }

  .store-header__inner {
    min-height: 72px;
    padding: 10px 16px;
    align-items: center;
  }

  .store-nav {
    padding-bottom: 4px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .store-nav::-webkit-scrollbar { display: none; }

  .hero-banner {
    height: auto;
    min-height: 640px;
  }

  .hero-banner__copy {
    width: 100%;
    max-width: 100%;
    min-height: 640px;
    padding-right: 18px;
  }

  .hero-banner h1 {
    max-width: 92vw;
    overflow-wrap: anywhere;
  }

  .hero-banner__actions {
    width: min(100%, 420px);
    flex-direction: column;
    gap: 12px;
  }

  .catalog-layout {
    display: block;
  }

  .catalog-filters {
    position: static;
    margin-bottom: 28px;
  }

  .catalog-toolbar {
    align-items: stretch;
    gap: 10px;
  }

  .catalog-toolbar label,
  .catalog-toolbar input,
  .catalog-toolbar select {
    width: 100%;
  }

  .product-card h3,
  .product-card p {
    overflow-wrap: anywhere;
  }

  .admin-section {
    border-radius: 22px;
    padding: 20px 16px;
  }

  .admin-product-topbar,
  .admin-product-row {
    flex-direction: column;
  }

  .admin-product-actions {
    width: 100%;
    justify-content: flex-start;
  }

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

  .admin-filter-search {
    grid-column: auto;
  }

  .admin-modal {
    padding: 10px;
  }

  .admin-modal__panel {
    width: 100%;
    max-height: calc(100vh - 20px);
    border-radius: 24px;
  }

  .admin-item,
  .admin-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .store-logo,
  .store-logo img {
    width: 68px;
    min-width: 68px;
  }

  .store-nav {
    gap: 18px;
    font-size: 13px;
  }

  .promo-ticker {
    height: 28px;
    font-size: 10px;
  }

  .hero-banner {
    min-height: 610px;
  }

  .hero-banner__copy {
    min-height: 610px;
    padding-top: 74px;
  }

  .hero-banner h1 {
    min-height: auto;
    font-size: 34px;
    line-height: 0.98;
  }

  .hero-banner__subtitle {
    min-height: auto;
    font-size: 19px;
    line-height: 1.15;
  }

  .hero-banner__bullets,
  .hero-banner ul {
    min-height: auto;
    margin-bottom: 28px;
    padding-left: 20px;
  }

  .hero-banner__brand {
    font-size: 13px;
    line-height: 1.25;
  }

  .hero-banner__lines {
    gap: 10px;
  }

  .hero-banner__lines button,
  .hero-banner__lines span {
    width: 52px;
  }

  .page-section,
  .compact-section {
    padding: 42px 16px;
  }

  .page-section h2 {
    font-size: 24px;
  }

  .product-grid,
  .catalog-content .product-grid {
    gap: 34px;
  }

  .product-visual,
  .catalog-content .product-visual {
    height: 280px;
  }

  .product-card .cart-button,
  .center-action a,
  .center-action button {
    width: 100%;
  }

  .brand-marquee__item {
    flex-basis: 210px;
  }

  .trend-card__media {
    min-height: 420px;
  }

  .gift-banner {
    overflow: hidden;
  }

  .gift-banner__person {
    margin-top: 22px;
  }

  .store-footer__top,
  .subscribe-form,
  .store-footer__bottom {
    gap: 28px;
  }

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

  .admin-current-image img,
  .admin-product-card__image img {
    max-height: 260px;
    object-fit: contain;
  }
}
/* Mobile navigation and catalog filter drawer */
.mobile-nav,
.catalog-filter-toggle,
.help-section-select {
  display: none;
}

@media (max-width: 900px) {
  .store-header {
    height: 72px;
  }

  .store-header__inner {
    min-height: 72px;
    justify-content: space-between;
  }

  .store-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
    position: relative;
    margin-left: auto;
  }

  .mobile-nav summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 112px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 0;
    color: #fff;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    list-style: none;
    text-transform: uppercase;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav summary span,
  .mobile-nav summary span::before,
  .mobile-nav summary span::after {
    display: block;
    width: 16px;
    height: 2px;
    background: currentColor;
    content: "";
  }

  .mobile-nav summary span {
    position: relative;
  }

  .mobile-nav summary span::before,
  .mobile-nav summary span::after {
    position: absolute;
    left: 0;
  }

  .mobile-nav summary span::before { top: -6px; }
  .mobile-nav summary span::after { top: 6px; }

  .mobile-nav__panel {
    position: fixed;
    inset: 72px 0 auto auto;
    z-index: 80;
    width: min(82vw, 340px);
    min-height: calc(100vh - 72px);
    padding: 24px 22px 40px;
    background: #121212;
    box-shadow: -24px 0 50px rgba(0, 0, 0, 0.28);
  }

  .mobile-nav__panel nav {
    display: grid;
    gap: 4px;
  }

  .mobile-nav__panel a {
    display: flex;
    align-items: center;
    min-height: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
  }

  .help-section {
    margin-top: 34px;
    padding: 0 16px;
  }

  .help-title {
    height: auto;
    min-height: 86px;
    margin-bottom: 14px;
    padding: 24px 20px;
  }

  .help-title h1 {
    font-size: 28px;
    line-height: 1.1;
  }

  .help-section-select {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
  }

  .help-section-select span {
    color: #555;
    font-size: 12px;
  }

  .help-section-select select {
    width: 100%;
    height: 46px;
    border: 1px solid #161616;
    background: #fff;
    padding: 0 14px;
    color: #111;
    font-size: 14px;
  }

  .help-tabs {
    display: none;
  }

  .faq-list {
    gap: 10px;
  }

  .faq-item summary {
    min-height: 66px;
    padding: 14px 16px;
    gap: 18px;
    font-size: 15px;
    line-height: 1.25;
  }

  .faq-item summary span {
    flex: 0 0 22px;
  }

  .faq-item p {
    padding: 0 16px 20px;
    font-size: 14px;
  }

  .catalog-layout {
    display: block;
    margin-top: 34px;
  }

  .catalog-filter-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 46px;
    margin: 0 0 16px;
    border: 1px solid #111;
    background: #111;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .catalog-filter-toggle::before {
    content: "";
    width: 14px;
    height: 10px;
    margin-right: 10px;
    border-top: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    box-shadow: inset 0 4px 0 transparent, 0 4px 0 currentColor;
  }

  .catalog-filters {
    display: none;
    margin: 0 0 22px;
    padding: 18px;
    border: 1px solid #dedede;
    background: #fff;
  }

  .catalog-filters.is-open {
    display: grid;
    gap: 26px;
  }

  .catalog-filters label {
    min-height: 34px;
    margin-bottom: 8px;
    font-size: 14px;
  }

  .catalog-filters input[type="radio"],
  .catalog-filters input[type="checkbox"] {
    width: 18px;
    height: 18px;
  }

  .filter-options--scroll {
    max-height: 240px;
  }

  .catalog-toolbar {
    display: grid;
    gap: 10px;
    margin-bottom: 22px;
  }

  .catalog-toolbar input,
  .catalog-toolbar select {
    height: 42px;
    border: 1px solid #d8d8d8;
    padding: 0 12px;
    background: #fff;
    font-size: 14px;
  }
}
/* Figma customer help sections */
.help-section {
  max-width: 1824px;
  margin: 88px auto 130px;
  padding: 0 32px;
}

.help-title {
  display: flex;
  align-items: center;
  min-height: 179px;
  margin-bottom: 32px;
  padding: 0 60px;
  border-radius: 6px;
  background: #fff;
}

.help-title h1 {
  margin: 0;
  color: #0a0a0a;
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
}

.help-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr 1fr 1fr;
  margin: 0 auto 24px;
}

.help-tabs button {
  min-height: 53px;
  border: 1px solid #111;
  border-left-width: 0;
  background: #fff;
  color: #0a0a0a;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.help-tabs button:first-child {
  border-left-width: 1px;
  border-radius: 6px 0 0 6px;
}

.help-tabs button:last-child {
  border-radius: 0 6px 6px 0;
}

.help-tabs .is-active {
  background: #070707;
  color: #fff;
}

.faq-list {
  display: grid;
  gap: 21px;
}

.faq-item {
  overflow: hidden;
  border-radius: 6px;
  background: #fff;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 101px;
  padding: 0 56px;
  color: #0a0a0a;
  cursor: pointer;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
  list-style: none;
}

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

.faq-item summary span {
  position: relative;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
}

.faq-item summary span::before,
.faq-item summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 34px;
  height: 1px;
  background: #111;
}

.faq-item summary span::after { transform: rotate(90deg); }
.faq-item[open] summary span::after { display: none; }

.faq-item p {
  margin: 0;
  padding: 0 56px 32px;
  color: #3d3d3d;
  font-size: 16px;
  line-height: 1.55;
}

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

.help-info-card {
  min-height: 340px;
  padding: 52px 54px;
  border: 1px solid #111;
  border-radius: 6px;
  background: #fff;
  color: #0a0a0a;
}

.help-info-card h2 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
}

.help-info-card p {
  position: relative;
  margin: 0 0 6px;
  padding-left: 18px;
  font-size: 18px;
  line-height: 1.35;
}

.help-info-card p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.help-doc-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  overflow: hidden;
}

.help-document-card {
  display: grid;
  grid-template-rows: minmax(430px, 1fr) auto;
  min-height: 666px;
  border: 1px solid #111;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}

.help-document-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 430px;
  background: #fff;
  color: #8e8e8e;
  font-size: 18px;
  text-align: center;
}

.help-document-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.help-document-card > div:last-child {
  padding: 24px 24px 30px;
  border-top: 1px solid #eee;
}

.help-document-card h2 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
}

.help-document-card p {
  margin: 0;
  color: #555;
  font-size: 14px;
  line-height: 1.45;
}

.help-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.help-contact-card {
  min-height: 170px;
  padding: 32px;
  border: 1px solid #111;
  border-radius: 6px;
  background: #fff;
}

.help-contact-card span {
  display: block;
  margin-bottom: 18px;
  color: #777;
  font-size: 13px;
  text-transform: uppercase;
}

.help-contact-card strong {
  display: block;
  color: #0a0a0a;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.help-file-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 44px;
  margin-top: 18px;
  border: 1px solid #111;
  background: #050505;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.store-footer__link-button {
  display: inline-flex !important;
  align-items: center;
  min-height: 30px;
  margin: 0 0 8px !important;
  padding: 0;
  border: 0;
  color: #fff !important;
  font-size: 13px !important;
  line-height: 1.4;
  text-decoration: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.store-footer__link-button:hover {
  opacity: 0.72;
  transform: translateX(4px);
}

@media (max-width: 1200px) {
  .help-tabs button { font-size: 13px; }
  .help-doc-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .help-contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .help-section {
    margin: 44px auto 84px;
    padding: 0 16px;
  }

  .help-title {
    min-height: 96px;
    margin-bottom: 16px;
    padding: 24px 20px;
  }

  .help-title h1 {
    font-size: 28px;
    line-height: 1.1;
  }

  .help-section-select {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
  }

  .help-section-select span {
    color: #555;
    font-size: 12px;
  }

  .help-section-select select {
    width: 100%;
    height: 48px;
    border: 1px solid #111;
    border-radius: 0;
    background: #fff;
    padding: 0 14px;
    color: #111;
    font-size: 14px;
  }

  .help-tabs { display: none; }

  .faq-list { gap: 12px; }

  .faq-item summary {
    min-height: 72px;
    padding: 14px 16px;
    gap: 18px;
    font-size: 16px;
  }

  .faq-item summary span {
    flex-basis: 24px;
    width: 24px;
    height: 24px;
  }

  .faq-item summary span::before,
  .faq-item summary span::after {
    width: 24px;
  }

  .faq-item p {
    padding: 0 16px 22px;
    font-size: 14px;
  }

  .help-info-grid,
  .help-doc-list,
  .help-contact-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .help-info-card {
    min-height: auto;
    padding: 26px 20px;
  }

  .help-info-card h2 {
    font-size: 18px;
  }

  .help-info-card p {
    font-size: 14px;
  }

  .help-document-card {
    grid-template-rows: minmax(260px, auto) auto;
    min-height: auto;
  }

  .help-document-card__media {
    min-height: 260px;
    font-size: 15px;
  }

  .help-contact-card {
    min-height: 120px;
    padding: 24px 20px;
  }

  .help-contact-card strong {
    font-size: 18px;
  }

  .store-footer__link-button {
    width: 100%;
    min-height: 38px;
  }
}
/* Figma catalog/product/help refinements */
.hero-banner__actions {
  margin-bottom: 42px;
}

.hero-banner__brand {
  margin-top: 0;
}

.product-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-transform: lowercase;
  pointer-events: none;
}

.product-badge::before,
.product-badge::after {
  content: "";
  position: absolute;
  inset: 7px;
  clip-path: polygon(50% 0%, 58% 22%, 78% 9%, 75% 34%, 100% 31%, 82% 50%, 100% 69%, 75% 66%, 78% 91%, 58% 78%, 50% 100%, 42% 78%, 22% 91%, 25% 66%, 0% 69%, 18% 50%, 0% 31%, 25% 34%, 22% 9%, 42% 22%);
}

.product-badge::before {
  inset: 3px;
  transform: rotate(12deg);
  background: #050505;
}

.product-badge::after {
  background: #fff;
}

.product-badge > span {
  position: relative;
  z-index: 1;
}

.product-badge--new {
  color: #050505;
}

.product-badge--hit {
  color: #fff;
}

.product-badge--hit::before {
  background: #f4262d;
}

.product-badge--hit::after {
  background: #050505;
}

.hit-badge {
  display: none;
}

.catalog-layout {
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 52px;
  max-width: 1880px;
  margin: 72px auto 120px;
  padding: 0 30px;
}

.catalog-filters {
  position: sticky;
  top: 112px;
  align-content: start;
  gap: 36px;
  max-height: calc(100vh - 132px);
  overflow: auto;
  padding-right: 12px;
  font-size: 15px;
  line-height: 1.45;
}

.catalog-filters h2 {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 500;
}

.catalog-filters label {
  gap: 14px;
  margin-bottom: 16px;
  color: #111;
}

.catalog-filters input[type="radio"],
.catalog-filters input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  accent-color: #111;
}

.catalog-toolbar {
  justify-content: flex-end;
  gap: 18px;
  margin-bottom: 34px;
}

.catalog-toolbar input,
.catalog-toolbar select {
  height: 28px;
  min-width: 185px;
  border: 1px solid #d7d7d7;
  background: #fafafa;
  color: #777;
  padding: 0 10px;
  font-size: 14px;
}

.catalog-category-section h2 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.catalog-content .product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 46px;
  row-gap: 88px;
}

.catalog-content .product-card {
  border: 0;
  background: transparent;
  padding: 0;
}

.catalog-content .product-visual {
  height: 500px;
  background: #fff;
}

.catalog-content .product-visual--image {
  width: 100%;
  height: 500px;
  padding: 0;
  object-fit: contain;
}

.catalog-content .product-card h3 {
  min-height: 0;
  margin: 24px 0 9px;
  color: #3d231d;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
}

.catalog-content .product-card p,
.catalog-content .product-stock {
  min-height: 0;
  margin: 0 0 10px;
  color: #5f504b;
  font-size: 11px;
  line-height: 1.35;
}

.catalog-content .product-card strong {
  margin: 0 0 14px;
  color: #111;
  font-size: 13px;
}

.catalog-content .cart-button {
  width: 128px;
  height: 22px;
  padding: 0;
  font-size: 9px;
}

.help-doc-list {
  grid-template-columns: repeat(4, minmax(260px, 1fr));
  align-items: stretch;
  gap: 22px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.help-document-card {
  display: grid !important;
  grid-template-columns: 1fr !important;
  grid-template-rows: minmax(540px, 1fr) auto;
  min-width: 260px;
  min-height: 666px;
  padding: 0;
  overflow: hidden;
}

.help-document-card__media {
  min-height: 540px;
  padding: 24px;
  background: #fff;
}

.help-document-card__media img {
  width: 100%;
  height: 100%;
  max-height: 512px;
  object-fit: contain;
}

.help-document-card__media span {
  color: #888;
  font-size: 20px;
}

.help-document-card__body {
  padding: 18px 24px 24px;
  border-top: 1px solid #eee;
}

.help-document-card--image .help-document-card__body {
  min-height: 0;
}

@media (max-width: 1200px) {
  .catalog-layout {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 34px;
  }

  .catalog-content .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero-banner__actions {
    margin-bottom: 30px;
  }

  .catalog-layout {
    grid-template-columns: 1fr;
    margin: 42px auto 80px;
    padding: 0 18px;
  }

  .catalog-filters {
    position: fixed;
    top: 0;
    max-height: none;
    padding: 76px 22px 28px;
    font-size: 15px;
  }

  .catalog-toolbar {
    flex-direction: column;
  }

  .catalog-toolbar input,
  .catalog-toolbar select {
    width: 100%;
    height: 40px;
  }

  .catalog-content .product-grid {
    grid-template-columns: 1fr;
    row-gap: 52px;
  }

  .catalog-content .product-visual,
  .catalog-content .product-visual--image {
    height: 360px;
  }

  .help-doc-list {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .help-document-card {
    min-height: 0;
    grid-template-rows: minmax(320px, auto) auto;
  }

  .help-document-card__media {
    min-height: 320px;
    padding: 16px;
  }

  .help-document-card__media img {
    max-height: 420px;
  }
}

/* Hero vertical spacing correction */
.hero-banner {
  position: relative;
}

.hero-banner__copy {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.hero-banner__actions {
  flex: 0 0 auto;
  margin-bottom: 42px;
}

.hero-banner__brand {
  flex: 0 0 auto;
  margin: 0;
}

.hero-banner__lines {
  flex: 0 0 auto;
  margin-top: auto !important;
  padding-top: 86px;
}

@media (max-width: 900px) {
  .hero-banner {
    min-height: 760px;
  }

  .hero-banner__copy {
    min-height: 760px;
    padding-bottom: 42px;
  }

  .hero-banner__bullets,
  .hero-banner ul {
    margin-bottom: 84px;
  }

  .hero-banner__actions {
    margin-bottom: 42px;
  }

  .hero-banner__lines {
    padding-top: 96px;
  }
}

@media (max-width: 520px) {
  .hero-banner {
    min-height: 720px;
  }

  .hero-banner__copy {
    min-height: 720px;
    padding-bottom: 34px;
  }

  .hero-banner__bullets,
  .hero-banner ul {
    margin-bottom: 58px;
  }

  .hero-banner__actions {
    margin-bottom: 34px;
  }

  .hero-banner__lines {
    padding-top: 70px;
  }
}

/* Hero slide indicators visibility fix */
.hero-banner__lines {
  display: flex !important;
  align-items: center;
  gap: 19px;
  margin-top: 112px !important;
  padding-top: 0 !important;
  padding-bottom: 0;
}

.hero-banner__lines button,
.hero-banner__lines span {
  display: block;
  width: 133px;
  height: 5px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.58);
  cursor: pointer;
}

.hero-banner__lines button.is-active,
.hero-banner__lines span:first-child {
  background: #fff;
}

@media (max-width: 900px) {
  .hero-banner__lines {
    margin-top: 92px !important;
    gap: 18px;
  }

  .hero-banner__lines button,
  .hero-banner__lines span {
    width: 132px;
    height: 5px;
  }
}

@media (max-width: 520px) {
  .hero-banner__lines {
    margin-top: 58px !important;
    gap: 10px;
  }

  .hero-banner__lines button,
  .hero-banner__lines span {
    width: 62px;
    height: 4px;
  }
}

/* Hero slide indicators pinned position */
.hero-banner {
  position: relative;
  overflow: hidden;
}

.hero-banner__copy {
  position: relative;
  z-index: 2;
}

.hero-banner__lines {
  position: absolute !important;
  left: max(24px, 5.2vw);
  bottom: 56px;
  z-index: 6;
  display: flex !important;
  align-items: center;
  gap: 19px;
  width: auto;
  margin: 0 !important;
  padding: 0 !important;
}

.hero-banner__lines button,
.hero-banner__lines span {
  display: block !important;
  width: 133px;
  height: 5px;
  min-height: 5px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.62);
  opacity: 1;
  cursor: pointer;
}

.hero-banner__lines button.is-active,
.hero-banner__lines span:first-child {
  background: #fff;
}

@media (max-width: 900px) {
  .hero-banner__lines {
    bottom: 70px;
    left: 62px;
    gap: 18px;
  }

  .hero-banner__lines button,
  .hero-banner__lines span {
    width: 132px;
    height: 5px;
    min-height: 5px;
  }
}

@media (max-width: 700px) {
  .hero-banner__lines {
    bottom: 52px;
    left: 18px;
    right: 18px;
    gap: 10px;
  }

  .hero-banner__lines button,
  .hero-banner__lines span {
    flex: 1 1 0;
    width: auto;
    max-width: 90px;
    height: 4px;
    min-height: 4px;
  }
}

/* Hero slide indicators final flow layout */
.hero-banner {
  position: relative;
  overflow: hidden;
}

.hero-banner__copy {
  display: block !important;
  box-sizing: border-box;
}

.hero-banner__lines {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  z-index: 3;
  display: flex !important;
  align-items: center;
  gap: 19px;
  width: auto;
  margin: 118px 0 0 !important;
  padding: 0 !important;
}

.hero-banner__lines button,
.hero-banner__lines span {
  display: block !important;
  flex: 0 0 auto;
  width: 133px;
  height: 5px;
  min-height: 5px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.62);
  opacity: 1;
  cursor: pointer;
}

.hero-banner__lines button.is-active,
.hero-banner__lines span:first-child {
  background: #fff;
}

@media (max-width: 900px) {
  .hero-banner {
    min-height: 880px;
  }

  .hero-banner__copy {
    min-height: 880px;
    padding-bottom: 50px;
  }

  .hero-banner__lines {
    margin-top: 86px !important;
    gap: 18px;
  }

  .hero-banner__lines button,
  .hero-banner__lines span {
    width: 132px;
    height: 5px;
    min-height: 5px;
  }
}

@media (max-width: 700px) {
  .hero-banner {
    min-height: 830px;
  }

  .hero-banner__copy {
    min-height: 830px;
    padding-bottom: 42px;
  }

  .hero-banner__lines {
    gap: 10px;
    margin-top: 64px !important;
  }

  .hero-banner__lines button,
  .hero-banner__lines span {
    flex: 0 1 90px;
    width: 90px;
    height: 4px;
    min-height: 4px;
  }
}

@media (max-width: 520px) {
  .hero-banner {
    min-height: 780px;
  }

  .hero-banner__copy {
    min-height: 780px;
    padding-bottom: 36px;
  }

  .hero-banner__lines {
    margin-top: 48px !important;
  }

  .hero-banner__lines button,
  .hero-banner__lines span {
    flex-basis: 62px;
    width: 62px;
  }
}

/* Hero slide indicators final visible placement */
.hero-banner {
  position: relative;
  overflow: hidden;
}

.hero-banner__copy {
  display: block !important;
  box-sizing: border-box;
  padding-bottom: 46px !important;
}

.hero-banner__brand {
  margin: 0 !important;
}

.hero-banner__lines {
  position: static !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  z-index: 3;
  display: flex !important;
  align-items: center;
  gap: 19px;
  width: auto;
  margin: 28px 0 0 !important;
  padding: 0 !important;
}

.hero-banner__lines button,
.hero-banner__lines span {
  display: block !important;
  flex: 0 0 auto;
  width: 133px;
  height: 5px;
  min-height: 5px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.62);
  opacity: 1;
  cursor: pointer;
}

.hero-banner__lines button.is-active,
.hero-banner__lines span:first-child {
  background: #fff;
}

@media (max-width: 900px) {
  .hero-banner__copy {
    padding-bottom: 42px !important;
  }

  .hero-banner__lines {
    margin-top: 26px !important;
    gap: 18px;
  }

  .hero-banner__lines button,
  .hero-banner__lines span {
    width: 132px;
    height: 5px;
    min-height: 5px;
  }
}

@media (max-width: 700px) {
  .hero-banner__copy {
    padding-bottom: 36px !important;
  }

  .hero-banner__lines {
    gap: 10px;
    margin-top: 22px !important;
  }

  .hero-banner__lines button,
  .hero-banner__lines span {
    flex: 0 1 90px;
    width: 90px;
    height: 4px;
    min-height: 4px;
  }
}

@media (max-width: 520px) {
  .hero-banner__copy {
    padding-bottom: 32px !important;
  }

  .hero-banner__lines button,
  .hero-banner__lines span {
    flex-basis: 62px;
    width: 62px;
  }
}

/* Hero slide indicators bottom breathing room */
.hero-banner__lines {
  margin-bottom: 46px !important;
}

@media (max-width: 900px) {
  .hero-banner__lines {
    margin-bottom: 42px !important;
  }
}

@media (max-width: 520px) {
  .hero-banner__lines {
    margin-bottom: 34px !important;
  }
}

/* Hero bottom gap final height fix */
.hero-banner {
  height: auto !important;
  min-height: 0 !important;
}

.hero-banner__copy {
  min-height: 0 !important;
  padding-bottom: 76px !important;
}

.hero-banner__lines {
  margin-bottom: 0 !important;
}

@media (max-width: 900px) {
  .hero-banner {
    height: auto !important;
    min-height: 0 !important;
  }

  .hero-banner__copy {
    min-height: 0 !important;
    padding-bottom: 72px !important;
  }
}

@media (max-width: 520px) {
  .hero-banner__copy {
    padding-bottom: 58px !important;
  }
}

/* Product badges from uploaded SVG assets */
.product-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 5;
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
  pointer-events: none;
}

.product-badge::before,
.product-badge::after,
.product-badge > span {
  content: none !important;
  display: none !important;
}

@media (max-width: 700px) {
  .product-badge {
    width: 48px;
    height: 48px;
  }
}

/* Cart and product detail flow */
.cart-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 96px;
  height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  font-size: 13px;
  white-space: nowrap;
}
.cart-nav-link b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #fff;
  color: #151515;
  font-size: 11px;
}
.mobile-nav__panel .cart-nav-link {
  width: 100%;
  color: #151515;
  border-color: #ddd;
}
.mobile-nav__panel .cart-nav-link b { background: #151515; color: #fff; }
.product-card__media-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.product-card h3 a {
  color: inherit;
  text-decoration: none;
}
.product-card h3 a:hover { text-decoration: underline; text-underline-offset: 3px; }
.cart-button:disabled,
.cart-button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: .55;
}
.cart-page,
.checkout-page,
.product-detail-page {
  width: min(1180px, calc(100% - 48px));
  margin: 72px auto 110px;
}
.cart-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 34px;
  align-items: start;
}
.cart-page--empty,
.checkout-page {
  display: block;
  min-height: 360px;
}
.cart-page h1,
.checkout-page h1,
.product-detail__info h1 {
  margin: 0 0 24px;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.05;
  letter-spacing: 0;
}
.cart-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 92px auto;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #e5ded6;
}
.cart-item__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 112px;
  background: #faf8f5;
  overflow: hidden;
}
.cart-item__image img { width: 100%; height: 100%; object-fit: contain; }
.cart-item__image span { width: 44px; height: 44px; border: 1px solid #d9d0c8; }
.cart-item__body { display: grid; gap: 8px; }
.cart-item__body a { color: #111; font-weight: 700; text-decoration: none; }
.cart-item__body strong { font-size: 15px; }
.cart-item__body small { color: #7d7168; }
.cart-item__qty { display: grid; gap: 6px; font-size: 12px; color: #6f6258; }
.cart-item__qty input {
  width: 82px;
  height: 42px;
  border: 1px solid #dacdc2;
  padding: 0 10px;
  font: inherit;
}
.cart-item__remove,
.cart-primary-link,
.checkout-form button,
.checkout-page button,
.product-detail__cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  background: #1b120d;
  color: #fff;
  padding: 0 22px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.cart-item__remove { background: transparent; color: #b00020; border: 1px solid #f0c7c7; }
.checkout-form {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid #e1d4c8;
  background: #fbf7f2;
}
.checkout-form h2 { margin: 0; font-size: 22px; }
.checkout-form label { display: grid; gap: 8px; }
.checkout-form label span { font-size: 13px; color: #5f5147; }
.checkout-form input {
  height: 48px;
  border: 1px solid #d8c9bc;
  background: #fff;
  padding: 0 14px;
  font: inherit;
}
.checkout-form__error { margin: 0; color: #b00020; font-size: 13px; }
.checkout-form__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 10px;
  border-top: 1px solid #e1d4c8;
}
.checkout-form__total strong { font-size: 24px; }
.checkout-summary {
  display: grid;
  gap: 18px;
  max-width: 720px;
  padding: 24px;
  border: 1px solid #e1d4c8;
  background: #fbf7f2;
}
.checkout-summary div { display: flex; flex-wrap: wrap; gap: 12px 24px; }
.checkout-summary ul { margin: 0; padding-left: 18px; }
.checkout-page button:disabled { opacity: .55; cursor: not-allowed; margin-top: 22px; }
.checkout-page__note { max-width: 720px; color: #6f6258; }
.product-detail-page__back {
  display: inline-flex;
  margin-bottom: 28px;
  color: #6f6258;
  text-decoration: none;
}
.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 580px) minmax(320px, 1fr);
  gap: 54px;
  align-items: start;
}
.product-gallery { display: grid; gap: 16px; }
.product-gallery__main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  background: #fbf8f5;
  overflow: hidden;
}
.product-gallery__main img { width: 100%; height: 100%; max-height: 600px; object-fit: contain; }
.product-gallery__main > span { color: #8a7b70; }
.product-gallery__prev,
.product-gallery__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 1px solid #ddd0c5;
  background: rgba(255,255,255,.86);
  font-size: 28px;
  cursor: pointer;
}
.product-gallery__prev { left: 14px; }
.product-gallery__next { right: 14px; }
.product-gallery__thumbs { display: grid; grid-template-columns: repeat(auto-fill, minmax(72px, 1fr)); gap: 10px; }
.product-gallery__thumbs button {
  height: 82px;
  border: 1px solid #e1d4c8;
  background: #fff;
  padding: 4px;
  cursor: pointer;
}
.product-gallery__thumbs button.is-active { border-color: #111; }
.product-gallery__thumbs img { width: 100%; height: 100%; object-fit: contain; }
.product-detail__info { position: relative; display: grid; gap: 18px; }
.product-detail__info p { max-width: 560px; color: #4c423c; line-height: 1.55; }
.product-detail__price { font-size: 28px; }
.product-detail__info dl {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 10px 18px;
  margin: 0;
  padding: 20px 0;
  border-top: 1px solid #e7ddd5;
  border-bottom: 1px solid #e7ddd5;
}
.product-detail__info dt { color: #7a6b60; }
.product-detail__info dd { margin: 0; }
.product-detail__badge { position: static; width: 44px; height: 44px; }
.product-detail__cart { width: fit-content; min-width: 220px; }
@media (max-width: 900px) {
  .cart-page,
  .product-detail {
    grid-template-columns: 1fr;
  }
  .checkout-form { position: static; }
  .product-gallery__main { min-height: 420px; }
}
@media (max-width: 640px) {
  .cart-nav-link { min-width: 42px; padding: 0 10px; }
  .cart-nav-link span { display: none; }
  .mobile-nav__panel .cart-nav-link span { display: inline; }
  .cart-page,
  .checkout-page,
  .product-detail-page {
    width: calc(100% - 28px);
    margin: 42px auto 72px;
  }
  .cart-item {
    grid-template-columns: 78px 1fr;
    gap: 14px;
  }
  .cart-item__image { width: 78px; height: 92px; }
  .cart-item__qty,
  .cart-item__remove { grid-column: 2; }
  .cart-item__remove { width: fit-content; }
  .product-gallery__main { min-height: 320px; }
  .product-detail { gap: 28px; }
  .product-detail__info dl { grid-template-columns: 1fr; gap: 4px; }
  .product-detail__cart { width: 100%; }
}