/* Lilia Fashion House - Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300&family=Space+Grotesk:wght@400;500;600;700&display=swap');
@import 'variables.css';

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  font-weight: var(--font-weight-body);
  background-color: var(--color-cream);
  color: var(--color-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.section-title {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-heading);
  line-height: 1.2;
}

img { max-width: 100%; height: auto; display: block; }
img[src^="/images/"] { image-rendering: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* Sticky text header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent;
  margin-bottom: calc(-1 * var(--header-height));
  transition: background 0.25s ease, backdrop-filter 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(26, 26, 26, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* Frosted clear header on pages without the hero banner */
body:not(.has-hero-banner) .site-header {
  background: rgba(250, 247, 242, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-bottom: 0;
}

body:not(.has-hero-banner) .site-header.is-scrolled {
  background: rgba(250, 247, 242, 0.78);
  box-shadow: 0 1px 0 rgba(26, 26, 26, 0.06);
}

body:not(.has-hero-banner) .nav-link,
body:not(.has-hero-banner) .icon-btn,
body:not(.has-hero-banner) .mobile-menu-btn {
  color: var(--color-dark);
}

body:not(.has-hero-banner) .nav-dropdown-menu {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

body:not(.has-hero-banner) .nav-dropdown-menu a {
  color: var(--color-dark);
}

body:not(.has-hero-banner) .cart-count {
  background: var(--color-dark);
  color: var(--color-white);
}

.header-inner {
  max-width: 100%;
  width: 100%;
  height: var(--header-height);
  margin: 0 auto;
  padding: 0 var(--site-gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  box-sizing: border-box;
}

.mobile-menu-btn {
  display: none;
  font-size: 22px;
  color: var(--color-white);
  line-height: 1;
  justify-self: start;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-self: start;
  grid-column: 1;
}

.header-logo {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  line-height: 0;
}

.header-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-link {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
  transition: opacity var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover { opacity: 0.75; }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.nav-dropdown { position: relative; }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 160px;
  padding: 12px 0;
  background: rgba(26, 26, 26, 0.95);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown-menu a {
  display: block;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-white);
}

.nav-dropdown-menu a:hover { opacity: 0.7; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  grid-column: 3;
  justify-self: end;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: var(--color-white);
  background: transparent;
  border: none;
  transition: opacity var(--transition);
}

.icon-btn:hover { opacity: 0.7; }

.icon-btn svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-icon-wrap { position: relative; }

.cart-count {
  position: absolute;
  top: 4px;
  right: 2px;
  background: var(--color-white);
  color: var(--color-dark);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  padding: 0 3px;
  border-radius: 8px;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.mobile-menu-btn { display: none; }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-cream);
  z-index: 2000;
  padding: 24px;
  flex-direction: column;
  overflow-y: auto;
}

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

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.mobile-nav-close { font-size: 28px; }

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(40,41,41,0.1);
}

.mobile-nav .sub-links { padding-left: 20px; }
.mobile-nav .sub-links a { font-size: 15px; padding: 12px 0; }

/* Hero — two-fold full viewport */
.hero-split {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  background: #1a1a1a;
}

.hero-split-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 100%;
}

.hero-split-panel {
  position: relative;
  overflow: hidden;
  min-height: 0;
}

.hero-split-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-split-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.15) 40%,
    rgba(0, 0, 0, 0.35) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-split-center {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  padding-top: 18vh;
  pointer-events: none;
}

.hero-split-center h1 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(1.35rem, 3.6vw, 2.75rem);
  color: var(--color-white);
  letter-spacing: -0.01em;
  line-height: 1.25;
  max-width: 18ch;
  animation: heroFadeUp 0.9s ease both;
}

.hero-split-center h1 span {
  display: block;
}

.btn-shop {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  padding: 5px 40px;
  min-width: 140px;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--color-offwhite);
  background: var(--color-brand);
  border: none;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
  animation: heroFadeUp 0.9s ease 0.12s both;
}

.btn-shop:hover {
  background: #963f2b;
  transform: translateY(-1px);
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 0;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--color-dark);
  color: var(--color-white);
  border: 2px solid var(--color-dark);
}

.btn-primary:hover {
  background: transparent;
  color: var(--color-dark);
}

.btn-cta {
  background: var(--color-cta);
  color: var(--color-white);
  border: 2px solid var(--color-cta);
}

.btn-cta:hover {
  background: transparent;
  color: var(--color-cta);
}

.btn-outline {
  background: transparent;
  color: var(--color-dark);
  border: 2px solid var(--color-dark);
}

.btn-outline:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

/* Sections */
.section { padding: 80px 40px; }
.section-inner { max-width: var(--max-width); margin: 0 auto; }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 300;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.01em;
  color: var(--color-dark);
}

/* Makers — experimental */
.makers-section {
  background: var(--color-offwhite);
  padding: 56px var(--site-gutter) 40px;
  overflow: visible;
}

.makers-stage {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 0;
  overflow: visible;
}

.makers-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.makers-heading {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--color-dark);
  margin-bottom: 28px;
}

.makers-copy {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.7;
  color: var(--color-dark);
  margin-bottom: 36px;
}

.makers-copy p + p {
  margin-top: 1.15em;
}

.makers-lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.55;
}

.makers-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}

.btn-makers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 5px 28px;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.btn-makers-outline {
  background: var(--color-white);
  color: var(--color-brand);
  border: 1.5px solid var(--color-brand);
}

.btn-makers-outline:hover {
  background: rgba(175, 73, 50, 0.06);
  transform: translateY(-1px);
}

.btn-makers-solid {
  background: var(--color-brand);
  color: var(--color-offwhite);
  border: 1.5px solid var(--color-brand);
}

.btn-makers-solid:hover {
  background: #963f2b;
  border-color: #963f2b;
  transform: translateY(-1px);
}

.makers-footnote {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-muted);
  max-width: 36em;
  margin: 0 auto;
}

.makers-footnote strong {
  color: var(--color-brand);
  font-weight: 600;
}

.makers-footnote-line {
  display: block;
  margin-top: 0.35em;
  font-style: italic;
  color: var(--color-dark);
}

/* Die-cut stickers — uploaded PNGs */
.maker-sticker {
  position: absolute;
  z-index: 1;
  width: clamp(64px, 8vw, 96px);
  height: auto;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(2px 4px 8px rgba(26, 26, 26, 0.12));
  animation: none;
}

/* Left column — 3 stickers */
.sticker-left-1 {
  top: 6%;
  left: 3%;
  width: clamp(70px, 8.5vw, 102px);
  transform: rotate(-10deg);
}

.sticker-left-2 {
  top: 38%;
  left: 1.5%;
  width: clamp(62px, 7.5vw, 90px);
  transform: rotate(8deg);
}

.sticker-left-3 {
  bottom: 10%;
  left: 4%;
  width: clamp(66px, 8vw, 94px);
  transform: rotate(-6deg);
}

/* Right column — 2 stickers (15% badge is separate) */
.sticker-right-1 {
  top: 28%;
  right: 3%;
  width: clamp(68px, 8.2vw, 98px);
  transform: rotate(12deg);
}

.sticker-right-2 {
  bottom: 12%;
  right: auto;
  left: calc(50% + min(320px, 42vw) + 16px);
  width: clamp(60px, 7.5vw, 88px);
  transform: rotate(-14deg);
}

/* 15% off sticker — top right, larger, slight rotation */
.makers-mnemonic {
  position: absolute;
  z-index: 4;
  top: 1%;
  right: 1%;
  width: clamp(120px, 15vw, 168px);
  pointer-events: none;
}

.mnemonic-sticker-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(3px 6px 10px rgba(26, 26, 26, 0.16));
  animation: stickerRotate 5s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes stickerRotate {
  0%, 100% { transform: rotate(-6deg); }
  50% { transform: rotate(6deg); }
}

@media (prefers-reduced-motion: reduce) {
  .mnemonic-sticker-img {
    animation: none;
    transform: rotate(-4deg);
  }
}

/* Show your art */
.show-art-page {
  background: var(--color-offwhite);
  min-height: calc(100vh - var(--header-height));
  padding: 72px var(--site-gutter) 96px;
}

.show-art-inner {
  max-width: 640px;
  margin: 0 auto;
}

.show-art-eyebrow {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-brand);
  margin-bottom: 12px;
}

.show-art-page h1,
.makers-gallery-intro h1 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--color-dark);
}

.show-art-intro {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-muted);
  margin-bottom: 40px;
}

.show-art-intro strong {
  color: var(--color-brand);
  font-weight: 600;
}

.show-art-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-field label {
  display: block;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.form-field .optional {
  font-weight: 400;
  color: var(--color-muted);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--color-dark);
  background: var(--color-white);
  border: 1px solid rgba(26, 26, 26, 0.15);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--color-brand);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.55;
}

.art-dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 160px;
  padding: 28px 20px;
  text-align: center;
  background: var(--color-white);
  border: 1.5px dashed rgba(175, 73, 50, 0.45);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.art-dropzone input {
  display: none;
}

.art-dropzone:hover,
.art-dropzone.is-dragover,
.art-dropzone.has-file {
  border-color: var(--color-brand);
  background: rgba(175, 73, 50, 0.04);
}

.art-dropzone-title {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-dark);
}

.art-dropzone-hint {
  font-size: 13px;
  color: var(--color-muted);
}

.art-preview {
  margin-top: 14px;
  padding: 12px;
  background: var(--color-white);
  border-radius: 4px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.art-preview img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  display: block;
}

.show-art-warning {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.55;
  color: var(--color-muted);
  padding: 12px 14px;
  background: rgba(175, 73, 50, 0.08);
  border-left: 3px solid var(--color-brand);
  border-radius: 0 8px 8px 0;
}

.show-art-error {
  font-family: var(--font-ui);
  font-size: 14px;
  color: #b42318;
}

.show-art-submit {
  align-self: flex-start;
  min-width: 160px;
  cursor: pointer;
}

.show-art-submit:disabled {
  opacity: 0.65;
  cursor: wait;
}

.show-art-result {
  text-align: center;
  padding: 24px 0 8px;
}

.show-art-result h2 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 12px;
}

.show-art-result p {
  font-family: var(--font-body);
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.coupon-label {
  margin-top: 28px !important;
  font-family: var(--font-ui) !important;
  font-size: 13px !important;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-dark) !important;
}

.coupon-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 12px 0 16px;
  padding: 18px 20px;
  background: var(--color-white);
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 12px;
}

.coupon-box code {
  font-family: var(--font-ui);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-brand);
}

.coupon-note {
  font-size: 0.9rem !important;
  margin-bottom: 28px !important;
}

/* Makers gallery */
.makers-gallery-page {
  background: var(--color-offwhite);
  padding: 72px var(--site-gutter) 96px;
}

.makers-gallery-intro {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.makers-gallery-intro p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-muted);
  margin-bottom: 28px;
}

.makers-gallery-grid {
  max-width: 1100px;
  margin: 0 auto;
  column-count: 2;
  column-gap: 28px;
}

.maker-card {
  display: block;
  width: 100%;
  break-inside: avoid;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin: 0 0 36px;
}

.maker-card-frame {
  background: transparent;
  padding: 0;
  border: 1px solid var(--color-gold);
  border-radius: 10px;
  overflow: hidden;
  line-height: 0;
}

.maker-card-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

.maker-card-body {
  padding: 14px 4px 0;
}

.maker-card-title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.25;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.maker-card-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-muted);
  margin-bottom: 10px;
}

.maker-card-artist {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-dark);
  margin-bottom: 14px;
}

.maker-card-link {
  min-width: 0;
  padding: 5px 20px;
  font-size: 14px;
}

.makers-gallery-empty {
  column-span: all;
  text-align: center;
  padding: 48px 20px;
}

.makers-gallery-empty p {
  font-family: var(--font-body);
  color: var(--color-muted);
  margin-bottom: 20px;
}

/* New Arrivals */
.new-arrivals-section {
  background: var(--color-offwhite);
  padding: 32px var(--site-gutter) 48px;
  box-sizing: border-box;
}

.new-arrivals-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  box-sizing: border-box;
}

.new-arrivals-wrap .section-title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--color-dark);
}

.new-arrivals-slider {
  position: relative;
  --arrivals-gap: 20px;
}

.new-arrivals-viewport {
  overflow: hidden;
  width: 100%;
}

.new-arrivals-track {
  display: flex;
  gap: var(--arrivals-gap);
  transition: transform 0.45s cubic-bezier(0.37, 0, 0.63, 1);
  will-change: transform;
}

.arrival-card {
  flex: 0 0 calc((100% - (var(--arrivals-gap) * 2.5)) / 3.5);
  min-width: 0;
}

.arrival-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.arrival-card-image {
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 14px;
  overflow: hidden;
  background: var(--color-offwhite);
  margin-bottom: 10px;
}

.arrival-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

.arrival-card-link:hover .arrival-card-image img {
  transform: scale(1.03);
}

.arrival-card-price {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 4px;
  color: var(--color-dark);
  letter-spacing: -0.01em;
}

.arrival-card-name {
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 0.85vw, 0.82rem);
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 0;
  color: var(--color-muted);
}

.arrival-price-regular,
.arrival-price-sale {
  font-weight: 600;
  color: var(--color-cta);
}

.arrival-price-original {
  font-weight: 400;
  color: #888;
  text-decoration: line-through;
  margin-right: 8px;
  font-size: 0.9em;
}

.carousel-arrow {
  position: absolute;
  top: 36%;
  transform: translateY(-50%);
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.carousel-arrow:hover {
  background: #fff;
  color: var(--color-dark);
  transform: translateY(-50%) scale(1.05);
}

.carousel-arrow svg {
  width: 22px;
  height: 22px;
}

.carousel-prev { left: -8px; }
.carousel-next { right: -8px; }

.carousel-arrow[hidden] {
  display: none;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px 24px;
}

.product-card { cursor: pointer; transition: transform var(--transition); }
.product-card:hover { transform: translateY(-4px); }

.product-card-image {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
  background: var(--color-white);
  margin-bottom: 12px;
  border-radius: 14px;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-image img { transform: scale(1.05); }

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-dark);
  color: white;
  font-size: 11px;
  padding: 4px 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-badge.out-of-stock { background: #999; }
.product-badge.bestseller { background: var(--color-periwinkle); }

.product-card-name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 6px;
  line-height: 1.4;
}

.product-card-price { font-size: 14px; }
.product-card-price .regular { text-decoration: line-through; color: #888; margin-right: 8px; }
.product-card-price .sale { color: var(--color-cta); font-weight: 500; }

/* Trust bar */
.usp-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 20px;
  padding: 40px var(--site-gutter) 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  background: var(--color-offwhite);
  border-top: 1px solid rgba(26, 26, 26, 0.06);
}

.usp-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.usp-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.usp-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(2px 3px 0 rgba(26, 26, 26, 0.08));
}

.usp-item h3 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--color-dark);
  letter-spacing: 0.01em;
}

/* Creators of Lilia — video reel */
.creators-videos-section {
  background: var(--color-offwhite);
  padding: 48px var(--site-gutter) 64px;
}

.creators-videos-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.creators-videos-title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-align: center;
  color: var(--color-dark);
  margin-bottom: 28px;
}

.creators-videos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.creator-video-card {
  display: block;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #1a1a1a;
  aspect-ratio: 9 / 16;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.creator-video-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.12);
}

.creator-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  background: #1a1a1a;
}

/* Category CTAs — three shop cards */
.category-ctas {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 28px);
  padding: clamp(36px, 5vw, 64px) clamp(20px, 4vw, 48px);
  background: var(--color-cream);
  width: 100%;
  box-sizing: border-box;
}

.category-cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.category-cta-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  background: #e8e2d9;
  border: 1.5px solid var(--color-brand);
  box-sizing: border-box;
}

.category-cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.category-cta:hover .category-cta-media img {
  transform: scale(1.04);
}

.category-cta-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 20px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  border: 1.5px solid var(--color-brand);
  margin-top: 0;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.category-cta-label {
  text-align: left;
}

.category-cta-arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform 0.3s ease;
}

.category-cta-btn--solid {
  background: var(--color-brand);
  color: var(--color-offwhite);
  border-color: var(--color-brand);
}

.category-cta-btn--outline {
  background: var(--color-white);
  color: var(--color-brand);
  border-color: var(--color-brand);
}

.category-cta:hover .category-cta-btn--solid {
  background: #963f2b;
  border-color: #963f2b;
  transform: translateY(-1px);
}

.category-cta:hover .category-cta-btn--outline {
  background: rgba(175, 73, 50, 0.06);
  transform: translateY(-1px);
}

.category-cta:hover .category-cta-arrow {
  transform: translate(2px, -2px);
}

.category-cta:focus-visible {
  outline: none;
}

.category-cta:focus-visible .category-cta-btn {
  outline: 2px solid var(--color-brand);
  outline-offset: 3px;
}

/* Founder's Choice */
.founder-choice-section {
  background: var(--color-offwhite);
  padding: 40px clamp(28px, 4vw, 56px) 56px;
  overflow: visible;
}

.founder-choice-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
  align-items: center;
  overflow: visible;
}

.founder-choice-copy h2 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--color-dark);
  margin-bottom: 16px;
}

.founder-choice-copy p {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.15vw, 1rem);
  line-height: 1.65;
  color: var(--color-dark);
  margin-bottom: 0.95em;
}

.founder-choice-byline {
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 20px !important;
  color: var(--color-muted) !important;
}

.founder-shop-btn {
  display: inline-flex;
}

.founder-choice-visual {
  position: relative;
  width: 100%;
  max-width: 520px;
  justify-self: end;
  overflow: visible;
}

.founder-choice-media {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  line-height: 0;
  width: 100%;
  aspect-ratio: 1 / 1;
  box-sizing: border-box;
  background: #e8e2d9;
}

.founder-choice-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

.founder-choice-media:hover img {
  transform: scale(1.03);
}

.founder-deco {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  line-height: 0;
  display: block;
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(28, 24, 22, 0.1));
}

.founder-deco-clouds {
  top: -4%;
  left: -6%;
  width: min(28%, 120px);
}

.founder-deco-daisy {
  right: -5%;
  bottom: -4%;
  width: min(18%, 80px);
}

.founder-deco-florals {
  right: -7%;
  bottom: -8%;
  width: min(26%, 110px);
}

/* Meet Hoku */
.hoku-section {
  background: var(--color-offwhite);
  padding: 32px clamp(28px, 4vw, 56px) 52px;
}

.hoku-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
  align-items: center;
}

.hoku-media {
  border-radius: 18px;
  overflow: hidden;
  line-height: 0;
  width: 100%;
  background: #3B6FE8;
}

.hoku-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.hoku-content h2 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.hoku-content h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 14px;
  color: var(--color-muted);
}

.hoku-content p {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.15vw, 1rem);
  line-height: 1.65;
  margin-bottom: 20px;
  color: var(--color-dark);
}

.hoku-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* Unfiltered Reviews */
.reviews-section {
  --reviews-gap: 22px;
  background: var(--color-cream);
  padding: 72px var(--site-gutter) 64px;
  overflow: hidden;
}

.reviews-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.reviews-heading {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-align: center;
  color: var(--color-dark);
  margin: 0 0 36px;
}

.reviews-slider {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.reviews-viewport {
  overflow: hidden;
  width: 100%;
  padding: 4px 2px 8px;
}

.reviews-track {
  display: flex;
  gap: var(--reviews-gap);
  transition: transform 0.5s cubic-bezier(0.37, 0, 0.63, 1);
  will-change: transform;
}

.review-card {
  flex: 0 0 calc((100% - (var(--reviews-gap) * 2)) / 3);
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--color-offwhite);
  border: 1.5px solid var(--color-brand);
  border-radius: 22px;
  overflow: hidden;
}

.review-card-media {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--color-offwhite);
}

.review-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.review-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 20px 18px 22px;
  background: var(--color-offwhite);
  border-top: 1.5px solid var(--color-brand);
}

.review-stars {
  display: flex;
  gap: 3px;
  color: var(--color-brand);
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.04em;
}

.review-card-body p {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.88rem, 1.1vw, 0.98rem);
  line-height: 1.55;
  color: var(--color-dark);
  flex: 1;
}

.review-author {
  margin-top: 4px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-brand);
}

.reviews-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin-top: 28px;
}

.reviews-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 28px;
  padding: 0;
  color: var(--color-brand);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.reviews-arrow svg {
  width: 40px;
  height: 12px;
  display: block;
}

.reviews-arrow:hover:not(:disabled) {
  transform: translateX(0);
  opacity: 0.75;
}

.reviews-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.reviews-prev:hover:not(:disabled) { transform: translateX(-3px); }
.reviews-next:hover:not(:disabled) { transform: translateX(3px); }

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.blog-card { transition: transform var(--transition); }
.blog-card:hover { transform: translateY(-4px); }

.blog-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  margin-bottom: 16px;
}

.blog-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card p { font-size: 14px; color: #666; margin-bottom: 12px; line-height: 1.6; }

.blog-meta {
  font-size: 12px;
  color: #999;
  display: flex;
  gap: 12px;
}

/* Marquee */
.marquee {
  background: var(--color-yellow);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: inline-block;
  animation: marquee 20s linear infinite;
  font-family: var(--font-body);
  font-size: 18px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Footer */
.site-footer {
  background: var(--color-brand);
  color: var(--color-offwhite);
  padding: 64px var(--site-gutter) 28px;
}

.footer-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 48px 64px;
  align-items: start;
  padding-bottom: 48px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 22px;
}

.footer-logo img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--color-offwhite);
  margin: 0 0 28px;
  max-width: 14ch;
}

.footer-tagline span {
  color: #F2C4B8;
}

.footer-subscribe {
  max-width: 420px;
}

.footer-subscribe-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.footer-subscribe input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  border: 1.5px solid rgba(250, 247, 242, 0.45);
  border-radius: 6px;
  background: rgba(26, 26, 26, 0.18);
  color: var(--color-offwhite);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.footer-subscribe input[type="email"]::placeholder {
  color: rgba(250, 247, 242, 0.65);
}

.footer-subscribe input[type="email"]:focus {
  outline: none;
  border-color: var(--color-offwhite);
  background: rgba(26, 26, 26, 0.28);
}

.footer-subscribe-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 12px 18px;
  border-radius: 6px;
  border: 1.5px solid var(--color-offwhite);
  background: var(--color-offwhite);
  color: var(--color-brand);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-subscribe-btn svg {
  width: 16px;
  height: 16px;
}

.footer-subscribe-btn:hover {
  background: transparent;
  color: var(--color-offwhite);
  transform: translateY(-1px);
}

.footer-subscribe-note {
  margin: 12px 0 0;
  font-family: var(--font-body);
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(250, 247, 242, 0.72);
}

.footer-subscribe-status {
  margin: 10px 0 0;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-offwhite);
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 40px;
  padding-top: 8px;
}

.footer-links h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 18px;
  color: rgba(250, 247, 242, 0.7);
}

.footer-links a {
  display: block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 6px 0;
  color: var(--color-offwhite);
  opacity: 0.9;
  transition: opacity var(--transition);
}

.footer-links a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 3px; }

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px 32px;
  align-items: end;
  padding-top: 28px;
  border-top: 1px solid rgba(250, 247, 242, 0.22);
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.footer-legal a,
.footer-social a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(250, 247, 242, 0.85);
  transition: color var(--transition);
}

.footer-legal a:hover,
.footer-social a:hover {
  color: var(--color-offwhite);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-copy {
  margin: 0;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(250, 247, 242, 0.7);
  align-self: center;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  text-align: right;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Shop Page */
.shop-header { text-align: center; padding: 40px 40px 20px; }

.shop-header h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 300;
}

.category-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  padding: 20px 40px 40px;
  border-bottom: 1px solid rgba(40,41,41,0.1);
}

.category-tabs a {
  font-family: var(--font-heading);
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition);
}

.category-tabs a:hover, .category-tabs a.active {
  border-bottom-color: var(--color-dark);
}

.shop-toolbar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.shop-toolbar select {
  font-family: inherit;
  font-size: 14px;
  padding: 8px 12px;
  border: 1px solid #ddd;
  background: white;
}

/* Product Page */
.product-page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-gallery { position: sticky; top: 100px; }

.product-gallery-stage {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: white;
  margin-bottom: 12px;
}

.product-gallery-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.product-gallery-track::-webkit-scrollbar { display: none; }

.gallery-slide {
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 2/3;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-wishlist,
.gallery-rating-badge,
.gallery-dots {
  display: none;
}

.product-gallery-main {
  aspect-ratio: 2/3;
  overflow: hidden;
  background: white;
  margin-bottom: 12px;
  border-radius: 14px;
}

.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }

.product-gallery-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.product-thumb {
  width: 72px;
  height: 96px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.product-thumb.active,
.product-thumb:hover {
  border-color: var(--color-dark);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.3;
  color: var(--color-dark);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.product-stars {
  display: inline-flex;
  gap: 2px;
}

.product-stars svg {
  width: 14px;
  height: 14px;
  fill: var(--color-brand);
}

.product-rating-text {
  font-family: var(--font-ui);
  font-size: 13px;
  color: #666;
}

.product-ribbons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 10px;
}

.product-ribbon {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(175, 73, 50, 0.1);
  color: var(--color-brand);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
}

.size-btn.disabled,
.size-btn:disabled {
  opacity: 0.35;
  text-decoration: line-through;
  cursor: not-allowed;
  background: #f3f3f3;
}


.product-prices {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.product-prices .original {
  text-decoration: line-through;
  color: #888;
  font-family: var(--font-ui);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 400;
}

.product-prices .sale,
.product-prices .price {
  font-family: var(--font-ui);
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  font-weight: 600;
  color: var(--color-brand);
  letter-spacing: -0.02em;
  line-height: 1;
}

/* Color swatches */
.product-color-selector { margin-bottom: 28px; }

.product-color-label {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 12px;
}

.product-color-label span { font-weight: 600; }

.product-color-swatches {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.color-swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--swatch);
  border: 2px solid transparent;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.color-swatch.has-border {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18);
}

.color-swatch:hover { transform: scale(1.06); }

.color-swatch.selected {
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 3.5px var(--color-dark);
}

.color-check {
  width: 16px;
  height: 16px;
  color: #fff;
  filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.35));
}

.color-swatch.has-border.selected .color-check,
.color-swatch.has-border .color-check {
  color: var(--color-dark);
  filter: none;
}

/* Size */
.size-selector { margin-bottom: 24px; }

.size-selector-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.size-selector label {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
}

.size-guide-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-brand);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.size-guide-link svg {
  width: 18px;
  height: 18px;
}

.size-guide-link:hover { text-decoration: underline; }

.size-options { display: flex; gap: 8px; flex-wrap: wrap; }

.size-btn {
  min-width: 48px;
  height: 48px;
  padding: 0 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  background: #fff;
  color: var(--color-dark);
  transition: all var(--transition);
}

.size-btn:hover {
  border-color: var(--color-dark);
}

.size-btn.selected {
  border-color: var(--color-dark);
  background: var(--color-dark);
  color: white;
}

.product-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.product-actions .btn {
  flex: 1;
  text-align: center;
  border-radius: 999px;
  text-transform: none;
  letter-spacing: 0.01em;
  font-weight: 500;
  padding: 12px 28px;
}

.btn-product-outline {
  background: transparent;
  color: var(--color-brand);
  border: 1.5px solid var(--color-brand);
}

.btn-product-outline:hover {
  background: rgba(175, 73, 50, 0.06);
}

.btn-product-fill {
  background: var(--color-brand);
  color: var(--color-offwhite);
  border: 1.5px solid var(--color-brand);
}

.btn-product-fill:hover {
  background: #963f2b;
  border-color: #963f2b;
  color: var(--color-offwhite);
}

.product-out-of-stock {
  color: #999;
  font-size: 16px;
  margin-bottom: 24px;
  font-family: var(--font-ui);
}

/* Makers deal banner (mobile-first highlight; shown on mobile) */
.makers-deal-banner {
  display: none;
}

/* Product trust bar (3 items) */
.product-trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 12px;
  padding: 24px 0;
  margin-bottom: 8px;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.product-trust-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.product-trust-item .usp-icon {
  width: 48px;
  height: 48px;
}

.product-trust-item h3 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-dark);
}

/* Best offers */
.product-best-offers {
  padding: 24px 0 4px;
  margin-bottom: 4px;
}

.best-offers-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.best-offers-header h2,
.product-subheading {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  text-transform: none;
  margin: 0;
  color: var(--color-dark);
}

.best-offers-tag {
  width: 16px;
  height: 16px;
  color: var(--color-dark);
  flex-shrink: 0;
}

.best-offer-block {
  padding: 10px 0 16px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.best-offer-block:last-child { border-bottom: none; }

.best-offer-block.best-offer-price {
  padding-top: 4px;
}

.best-offer-block h3 {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--color-dark);
}

.best-price-line {
  font-family: var(--font-ui);
  font-size: 16px;
  margin: 0 0 8px;
  color: var(--color-dark);
  font-weight: 700;
}

.best-price-line .best-price-amount {
  color: var(--color-brand);
  font-weight: 700;
}

.best-offer-block ul {
  margin: 0;
  padding-left: 18px;
  list-style: disc;
}

.best-offer-block li {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.55;
  color: #555;
  margin-bottom: 4px;
}

.best-offer-link {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.best-offer-link:hover {
  color: #963f2b;
}

.product-description-block {
  margin: 20px 0 8px;
}

.product-description-block .product-subheading {
  margin-bottom: 10px;
}

.product-description {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* Detail sections / accordions */
.product-detail-sections {
  margin-top: 16px;
  border-top: 1px solid rgba(26, 26, 26, 0.12);
}

.product-detail-block,
.product-accordion.product-detail-block {
  padding: 0;
  border-bottom: 1px solid rgba(26, 26, 26, 0.12);
}

.product-detail-block:last-child,
.product-accordion.product-detail-block:last-child {
  border-bottom: none;
}

.product-accordion summary {
  list-style: none;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0 12px;
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--color-dark);
}

.product-accordion summary::-webkit-details-marker { display: none; }

.accordion-icon {
  display: none;
  width: 14px;
  height: 14px;
  position: relative;
  flex-shrink: 0;
}

.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background: var(--color-dark);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.accordion-icon::before {
  width: 14px;
  height: 2px;
  top: 6px;
  left: 0;
}

.accordion-icon::after {
  width: 2px;
  height: 14px;
  top: 0;
  left: 6px;
}

.product-accordion[open] .accordion-icon::after {
  opacity: 0;
  transform: scaleY(0);
}

.product-accordion-body {
  padding: 0 0 20px;
}

.product-accordion-body ul,
.product-detail-block ul {
  margin: 0;
  padding-left: 18px;
  list-style: disc;
}

.product-accordion-body li,
.product-detail-block li {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 8px;
}

.product-accordion-body a,
.product-detail-block a {
  color: var(--color-brand);
}

/* Keep accordion styles for any leftover markup */
.product-accordions {
  margin-top: 16px;
  border-top: 1px solid rgba(26, 26, 26, 0.12);
}

.product-accordion {
  border-bottom: 1px solid rgba(26, 26, 26, 0.12);
}

/* Related products on product page */
#related-products.related-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 20px;
}

#related-products .product-card {
  display: flex;
  flex-direction: column;
}

#related-products .product-card-image {
  border-radius: 14px;
  overflow: hidden;
  order: 0;
}

#related-products .product-card-price {
  order: 1;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 10px 0 4px;
  letter-spacing: -0.01em;
}

#related-products .product-card-price .sale,
#related-products .product-card-price .price {
  color: var(--color-brand);
  font-weight: 600;
}

#related-products .product-card-price .regular {
  font-weight: 400;
  font-size: 0.9em;
  color: #888;
}

#related-products .product-card-name {
  order: 2;
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 0.85vw, 0.82rem);
  font-weight: 400;
  color: var(--color-muted);
  margin-bottom: 0;
}

#product-main .section-inner {
  max-width: var(--max-width);
}

/* Size chart modal */
body.modal-open { overflow: hidden; }

.size-chart-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.size-chart-modal[hidden] { display: none !important; }

.size-chart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.45);
}

.size-chart-dialog {
  position: relative;
  background: var(--color-offwhite);
  width: min(520px, 100%);
  max-height: 90vh;
  overflow: auto;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.size-chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.size-chart-header h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0;
}

.size-chart-close {
  font-size: 20px;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  color: var(--color-dark);
}

.size-chart-note {
  font-size: 13px;
  color: #666;
  margin-bottom: 16px;
}

.size-chart-table-wrap { overflow-x: auto; }

.size-chart-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-ui);
  font-size: 14px;
}

.size-chart-table th,
.size-chart-table td {
  padding: 12px 14px;
  text-align: center;
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

.size-chart-table th {
  font-weight: 600;
  background: rgba(26, 26, 26, 0.04);
}

.size-chart-table td:first-child,
.size-chart-table th:first-child {
  text-align: left;
  font-weight: 600;
}

/* About Page */
.about-hero {
  text-align: center;
  padding: 100px 40px;
  max-width: 800px;
  margin: 0 auto;
}

.about-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: 3px;
  margin-bottom: 48px;
}

.about-hero p {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 24px;
  color: #444;
}

/* FAQ */
.faq-page { max-width: 800px; margin: 0 auto; padding: 60px 40px; }
.faq-page h1 { font-family: var(--font-heading); font-size: 2rem; font-weight: 300; text-align: center; margin-bottom: 48px; }

.faq-category { margin-bottom: 16px; }

.faq-category-btn {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: white;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #eee;
  transition: background var(--transition);
}

.faq-category-btn:hover { background: var(--color-sage); }
.faq-category-btn .arrow { transition: transform var(--transition); }
.faq-category-btn.open .arrow { transform: rotate(180deg); }

.faq-items { display: none; padding: 0 24px 16px; background: white; border: 1px solid #eee; border-top: none; }
.faq-items.open { display: block; }

.faq-item { border-bottom: 1px solid #eee; }
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  display: none;
  padding: 0 0 16px;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

.faq-answer.open { display: block; }

/* Blog Post */
.blog-post { max-width: 800px; margin: 0 auto; padding: 60px 40px; }
.blog-post h1 { font-family: var(--font-heading); font-size: 2rem; font-weight: 400; margin-bottom: 16px; line-height: 1.3; }
.blog-post-meta { font-size: 13px; color: #888; margin-bottom: 32px; }
.blog-post-cover { width: 100%; aspect-ratio: 16/9; object-fit: cover; margin-bottom: 40px; }
.blog-post-content p { font-size: 16px; line-height: 1.9; margin-bottom: 20px; color: #333; }
.blog-post-content h2 { font-family: var(--font-heading); font-size: 1.4rem; margin: 32px 0 16px; }

/* Cart */
.cart-page { max-width: 900px; margin: 0 auto; padding: 60px 40px; }
.cart-page h1 { font-family: var(--font-heading); font-size: 2rem; font-weight: 300; margin-bottom: 40px; }
.cart-empty { text-align: center; padding: 60px; color: #888; }
.cart-item { display: flex; gap: 24px; padding: 24px 0; border-bottom: 1px solid #eee; align-items: center; }
.cart-item img { width: 100px; aspect-ratio: 2/3; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name { font-family: var(--font-heading); font-size: 16px; margin-bottom: 8px; }
.cart-item-price { font-size: 15px; }
.cart-summary { margin-top: 32px; text-align: right; }
.cart-total { font-size: 20px; font-weight: 500; margin-bottom: 24px; }

/* Search */
.search-page { max-width: var(--max-width); margin: 0 auto; padding: 60px 40px; }
.search-page h1 { font-family: var(--font-heading); font-size: 2rem; font-weight: 300; margin-bottom: 32px; }
.search-input-wrap { margin-bottom: 40px; }
.search-input {
  width: 100%;
  max-width: 600px;
  padding: 16px 24px;
  font-size: 16px;
  border: 1px solid #ddd;
  font-family: inherit;
}
.search-tabs { display: flex; gap: 24px; margin-bottom: 32px; border-bottom: 1px solid #eee; }
.search-tab { padding: 12px 0; font-size: 14px; border-bottom: 2px solid transparent; cursor: pointer; }
.search-tab.active { border-bottom-color: var(--color-dark); font-weight: 500; }

/* Legal Pages */
.legal-page { max-width: 800px; margin: 0 auto; padding: 60px 40px; }
.legal-page h1 { font-family: var(--font-heading); font-size: 2rem; font-weight: 400; margin-bottom: 32px; }
.legal-page h2 { font-family: var(--font-heading); font-size: 1.2rem; margin: 32px 0 12px; }
.legal-page p, .legal-page li { font-size: 14px; line-height: 1.8; color: #444; margin-bottom: 12px; }
.legal-page ul { padding-left: 24px; list-style: disc; }

/* Search Overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(249,248,241,0.98);
  z-index: 3000;
  display: none;
  padding: 40px;
}

.search-overlay.open { display: block; }

.search-overlay-close {
  position: absolute;
  top: 24px;
  right: 40px;
  font-size: 28px;
}

/* Side Cart */
.side-cart {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  max-width: 100vw;
  height: 100vh;
  background: white;
  z-index: 2500;
  box-shadow: -4px 0 24px rgba(0,0,0,0.1);
  transition: right var(--transition);
  display: flex;
  flex-direction: column;
}

.side-cart.open { right: 0; }

.side-cart-header {
  padding: 24px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.side-cart-body { flex: 1; overflow-y: auto; padding: 24px; }
.side-cart-footer { padding: 24px; border-top: 1px solid #eee; }

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 2400;
  display: none;
}

.cart-overlay.open { display: block; }

/* Login Modal */
.login-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
}

.login-modal.open { display: flex; }

.login-box {
  background: white;
  padding: 48px;
  max-width: 420px;
  width: 90%;
  text-align: center;
}

.login-box h2 { font-family: var(--font-heading); margin-bottom: 24px; }
.login-box input {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 16px;
  border: 1px solid #ddd;
  font-family: inherit;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { grid-template-columns: 1fr 1fr; }
  .footer-copy { grid-column: 1 / -1; order: 3; text-align: left; }
  .founder-choice-inner,
  .hoku-inner { grid-template-columns: 1fr; gap: 24px; }
  .founder-choice-section { padding: 32px 24px 36px; }
  .founder-choice-visual {
    max-width: 420px;
    justify-self: center;
    margin-top: 8px;
  }
  .founder-deco-clouds { width: min(26%, 96px); left: -4%; top: -3%; }
  .founder-deco-daisy { width: min(16%, 68px); right: -3%; bottom: -2%; }
  .founder-deco-florals { width: min(24%, 92px); right: -5%; bottom: -6%; }
  .hoku-section { padding: 28px 24px 40px; }
  .product-page { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .product-trust-bar { grid-template-columns: repeat(3, 1fr); gap: 12px 8px; }
  .product-actions { flex-direction: column; }
  #related-products.related-products-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .arrival-card { flex: 0 0 calc((100% - var(--arrivals-gap)) / 2); }
  .new-arrivals-section { padding: 28px 24px 40px; }
  .new-arrivals-slider { --arrivals-gap: 16px; }
  .reviews-section { padding: 56px 24px 48px; --reviews-gap: 18px; }
  .reviews-heading { margin-bottom: 28px; }
  .usp-row { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; padding: 36px 24px 40px; }
  .creators-videos-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .creators-videos-section { padding: 40px 24px 48px; }
  .category-ctas { gap: 16px; padding: 32px 20px 40px; }
  .category-cta-btn { font-size: 14px; padding: 9px 16px; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-btn { display: block; grid-column: 1; }
  .header-logo { grid-column: 2; }
  .header-actions { grid-column: 3; }
  .header-inner { padding: 0 16px; height: 64px; }
  .header-logo img { height: 38px; }
  .hero-split { min-height: 100svh; }
  .hero-split-panels { grid-template-columns: 1fr; grid-template-rows: 1fr 1fr; }
  .hero-split-center { padding-top: 14vh; }
  .hero-split-center h1 { font-size: clamp(1.25rem, 5.5vw, 1.75rem); max-width: 16ch; }
  .btn-shop { margin-top: 16px; padding: 5px 36px; min-width: 120px; font-size: 14px; }
  .makers-section { padding: 48px 20px 32px; }
  .makers-stage { padding-top: 56px; padding-bottom: 0; }
  .makers-actions { gap: 10px; }
  .btn-makers { min-width: 0; flex: 1 1 auto; padding: 5px 16px; font-size: 14px; }
  .maker-sticker { width: 52px; opacity: 0.95; }
  .sticker-left-1 { top: 4%; left: 0; width: 56px; }
  .sticker-left-2 { top: 36%; left: -2px; width: 50px; }
  .sticker-left-3 { bottom: 8%; left: 2px; width: 52px; }
  .sticker-right-1 { top: 34%; right: 0; width: 54px; }
  .sticker-right-2 { bottom: 8%; left: auto; right: -4px; width: 44px; }
  .makers-mnemonic {
    top: -4px;
    right: 2px;
    width: 104px;
  }
  .show-art-page,
  .makers-gallery-page { padding: 56px 20px 72px; }
  .makers-gallery-grid { column-count: 1; column-gap: 0; }
  .coupon-box { flex-direction: column; }
  .section { padding: 48px 20px; }
  .usp-row { grid-template-columns: 1fr 1fr; gap: 24px 12px; padding: 32px 20px 36px; }
  .usp-icon { width: 48px; height: 48px; }
  .usp-item h3 { font-size: 13px; }
  .creators-videos-section { padding: 36px 16px 44px; }
  .creators-videos-title { margin-bottom: 20px; }
  .creators-videos-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .category-ctas {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px 20px 44px;
  }
  .category-cta-media { aspect-ratio: 1 / 1; border-radius: 16px; }
  .category-cta-btn { padding: 10px 18px; }
  .new-arrivals-section { padding: 24px 20px 36px; }
  .new-arrivals-wrap .section-title { margin-bottom: 16px; font-size: clamp(1.75rem, 6vw, 2.25rem); }
  .new-arrivals-slider { --arrivals-gap: 14px; }
  .arrival-card { flex: 0 0 100%; }
  .reviews-section { padding: 48px 20px 44px; --reviews-gap: 16px; }
  .reviews-heading { margin-bottom: 22px; font-size: clamp(1.75rem, 6vw, 2.25rem); }
  .review-card { flex: 0 0 100%; border-radius: 18px; }
  .review-card-body { padding: 18px 16px 20px; }
  .reviews-nav { margin-top: 22px; gap: 22px; }
  .carousel-prev { left: 4px; }
  .carousel-next { right: 4px; }
  .carousel-arrow { width: 38px; height: 38px; }
  .footer-main { gap: 36px; padding-bottom: 36px; }
  .footer-tagline { margin-bottom: 22px; }
  .footer-subscribe-row { flex-direction: column; }
  .footer-subscribe-btn { width: 100%; }
  .footer-nav { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer-legal,
  .footer-social { align-items: flex-start; text-align: left; }
  .footer-copy { order: 0; text-align: left; }
  .category-tabs { gap: 8px 16px; padding: 16px 20px 32px; }
  .shop-toolbar { padding: 16px 20px; }

  /* Product page — mobile */
  .product-page {
    display: block;
    padding: 0 0 32px;
    max-width: none;
  }

  .product-gallery {
    position: static;
    margin: 0;
    padding: 12px 16px 0;
  }

  .product-gallery-stage {
    border-radius: 14px;
    margin-bottom: 12px;
  }

  .gallery-slide {
    aspect-ratio: 3/4;
    min-height: 68vw;
  }

  .gallery-wishlist {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.92);
    color: var(--color-dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
    cursor: pointer;
  }

  .gallery-wishlist svg {
    width: 20px;
    height: 20px;
  }

  .gallery-wishlist.is-active {
    color: var(--color-brand);
  }

  .gallery-wishlist.is-active svg path {
    fill: currentColor;
  }

  .gallery-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    position: absolute;
    right: 14px;
    bottom: 28px;
    z-index: 3;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .gallery-rating-badge svg {
    width: 11px;
    height: 11px;
    fill: var(--color-brand);
  }

  .gallery-rating-sep {
    width: 1px;
    height: 12px;
    background: rgba(26, 26, 26, 0.2);
    margin: 0 2px;
  }

  .gallery-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    z-index: 3;
  }

  .gallery-dot {
    width: 6px;
    height: 6px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
  }

  .gallery-dot.active {
    background: var(--color-dark);
    transform: scale(1.15);
  }

  .product-gallery-thumbs {
    display: none;
  }

  .product-info {
    padding: 18px 16px 8px;
  }

  .product-info h1 {
    font-size: 1.35rem;
    margin-bottom: 10px;
  }

  .product-rating-desktop,
  .product-sku,
  .product-best-offers-desktop {
    display: none;
  }

  .product-prices {
    margin-bottom: 14px;
    gap: 10px;
  }

  .product-prices .original {
    font-size: 0.95rem;
  }

  .product-prices .sale,
  .product-prices .price {
    font-size: 1.75rem;
  }

  .makers-deal-banner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 22px;
    padding: 14px 14px 12px;
    border: 1px solid rgba(175, 73, 50, 0.28);
    border-radius: 12px;
    background:
      linear-gradient(135deg, rgba(175, 73, 50, 0.08), rgba(250, 247, 242, 0.95) 45%, rgba(196, 163, 90, 0.12));
    box-shadow: 0 4px 16px rgba(175, 73, 50, 0.08);
  }

  .makers-deal-left {
    min-width: 0;
    flex: 1;
  }

  .makers-deal-kicker {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-brand);
    margin-bottom: 4px;
  }

  .makers-deal-price {
    margin: 0 0 4px;
    font-family: var(--font-ui);
    font-size: 15px;
    color: var(--color-dark);
  }

  .makers-deal-price strong {
    font-size: 1.25em;
    color: var(--color-brand);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
  }

  .makers-deal-note {
    margin: 0;
    font-family: var(--font-body);
    font-size: 12px;
    color: #666;
  }

  .makers-deal-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    flex-shrink: 0;
  }

  .makers-deal-extra {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--color-brand);
    color: #fff;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
  }

  .makers-deal-details {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-brand);
  }

  .product-actions {
    flex-direction: column-reverse;
    gap: 10px;
    margin-bottom: 28px;
  }

  .product-actions .btn {
    width: 100%;
  }

  .product-trust-bar {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 6px;
    padding: 20px 0;
  }

  .product-trust-item h3 {
    font-size: 11px;
  }

  .product-accordion summary {
    cursor: pointer;
    padding: 18px 0;
  }

  .product-accordion .accordion-icon {
    display: block;
  }

  #related-products.related-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 12px;
  }

  #product-main .section {
    padding: 36px 16px 56px;
  }

  #product-main .section-title {
    font-size: 1.75rem;
    margin-bottom: 20px;
  }
}
