/*
 * BBG Designs — Site Stylesheet
 * ==============================
 * Reference stylesheet for building pages that match final_site_preview.html.
 *
 * Usage (from site/ directory):
 *   <link rel="stylesheet" href="/bbg-designs.css" />
 *
 * Asset paths use root-absolute /input/ URLs
 *
 * Required HTML structure:
 *   <main class="site-preview-root">
 *     <div class="wf-assembled-hero-shell" data-wf-section="hero">…hero…</div>
 *     <div class="site-section-wf site-section-wf--coordinated" data-wf-section="…">…</div>
 *   </main>
 *   <div class="wf-mobile-nav" id="wf-mobile-nav">…</div>
 *
 * Optional JS (add class before body paint for scroll animations):
 *   document.documentElement.classList.add("wf-anim-js");
 *
 * Breakpoints: 650px (mobile nav), 768px (sections), 900px, 480px
 */

:root {
  --bbg-font-title: 'Finger Paint', cursive;
  --bbg-font-body: 'Colab', sans-serif;
  --bbg-brown-900: #3B2008;
  --bbg-brown-800: #6B4510;
  --bbg-brown-700: #7A5030;
  --bbg-brown-600: #8B5E1A;
  --bbg-brown-nav: rgba(139, 90, 20, 0.88);
  --bbg-gold: #c8860a;
  --bbg-cream: #FDF6EE;
  --bbg-cream-warm: #F5E8D5;
  --bbg-white: #FFFFFF;
  --bbg-pink: #E8789A;
  --bbg-pink-hover: #D45A80;
  --bbg-pink-hero: #e8799a;
  --bbg-pink-hero-hover: #d45f84;
  --bbg-pink-badge: #e75480;
  --bbg-nav-link: #ffffff;
  --bbg-nav-link-hover: #f9d89c;
  --bbg-hero-headline: #ffffff;
  --bbg-container-max: 1200px;
  --bbg-section-padding-y: 64px;
  --bbg-container-padding-x: 40px;
  --bbg-nav-height: 110px;
  --bbg-nav-height-mobile: 88px;
  --bbg-logo-size: 88px;
  --bbg-logo-size-mobile: 72px;
  --bbg-hero-bg-image: url('/input/hero_reference.jpg');
  /* Note: @font-face src must use literal URLs — vars are not supported there */
  --bbg-shadow-image: 0 8px 32px rgba(80, 40, 0, 0.25);
  --bbg-shadow-cta: 0 4px 18px rgba(232, 120, 154, 0.45);
  --bbg-z-mobile-nav: 10000;
  --bbg-z-nav-mobile: 10002;
  --bbg-bp-mobile-nav: 650px;
  --bbg-bp-tablet: 900px;
  --bbg-bp-mobile: 768px;
  --bbg-bp-small: 480px;
}

@font-face {
  font-family: 'Finger Paint';
  src: url('/input/FingerPaint-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Colab';
  src: url('/input/ColabReg.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ------------------------------------------------------------------ */
/* Typography                                                          */
/* ------------------------------------------------------------------ */
html,
body,
.site-preview-root {
  font-family: var(--bbg-font-body);
}

h1, h2, h3, h4,
.about-section-v1 h2,
.services-section-v1 h2,
.services-section-v1 h3,
.gallery-section-v2 h2,
.gallery-section-v2 h3,
.shop-section-v3 h2,
.shop-section-v3 h3,
.testimonials-section-v1 h2,
.contact-section-v2 h2,
.contact-section-v2 h3,
.cart-section-v2 h2,
.cart-section-v2 h3,
.product-section-v1 h1,
.product-section-v1 h2,
.product-section-v2 h1,
.product-section-v3 h1,
.product-section-v3 h2,
.cta-section-v1 h2,
.footer-section-v1 .footer-brand h3,
.footer-section-v1 h4,
.wf-hero__headline,
.wf-hero__cta,
.wf-mobile-nav__link,
.home-section-cta,
.cta-section-v1 .cta-button {
  font-family: var(--bbg-font-title);
}

/* preview shell */
html {
  scroll-behavior: smooth;
  overscroll-behavior: none;
}
body {
  margin: 0;
  overscroll-behavior: none;
  font-family: var(--bbg-font-body);
  overflow-x: hidden;
}
.site-preview-root {
  display: block;
  overflow-x: hidden;
  max-width: 100%;
}

/* Keep hero/nav appearance stable even if sections toggle page theme/color-scheme. */
.wf-assembled-hero-shell,
.wf-assembled-hero-shell * {
  color-scheme: normal !important;
}

/* Hide common model-added fixed “Press D / light–dark” hint UI; document-level key handlers still run */
.site-preview-root [aria-label*="Press D" i],
.site-preview-root [aria-label*="press d" i],
.site-preview-root [title*="Press D" i],
.site-preview-root [title*="light/dark" i],
.site-preview-root [title*="light / dark" i],
.site-preview-root [data-theme-toggle],
.site-preview-root [data-wf-theme-hint],
.site-preview-root .wf-theme-toggle-chip {
  display: none !important;
}

/* === section scroll animations === */
@keyframes wf-section-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

/*
 * wf-anim-js is added to <html> by a blocking <head> script before body renders.
 * Without it (no JS), nothing is hidden.
 *
 * Structure per section:
 *   [data-wf-section]     ← outer shell, background, never animated
 *     .wf-section-body    ← passthrough
 *       model root        ← owns background colour, never animated
 *         > children      ← hidden until in-view, then fade+lift
 */
html.wf-anim-js .site-preview-root [data-wf-section]:not(.wf-section--in):not([data-wf-section="hero"]):not([data-wf-section="footer"]) .wf-section-body > * > * {
  opacity: 0;
}

html.wf-anim-js .site-preview-root [data-wf-section="footer"] .wf-section-body > * > * {
  opacity: 1;
}

.site-preview-root [data-wf-section].wf-section--in .wf-section-body > * > * {
  animation: wf-section-in 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@media (prefers-reduced-motion: reduce) {
  html.wf-anim-js .site-preview-root [data-wf-section]:not(.wf-section--in):not([data-wf-section="hero"]):not([data-wf-section="footer"]) .wf-section-body > * > * {
    opacity: 1;
  }
  .site-preview-root [data-wf-section].wf-section--in .wf-section-body > * > * {
    animation: none;
  }
}

/* === hero_preview.css === */
.wf-hero {
  font-family: var(--bbg-font-body);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.wf-hero *, .wf-hero *::before, .wf-hero *::after {
  box-sizing: border-box;
}

.wf-hero__body {
  position: relative;
  width: 100%;
  min-height: 650px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 1;
  z-index: 1;
}

/* Home page: hero fills the viewport (nav + body) */
.wf-hero:has(.wf-hero__body) {
  min-height: 100vh;
  min-height: 100dvh;
}

.wf-hero:has(.wf-hero__body) .wf-hero__body {
  min-height: 0;
}

.wf-hero__bg-image {
  position: absolute;
  inset: 0;
  background-image: var(--bbg-hero-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}

.wf-hero__nav {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 32px;
  background: rgba(139, 90, 20, 0.88);
  min-height: 110px;
  gap: 16px;
}

.wf-hero__logo {
  flex-shrink: 0;
  justify-self: start;
}

.wf-hero__logo-link {
  display: block;
  line-height: 0;
}

.wf-hero__logo-img {
  display: block;
  width: var(--bbg-logo-size);
  height: var(--bbg-logo-size);
  object-fit: cover;
  border-radius: 50%;
}

.wf-hero__nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  justify-self: center;
  grid-column: 2;
}

.wf-hero__nav-link {
  text-decoration: none;
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: color 0.2s;
}

.wf-hero__nav-link:hover {
  color: #f9d89c;
}

.wf-hero__nav-link--active {
  color: #fff;
  font-weight: 700;
}

.wf-hero__nav-icons {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
  justify-self: end;
  grid-column: 3;
}

.wf-hero__menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 10001;
  -webkit-tap-highlight-color: transparent;
}

.wf-hero__menu-toggle-box {
  display: block;
  width: 26px;
  height: 18px;
  position: relative;
}

.wf-hero__menu-toggle-line {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.28s ease,
    top 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.wf-hero__menu-toggle-line:nth-child(1) { top: 0; }
.wf-hero__menu-toggle-line:nth-child(2) { top: 8px; }
.wf-hero__menu-toggle-line:nth-child(3) { top: 16px; }

.wf-hero__menu-toggle--open .wf-hero__menu-toggle-line:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

.wf-hero__menu-toggle--open .wf-hero__menu-toggle-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.wf-hero__menu-toggle--open .wf-hero__menu-toggle-line:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

.wf-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 10000;
  visibility: hidden;
  pointer-events: none;
}

.wf-mobile-nav--open {
  visibility: visible;
  pointer-events: auto;
}

.wf-mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 10, 0, 0.55);
  opacity: 0;
  transition: opacity 0.38s ease;
}

.wf-mobile-nav--open .wf-mobile-nav__backdrop {
  opacity: 1;
}

.wf-mobile-nav__panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 90, 20, 0.97);
  opacity: 0;
  transform: scale(1.03);
  transition:
    opacity 0.42s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 32px;
  box-sizing: border-box;
}

.wf-mobile-nav--open .wf-mobile-nav__panel {
  opacity: 1;
  transform: scale(1);
}

.wf-mobile-nav__links {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 320px;
  text-align: center;
}

.wf-mobile-nav__item {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.wf-mobile-nav__link {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-family: var(--bbg-font-title);
  font-size: clamp(28px, 7vw, 36px);
  font-weight: 400;
  letter-spacing: 0.03em;
  padding: 14px 16px;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.2s ease,
    color 0.2s ease;
}

.wf-mobile-nav__link:hover,
.wf-mobile-nav__link:focus-visible {
  color: #f9d89c;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.wf-mobile-nav__link--active {
  color: #f9d89c;
}

.wf-mobile-nav--open .wf-mobile-nav__link {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

.wf-mobile-nav--open .wf-mobile-nav__item:nth-child(1) .wf-mobile-nav__link { transition-delay: 0.06s; }
.wf-mobile-nav--open .wf-mobile-nav__item:nth-child(2) .wf-mobile-nav__link { transition-delay: 0.11s; }
.wf-mobile-nav--open .wf-mobile-nav__item:nth-child(3) .wf-mobile-nav__link { transition-delay: 0.16s; }
.wf-mobile-nav--open .wf-mobile-nav__item:nth-child(4) .wf-mobile-nav__link { transition-delay: 0.21s; }
.wf-mobile-nav--open .wf-mobile-nav__item:nth-child(5) .wf-mobile-nav__link { transition-delay: 0.26s; }

@media (max-width: 650px) {
  .wf-hero {
    padding-top: var(--bbg-nav-height-mobile);
  }

  .wf-hero:has(.wf-hero__body) {
    min-height: 100vh;
    min-height: 100dvh;
    box-sizing: border-box;
  }

  .wf-hero__body {
    min-height: clamp(420px, 72vh, 560px);
  }

  .wf-hero:has(.wf-hero__body) .wf-hero__body {
    min-height: 0;
  }

  .wf-hero__content {
    padding: 40px 20px 56px;
  }

  .wf-hero__cta {
    padding: 14px 36px;
    width: min(100%, 320px);
    box-sizing: border-box;
  }

  .wf-hero__nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    grid-template-columns: 1fr auto;
    padding: 0 max(16px, env(safe-area-inset-left, 0px)) 0 max(16px, env(safe-area-inset-right, 0px));
    min-height: var(--bbg-nav-height-mobile);
    z-index: var(--bbg-z-nav-mobile);
  }

  .wf-hero__nav-links {
    display: none;
  }

  .wf-hero__menu-toggle {
    display: flex;
  }

  .wf-hero__nav-icons {
    grid-column: 2;
    gap: 8px;
  }

  .wf-hero__logo-img {
    width: var(--bbg-logo-size-mobile);
    height: var(--bbg-logo-size-mobile);
  }
}

@media (max-width: 650px) and (prefers-reduced-motion: reduce) {
  .wf-hero__menu-toggle-line,
  .wf-mobile-nav__backdrop,
  .wf-mobile-nav__panel,
  .wf-mobile-nav__link {
    transition: none;
  }

  .wf-mobile-nav__link {
    opacity: 1;
    transform: none;
  }
}

.wf-hero__nav-icon-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  gap: 2px;
}

.wf-hero__nav-icon-link:hover {
  color: #f9d89c;
}

.wf-hero__nav-icon-link:hover svg {
  stroke: #f9d89c;
}

.wf-hero__cart-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wf-hero__cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #e75480;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.wf-hero__content {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px 80px;
  text-align: center;
}

.wf-hero__headline {
  font-family: var(--bbg-font-title);
  font-size: clamp(42px, 6.5vw, 80px);
  font-weight: 900;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.1;
  text-shadow: 2px 3px 8px rgba(0,0,0,0.35);
  letter-spacing: -0.5px;
}

.wf-hero__subheadline {
  font-size: clamp(17px, 2.2vw, 24px);
  color: #fff;
  margin: 0 0 36px;
  font-weight: 400;
  line-height: 1.55;
  text-shadow: 1px 2px 6px rgba(0,0,0,0.3);
  letter-spacing: 0.01em;
}

.wf-hero__cta {
  display: inline-block;
  background: #e8799a;
  color: #fff;
  text-decoration: none;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  font-family: var(--bbg-font-title);
  padding: 16px 56px;
  border-radius: 8px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.22);
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
}

.wf-hero__cta:hover {
  background: #d45f84;
  transform: translateY(-2px);
}

.wf-hero__content,
.wf-hero__text-col,
.wf-hero__tablet-preview {
  position: relative;
  z-index: 2;
}

/* === assembled preview layer (hero bg, sections, rhythm, responsive non-hero) === */
/* ========== Assembled preview: coordinated rest-of-site (variant CSS owns section backgrounds) ========== */
.site-preview-root {
  min-height: auto;
  background: #fff;
}

.wf-assembled-hero-shell {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.site-section-wf {
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-top: none;
  background: transparent;
  color: inherit;
}
@media (max-width: 900px) {
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) {
    padding-left: max(0rem, env(safe-area-inset-left, 0px));
    padding-right: max(0rem, env(safe-area-inset-right, 0px));
  }

  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) img,
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) video,
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) svg {
    max-width: 100%;
    height: auto;
  }

  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) table {
    display: block;
    width: 100% !important;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 768px) {
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) {
    min-width: 0;
  }

  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) [style*="display:grid"],
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) [style*="display: grid"] {
    grid-template-columns: 1fr !important;
  }

  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) [style*="flex-direction:row"],
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) [style*="flex-direction: row"] {
    flex-direction: column !important;
  }
}

@media (max-width: 480px) {
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) button,
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) .button,
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) a[class*="btn"],
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) a[class*="cta"] {
    max-width: 100%;
    box-sizing: border-box;
    word-break: break-word;
  }
}

/* === about_v1.css === */
.about-section-v1 {
  background: #FFFFFF;
  padding: 64px 0;
}

.about-section-v1 .about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.about-section-v1 .about-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
}

.about-section-v1 h2 {
  font-family: var(--bbg-font-title);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #3B2008;
  margin: 0 0 8px 0;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.about-section-v1 .about-subtitle {
  font-family: var(--bbg-font-body);
  font-size: 18px;
  color: #7A5030;
  margin: 0 0 32px 0;
  font-style: italic;
}

.about-section-v1 p {
  font-family: var(--bbg-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: #3B2008;
  margin: 0 0 24px 0;
}

.about-section-v1 .about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.about-section-v1 .stat-item {
  text-align: center;
  padding: 16px;
  border-radius: 12px;
  background: #FDF6EE;
}

.about-section-v1 .stat-number {
  display: block;
  font-family: var(--bbg-font-body);
  font-size: 28px;
  font-weight: 700;
  color: #8B5E1A;
  margin-bottom: 4px;
}

.about-section-v1 .stat-label {
  display: block;
  font-family: var(--bbg-font-body);
  font-size: 13px;
  color: #7A5030;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-section-v1 .about-image {
  position: relative;
}

.about-section-v1 .about-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(80, 40, 0, 0.25);
}

@media (max-width: 768px) {
  .about-section-v1 {
    padding: 48px 0;
  }

  .about-section-v1 .about-container {
    padding: 0 24px;
  }

  .about-section-v1 .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-section-v1 .about-subtitle {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .about-section-v1 p {
    font-size: 15px;
  }
  
  .about-section-v1 .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
  }

  .about-section-v1 .stat-number {
    font-size: 22px;
  }

  .about-section-v1 .stat-label {
    font-size: 11px;
  }
  
  .about-section-v1 .about-image img {
    height: clamp(240px, 50vw, 320px);
  }
}

/* === section comparison labels (temporary — remove after selection) === */
.product-variation-wrap {
  width: 100%;
}

.product-variation-label {
  margin: 0;
  padding: 14px 24px;
  font-family: var(--bbg-font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  color: var(--bbg-brown-700);
  background: var(--bbg-cream-warm);
  border-top: 3px solid var(--bbg-brown-600);
  border-bottom: 1px solid rgba(59, 32, 8, 0.12);
}

.product-variation-wrap:first-of-type .product-variation-label {
  border-top: none;
}

/* === home page preview sections === */
.home-section-cta {
  display: inline-block;
  font-family: var(--bbg-font-title);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  padding: 14px 28px;
  border-radius: 8px;
  color: var(--bbg-white);
  background: var(--bbg-pink);
  box-sizing: border-box;
  transition: background 0.2s ease, transform 0.15s ease;
}

.home-section-cta:hover {
  background: var(--bbg-pink-hover);
  transform: translateY(-2px);
}

.home-section-cta--on-dark {
  box-shadow: 0 4px 18px rgba(232, 120, 154, 0.45);
}

.home-section-cta-wrap {
  margin-top: 28px;
}

.home-section-cta-wrap--center {
  text-align: center;
}

.site-preview-root .home-section-preview .about-section-v1,
.site-preview-root .home-section-preview .services-section-v1,
.site-preview-root .home-section-preview .gallery-section-v2,
.site-preview-root .home-section-preview .cta-section-v1 {
  padding: 48px 0;
}

.site-preview-root .home-section-preview .about-section-v1 .about-subtitle {
  margin-bottom: 20px;
}

.site-preview-root .home-section-preview .services-section-v1 .services-header {
  margin-bottom: 40px;
}

.site-preview-root .home-section-preview .gallery-section-v2 .gallery-intro {
  margin-bottom: 40px;
}

.site-preview-root .home-section-preview .cta-section-v1 .cta-content > p {
  margin-bottom: 28px;
}

.site-preview-root .home-section-preview .cta-section-v1 .cta-actions {
  margin-bottom: 32px;
}

.site-preview-root .home-section-preview .cta-section-v1 .trust-points {
  grid-template-columns: 1fr;
  max-width: 480px;
}

@media (max-width: 768px) {
  .site-preview-root .home-section-preview .about-section-v1,
  .site-preview-root .home-section-preview .services-section-v1,
  .site-preview-root .home-section-preview .gallery-section-v2,
  .site-preview-root .home-section-preview .cta-section-v1 {
    padding: 40px 0;
  }

  .home-section-cta-wrap {
    margin-top: 24px;
  }

  .home-section-cta {
    width: 100%;
    max-width: 320px;
  }

  .home-section-cta-wrap--center .home-section-cta,
  .about-section-v1 .home-section-cta-wrap .home-section-cta {
    width: 100%;
    max-width: none;
  }
}

/* === services_v1.css === */
.services-section-v1 {
  background: #F5E8D5;
  padding: 64px 0;
}

.services-section-v1 .services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.services-section-v1 .services-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.services-section-v1 h2 {
  font-family: var(--bbg-font-title);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #3B2008;
  margin: 0 0 16px 0;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.services-section-v1 .services-header p {
  font-family: var(--bbg-font-body);
  font-size: 18px;
  color: #7A5030;
  margin: 0;
}

.services-section-v1 .services-bands {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.services-section-v1 .service-band {
  width: 100%;
  padding: 32px 0;
  border-left: 6px solid transparent;
}

.services-section-v1 .service-band.accent {
  background: rgba(232, 120, 154, 0.12);
  border-left-color: #E8789A;
}

.services-section-v1 .service-band.light {
  background: rgba(255, 255, 255, 0.6);
  border-left-color: #8B5E1A;
}

.services-section-v1 .band-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.services-section-v1 h3 {
  font-family: var(--bbg-font-title);
  font-size: 24px;
  font-weight: 700;
  color: #3B2008;
  margin: 0 0 16px 0;
}

.services-section-v1 .band-content p {
  font-family: var(--bbg-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: #3B2008;
  margin: 0;
}

@media (max-width: 768px) {
  .services-section-v1 {
    padding: 48px 0;
  }

  .services-section-v1 .services-container {
    padding: 0 24px;
  }

  .services-section-v1 .services-header {
    margin-bottom: 40px;
  }

  .services-section-v1 .services-header p {
    font-size: 16px;
  }
  
  .services-section-v1 .service-band {
    padding: 24px 0;
  }
  
  .services-section-v1 .band-content {
    padding: 0 16px;
  }

  .services-section-v1 h3 {
    font-size: clamp(20px, 5vw, 24px);
  }

  .services-section-v1 .band-content p {
    font-size: 15px;
  }
}

/* === gallery_v2.css === */
.gallery-section-v2 {
  background: #FDF6EE;
  padding: 64px 0;
}

.gallery-section-v2 .gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.gallery-section-v2 .gallery-intro {
  text-align: center;
  margin-bottom: 64px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-section-v2 h2 {
  font-family: var(--bbg-font-title);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #3B2008;
  margin: 0 0 16px 0;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.gallery-section-v2 .gallery-intro p {
  font-family: var(--bbg-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: #7A5030;
  margin: 0;
}

.gallery-section-v2 .gallery-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  align-items: center;
}

.gallery-section-v2 .gallery-row:last-child {
  margin-bottom: 0;
}

.gallery-section-v2 .gallery-row.right-image {
  direction: rtl;
}

.gallery-section-v2 .gallery-row.right-image .content-side,
.gallery-section-v2 .gallery-row.right-image .image-side {
  direction: ltr;
}

.gallery-section-v2 .image-side img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(80, 40, 0, 0.25);
}

.gallery-section-v2 .content-side {
  padding: 32px;
}

.gallery-section-v2 h3 {
  font-family: var(--bbg-font-title);
  font-size: 28px;
  font-weight: 700;
  color: #3B2008;
  margin: 0 0 16px 0;
}

.gallery-section-v2 .image-description {
  font-family: var(--bbg-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: #7A5030;
  margin: 0;
}

@media (max-width: 768px) {
  .gallery-section-v2 {
    padding: 48px 0;
  }

  .gallery-section-v2 .gallery-container {
    padding: 0 24px;
  }

  .gallery-section-v2 .gallery-row {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }
  
  .gallery-section-v2 .gallery-row.right-image {
    direction: ltr;
  }
  
  .gallery-section-v2 .gallery-row.right-image .image-side {
    order: -1;
  }
  
  .gallery-section-v2 .content-side {
    padding: 8px 0 0;
  }
  
  .gallery-section-v2 .image-side img {
    height: clamp(220px, 45vw, 280px);
  }
  
  .gallery-section-v2 .gallery-intro {
    margin-bottom: 40px;
  }

  .gallery-section-v2 .gallery-intro p {
    font-size: 15px;
  }

  .gallery-section-v2 h3 {
    font-size: clamp(22px, 5vw, 28px);
  }

  .gallery-section-v2 .image-description {
    font-size: 15px;
  }
}

/* === shop_v3.css — category pills + compact grid === */
.shop-section-v3 {
  background: var(--bbg-cream-warm);
  padding: var(--bbg-section-padding-y) 0;
}

.shop-section-v3 + .shop-section-v3 {
  padding-top: 0;
  border-top: 1px solid rgba(59, 32, 8, 0.1);
}

.shop-section-v3 + .shop-section-v3 .shop-container {
  padding-top: 48px;
}

.shop-section-v3 .shop-container {
  max-width: var(--bbg-container-max);
  margin: 0 auto;
  padding: 0 var(--bbg-container-padding-x);
}

.shop-section-v3 .shop-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.shop-section-v3 .shop-header-text {
  max-width: 480px;
}

.shop-section-v3 h2 {
  font-family: var(--bbg-font-title);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--bbg-brown-900);
  margin: 0 0 8px;
  line-height: 1.1;
}

.shop-section-v3 .shop-header-text p {
  font-family: var(--bbg-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--bbg-brown-700);
  margin: 0;
}

.shop-section-v3 .shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.shop-section-v3 .shop-filter {
  font-family: var(--bbg-font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--bbg-brown-700);
  background: var(--bbg-white);
  border: 2px solid transparent;
  border-radius: 24px;
  padding: 8px 18px;
  cursor: default;
}

.shop-section-v3 .shop-filter--active {
  color: var(--bbg-white);
  background: var(--bbg-brown-600);
  border-color: var(--bbg-brown-600);
}

.shop-section-v3 .shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.shop-section-v3 .shop-card {
  position: relative;
  display: block;
  background: var(--bbg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(80, 40, 0, 0.06);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.shop-section-v3 .shop-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(80, 40, 0, 0.1);
}

.shop-section-v3 .shop-card:focus-visible {
  outline: 2px solid var(--bbg-pink);
  outline-offset: 2px;
}

.shop-section-v3 .shop-card-link {
  display: block;
}

.shop-section-v3 .shop-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  font-family: var(--bbg-font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bbg-white);
  background: var(--bbg-pink);
  padding: 4px 8px;
  border-radius: 4px;
}

.shop-section-v3 .shop-card-image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.shop-section-v3 .shop-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.shop-section-v3 .shop-card:hover .shop-card-image img {
  transform: scale(1.04);
}

.shop-section-v3 .shop-card-body {
  padding: 14px 16px 16px;
}

.shop-section-v3 h3 {
  font-family: var(--bbg-font-title);
  font-size: 16px;
  font-weight: 700;
  color: var(--bbg-brown-900);
  margin: 0 0 4px;
  line-height: 1.25;
}

.shop-section-v3 .shop-card-meta {
  font-family: var(--bbg-font-body);
  font-size: 13px;
  color: var(--bbg-brown-700);
  margin: 0;
}

.shop-section-v3 .shop-card-meta strong {
  color: var(--bbg-pink);
  font-weight: 600;
}

@media (max-width: 900px) {
  .shop-section-v3 .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-section-v3 .shop-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .shop-section-v3 {
    padding: 48px 0;
  }

  .shop-section-v3 .shop-container {
    padding: 0 24px;
  }

  .shop-section-v3 .shop-header-text p {
    font-size: 15px;
  }

  .shop-section-v3 .shop-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
    padding-bottom: 4px;
  }

  .shop-section-v3 + .shop-section-v3 .shop-container {
    padding-top: 36px;
  }
}

@media (max-width: 480px) {
  .shop-section-v3 .shop-container {
    padding: 0 16px;
  }
}

/* === product_v1.css — classic split === */
.product-section-v1 {
  background: var(--bbg-cream);
  padding: var(--bbg-section-padding-y) 0;
}

.product-section-v1 .product-container {
  max-width: var(--bbg-container-max);
  margin: 0 auto;
  padding: 0 var(--bbg-container-padding-x);
}

.product-section-v1 .product-breadcrumb {
  font-family: var(--bbg-font-body);
  font-size: 13px;
  color: var(--bbg-brown-700);
  margin: 0 0 28px;
}

.product-section-v1 .product-breadcrumb a {
  color: var(--bbg-brown-700);
  text-decoration: none;
}

.product-section-v1 .product-breadcrumb a:hover {
  color: var(--bbg-pink);
}

.product-section-v1 .product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.product-section-v1 .product-gallery-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--bbg-shadow-image);
}

.product-section-v1 .product-gallery-main img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.product-section-v1 .product-tag {
  display: inline-block;
  font-family: var(--bbg-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bbg-pink);
  background: rgba(232, 120, 154, 0.12);
  padding: 4px 10px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.product-section-v1 h1 {
  font-family: var(--bbg-font-title);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--bbg-brown-900);
  margin: 0 0 8px;
  line-height: 1.15;
}

.product-section-v1 .product-price {
  font-family: var(--bbg-font-title);
  font-size: clamp(24px, 3vw, 28px);
  font-weight: 700;
  color: var(--bbg-pink);
  margin: 0 0 20px;
}

.product-section-v1 .product-description {
  font-family: var(--bbg-font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--bbg-brown-700);
  margin: 0 0 24px;
}

.product-section-v1 .product-option-label {
  display: block;
  font-family: var(--bbg-font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bbg-brown-600);
  margin-bottom: 10px;
}

.product-section-v1 .product-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.product-section-v1 .product-size {
  font-family: var(--bbg-font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--bbg-brown-900);
  background: var(--bbg-white);
  border: 2px solid rgba(59, 32, 8, 0.15);
  border-radius: 8px;
  padding: 8px 14px;
  cursor: default;
}

.product-section-v1 .product-size--active {
  border-color: var(--bbg-brown-600);
  background: var(--bbg-brown-600);
  color: var(--bbg-white);
}

.product-section-v1 .product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.product-section-v1 .product-btn {
  display: inline-block;
  font-family: var(--bbg-font-title);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.product-section-v1 .product-btn--cart {
  color: var(--bbg-white);
  background: var(--bbg-pink);
}

.product-section-v1 .product-btn--cart:hover {
  background: var(--bbg-pink-hover);
  transform: translateY(-2px);
}

.product-section-v1 .product-back {
  font-family: var(--bbg-font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--bbg-brown-700);
  text-decoration: none;
}

.product-section-v1 .product-back:hover {
  color: var(--bbg-pink);
}

/* === product_v2.css — editorial stacked === */
.product-section-v2 {
  background: var(--bbg-white);
  padding: var(--bbg-section-padding-y) 0;
}

.product-section-v2 .product-container {
  max-width: var(--bbg-container-max);
  margin: 0 auto;
  padding: 0 var(--bbg-container-padding-x);
}

.product-section-v2 .product-hero-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--bbg-shadow-image);
  margin-bottom: 40px;
}

.product-section-v2 .product-hero-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.product-section-v2 .product-content {
  max-width: 640px;
  margin: 0 auto;
}

.product-section-v2 .product-breadcrumb {
  font-family: var(--bbg-font-body);
  font-size: 13px;
  color: var(--bbg-brown-700);
  margin: 0 0 16px;
  text-align: center;
}

.product-section-v2 .product-breadcrumb a {
  color: var(--bbg-brown-700);
  text-decoration: none;
}

.product-section-v2 .product-breadcrumb a:hover {
  color: var(--bbg-pink);
}

.product-section-v2 h1 {
  font-family: var(--bbg-font-title);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--bbg-brown-900);
  margin: 0 0 8px;
  line-height: 1.15;
  text-align: center;
}

.product-section-v2 .product-price {
  font-family: var(--bbg-font-title);
  font-size: clamp(24px, 3vw, 28px);
  font-weight: 700;
  color: var(--bbg-pink);
  margin: 0 0 20px;
  text-align: center;
}

.product-section-v2 .product-description {
  font-family: var(--bbg-font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--bbg-brown-700);
  margin: 0 0 28px;
  text-align: center;
}

.product-section-v2 .product-options {
  background: var(--bbg-cream);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
}

.product-section-v2 .product-option-label {
  display: block;
  font-family: var(--bbg-font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bbg-brown-600);
  margin-bottom: 10px;
  text-align: center;
}

.product-section-v2 .product-sizes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-section-v2 .product-size {
  font-family: var(--bbg-font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--bbg-brown-900);
  background: var(--bbg-white);
  border: 2px solid rgba(59, 32, 8, 0.15);
  border-radius: 8px;
  padding: 8px 14px;
  cursor: default;
}

.product-section-v2 .product-size--active {
  border-color: var(--bbg-brown-600);
  background: var(--bbg-brown-600);
  color: var(--bbg-white);
}

.product-section-v2 .product-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.product-section-v2 .product-btn {
  display: inline-block;
  font-family: var(--bbg-font-title);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
}

.product-section-v2 .product-btn--cart {
  color: var(--bbg-white);
  background: var(--bbg-pink);
}

.product-section-v2 .product-btn--cart:hover {
  background: var(--bbg-pink-hover);
  transform: translateY(-2px);
}

.product-section-v2 .product-btn--back {
  color: var(--bbg-brown-900);
  background: transparent;
  border: 2px solid var(--bbg-brown-600);
}

.product-section-v2 .product-btn--back:hover {
  border-color: var(--bbg-pink);
  color: var(--bbg-pink);
}

/* === product_v3.css — gallery + purchase panel === */
.product-section-v3 {
  background: var(--bbg-cream-warm);
  padding: var(--bbg-section-padding-y) 0;
}

.product-section-v3 .product-container {
  max-width: var(--bbg-container-max);
  margin: 0 auto;
  padding: 0 var(--bbg-container-padding-x);
}

.product-section-v3 .product-breadcrumb {
  font-family: var(--bbg-font-body);
  font-size: 13px;
  color: var(--bbg-brown-700);
  margin: 0 0 28px;
}

.product-section-v3 .product-breadcrumb a {
  color: var(--bbg-brown-700);
  text-decoration: none;
}

.product-section-v3 .product-breadcrumb a:hover {
  color: var(--bbg-pink);
}

.product-section-v3 .product-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.product-section-v3 .product-gallery-main {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(80, 40, 0, 0.1);
  margin-bottom: 12px;
}

.product-section-v3 .product-gallery-main img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.product-section-v3 .product-thumbs {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-section-v3 .product-thumb {
  flex: 1;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  background: none;
  cursor: default;
}

.product-section-v3 .product-thumb--active {
  border-color: var(--bbg-brown-600);
}

.product-section-v3 .product-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-section-v3 .product-panel {
  background: var(--bbg-white);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(80, 40, 0, 0.08);
  position: sticky;
  top: calc(var(--bbg-nav-height) + 24px);
}

.product-section-v3 .product-badge {
  display: inline-block;
  font-family: var(--bbg-font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bbg-white);
  background: var(--bbg-pink);
  padding: 4px 8px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.product-section-v3 h1 {
  font-family: var(--bbg-font-title);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--bbg-brown-900);
  margin: 0 0 6px;
  line-height: 1.2;
}

.product-section-v3 .product-meta {
  font-family: var(--bbg-font-body);
  font-size: 13px;
  color: var(--bbg-brown-700);
  margin: 0 0 12px;
}

.product-section-v3 .product-price {
  font-family: var(--bbg-font-title);
  font-size: 26px;
  font-weight: 700;
  color: var(--bbg-pink);
  margin: 0 0 16px;
}

.product-section-v3 .product-description {
  font-family: var(--bbg-font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--bbg-brown-700);
  margin: 0 0 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(59, 32, 8, 0.1);
}

.product-section-v3 .product-option-label {
  display: block;
  font-family: var(--bbg-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bbg-brown-600);
  margin-bottom: 8px;
}

.product-section-v3 .product-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.product-section-v3 .product-size {
  font-family: var(--bbg-font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--bbg-brown-900);
  background: var(--bbg-cream);
  border: 1px solid rgba(59, 32, 8, 0.15);
  border-radius: 6px;
  padding: 6px 12px;
  cursor: default;
}

.product-section-v3 .product-size--active {
  border-color: var(--bbg-brown-600);
  background: var(--bbg-brown-600);
  color: var(--bbg-white);
}

.product-section-v3 .product-btn {
  display: block;
  width: 100%;
  font-family: var(--bbg-font-title);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  padding: 14px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.product-section-v3 .product-btn--cart {
  color: var(--bbg-white);
  background: var(--bbg-pink);
  margin-bottom: 10px;
}

.product-section-v3 .product-btn--cart:hover {
  background: var(--bbg-pink-hover);
  transform: translateY(-2px);
}

.product-section-v3 .product-back {
  display: block;
  text-align: center;
  font-family: var(--bbg-font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--bbg-brown-700);
  text-decoration: none;
  margin-top: 12px;
}

.product-section-v3 .product-back:hover {
  color: var(--bbg-pink);
}

@media (max-width: 900px) {
  .product-section-v1 .product-layout,
  .product-section-v3 .product-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .product-section-v3 .product-panel {
    position: static;
  }
}

@media (max-width: 768px) {
  .product-variation-label {
    padding: 12px 16px;
    font-size: 11px;
  }

  .product-section-v1,
  .product-section-v2,
  .product-section-v3 {
    padding: 48px 0;
  }

  .product-section-v1 .product-container,
  .product-section-v2 .product-container,
  .product-section-v3 .product-container {
    padding: 0 24px;
  }

  .product-section-v1 .product-layout {
    gap: 28px;
  }

  .product-section-v2 .product-hero-image {
    margin-bottom: 32px;
  }

  .product-section-v2 .product-hero-image img {
    aspect-ratio: 4 / 3;
  }

  .product-section-v1 .product-description,
  .product-section-v2 .product-description,
  .product-section-v3 .product-description {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .product-section-v1 .product-container,
  .product-section-v2 .product-container,
  .product-section-v3 .product-container {
    padding: 0 16px;
  }

  .product-section-v1 .product-actions,
  .product-section-v2 .product-actions {
    flex-direction: column;
  }

  .product-section-v1 .product-btn,
  .product-section-v2 .product-btn {
    width: 100%;
  }

  .product-section-v2 .product-options {
    padding: 20px 16px;
  }
}

/* === testimonials_v1.css — card grid === */
.testimonials-section-v1 {
  background: var(--bbg-cream);
  padding: var(--bbg-section-padding-y) 0;
}

.testimonials-section-v1 .testimonials-container {
  max-width: var(--bbg-container-max);
  margin: 0 auto;
  padding: 0 var(--bbg-container-padding-x);
}

.testimonials-section-v1 .testimonials-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.testimonials-section-v1 h2 {
  font-family: var(--bbg-font-title);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--bbg-brown-900);
  margin: 0 0 12px;
  line-height: 1.1;
}

.testimonials-section-v1 .testimonials-intro p {
  font-family: var(--bbg-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--bbg-brown-700);
  margin: 0;
}

.testimonials-section-v1 .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.testimonials-section-v1 .testimonial-card {
  background: var(--bbg-white);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(80, 40, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonials-section-v1 .testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--bbg-gold);
  font-size: 18px;
  line-height: 1;
  letter-spacing: 2px;
}

.testimonials-section-v1 .testimonial-quote {
  font-family: var(--bbg-font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--bbg-brown-900);
  margin: 0;
  flex: 1;
  border: none;
  padding: 0;
}

.testimonials-section-v1 .testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 12px;
  border-top: 1px solid rgba(59, 32, 8, 0.1);
}

.testimonials-section-v1 .testimonial-name {
  font-family: var(--bbg-font-title);
  font-size: 17px;
  font-weight: 700;
  color: var(--bbg-brown-900);
  margin: 0;
}

.testimonials-section-v1 .testimonial-meta {
  font-family: var(--bbg-font-body);
  font-size: 13px;
  color: var(--bbg-brown-700);
  margin: 0;
}

@media (max-width: 900px) {
  .testimonials-section-v1 .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .testimonials-section-v1 {
    padding: 48px 0;
  }

  .testimonials-section-v1 .testimonials-container {
    padding: 0 24px;
  }

  .testimonials-section-v1 .testimonials-intro {
    margin-bottom: 36px;
  }

  .testimonials-section-v1 .testimonials-intro p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .testimonials-section-v1 .testimonials-container {
    padding: 0 16px;
  }

  .testimonials-section-v1 .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonials-section-v1 .testimonial-card {
    padding: 22px 20px;
  }
}

/* === contact_v2.css — split layout === */
.contact-section-v2 {
  background: var(--bbg-white);
  padding: var(--bbg-section-padding-y) 0;
}

.contact-section-v2 .contact-container {
  max-width: var(--bbg-container-max);
  margin: 0 auto;
  padding: 0 var(--bbg-container-padding-x);
}

.contact-section-v2 .contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-section-v2 h2 {
  font-family: var(--bbg-font-title);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  color: var(--bbg-brown-900);
  margin: 0 0 12px;
  line-height: 1.1;
}

.contact-section-v2 .contact-subtitle {
  font-family: var(--bbg-font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--bbg-pink);
  margin: 0 0 16px;
}

.contact-section-v2 .contact-text p {
  font-family: var(--bbg-font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--bbg-brown-700);
  margin: 0 0 16px;
}

.contact-section-v2 .contact-text p:last-of-type {
  margin-bottom: 28px;
}

.contact-section-v2 .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-section-v2 .contact-btn {
  display: inline-block;
  font-family: var(--bbg-font-title);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
}

.contact-section-v2 .contact-btn--primary {
  color: var(--bbg-white);
  background: var(--bbg-pink);
}

.contact-section-v2 .contact-btn--primary:hover {
  background: var(--bbg-pink-hover);
  transform: translateY(-2px);
}

.contact-section-v2 .contact-btn--secondary {
  color: var(--bbg-brown-900);
  background: transparent;
  border: 2px solid var(--bbg-brown-600);
}

.contact-section-v2 .contact-btn--secondary:hover {
  border-color: var(--bbg-pink);
  color: var(--bbg-pink);
}

.contact-section-v2 .contact-panel {
  background: var(--bbg-cream);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: var(--bbg-shadow-image);
}

.contact-section-v2 .contact-panel-title {
  font-family: var(--bbg-font-title);
  font-size: 22px;
  font-weight: 700;
  color: var(--bbg-brown-900);
  margin: 0 0 24px;
}

.contact-section-v2 .contact-details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-section-v2 .contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-section-v2 .contact-detail-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bbg-white);
  color: var(--bbg-brown-600);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-section-v2 .contact-detail-body {
  flex: 1;
  min-width: 0;
}

.contact-section-v2 h3 {
  font-family: var(--bbg-font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bbg-brown-600);
  margin: 0 0 4px;
}

.contact-section-v2 .contact-detail-value {
  font-family: var(--bbg-font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--bbg-brown-900);
  margin: 0;
}

.contact-section-v2 .contact-detail-value a {
  color: inherit;
  text-decoration: none;
}

.contact-section-v2 .contact-detail-value a:hover {
  color: var(--bbg-pink);
}

.contact-section-v2 .contact-panel-social {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(59, 32, 8, 0.12);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-section-v2 .contact-panel-social a {
  font-family: var(--bbg-font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--bbg-brown-700);
  text-decoration: none;
}

.contact-section-v2 .contact-panel-social a:hover {
  color: var(--bbg-pink);
}

@media (max-width: 900px) {
  .contact-section-v2 .contact-layout {
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .contact-section-v2 {
    padding: 48px 0;
  }

  .contact-section-v2 .contact-container {
    padding: 0 24px;
  }

  .contact-section-v2 .contact-text p {
    font-size: 15px;
  }

  .contact-section-v2 .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-section-v2 .contact-panel {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .contact-section-v2 .contact-container {
    padding: 0 16px;
  }

  .contact-section-v2 .contact-actions {
    flex-direction: column;
  }

  .contact-section-v2 .contact-btn {
    text-align: center;
  }
}

/* === cart_v2.css — split with sidebar === */
.cart-section-v2 {
  background: var(--bbg-white);
  padding: var(--bbg-section-padding-y) 0;
}

.cart-section-v2 .cart-container {
  max-width: var(--bbg-container-max);
  margin: 0 auto;
  padding: 0 var(--bbg-container-padding-x);
}

.cart-section-v2 .cart-header {
  margin-bottom: 32px;
}

.cart-section-v2 h2 {
  font-family: var(--bbg-font-title);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--bbg-brown-900);
  margin: 0 0 8px;
  line-height: 1.1;
}

.cart-section-v2 .cart-count {
  font-family: var(--bbg-font-body);
  font-size: 15px;
  color: var(--bbg-brown-700);
  margin: 0;
}

.cart-section-v2 .cart-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.cart-section-v2 .cart-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cart-section-v2 .cart-item {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(59, 32, 8, 0.1);
}

.cart-section-v2 .cart-item:first-child {
  padding-top: 0;
}

.cart-section-v2 .cart-item-image {
  width: 88px;
  height: 110px;
  border-radius: 10px;
  overflow: hidden;
  display: block;
  text-decoration: none;
}

.cart-section-v2 .cart-item-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-section-v2 .cart-item-info h3 {
  font-family: var(--bbg-font-title);
  font-size: 17px;
  font-weight: 700;
  color: var(--bbg-brown-900);
  margin: 0 0 6px;
  line-height: 1.25;
}

.cart-section-v2 .cart-item-info h3 a {
  color: inherit;
  text-decoration: none;
}

.cart-section-v2 .cart-item-info h3 a:hover {
  color: var(--bbg-pink);
}

.cart-section-v2 .cart-item-meta {
  font-family: var(--bbg-font-body);
  font-size: 13px;
  color: var(--bbg-brown-700);
  margin: 0 0 10px;
}

.cart-section-v2 .cart-remove {
  font-family: var(--bbg-font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--bbg-brown-700);
  text-decoration: none;
}

.cart-section-v2 .cart-remove:hover {
  color: var(--bbg-pink);
}

.cart-section-v2 .cart-item-right {
  text-align: right;
}

.cart-section-v2 .cart-item-price {
  font-family: var(--bbg-font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--bbg-brown-900);
  margin: 0 0 10px;
}

.cart-section-v2 .cart-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(59, 32, 8, 0.15);
  border-radius: 6px;
  overflow: hidden;
}

.cart-section-v2 .cart-qty-btn {
  width: 28px;
  height: 28px;
  border: none;
  background: var(--bbg-cream);
  color: var(--bbg-brown-900);
  font-size: 16px;
  cursor: default;
  font-family: var(--bbg-font-body);
}

.cart-section-v2 .cart-qty-value {
  min-width: 32px;
  text-align: center;
  font-family: var(--bbg-font-body);
  font-size: 13px;
  font-weight: 600;
}

.cart-section-v2 .cart-sidebar {
  background: var(--bbg-cream);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: var(--bbg-shadow-image);
  position: sticky;
  top: calc(var(--bbg-nav-height) + 24px);
  min-width: 0;
}

.cart-section-v2 .cart-sidebar-title {
  font-family: var(--bbg-font-title);
  font-size: 22px;
  font-weight: 700;
  color: var(--bbg-brown-900);
  margin: 0 0 20px;
}

.cart-section-v2 .cart-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  font-family: var(--bbg-font-body);
  font-size: 14px;
  color: var(--bbg-brown-700);
}

.cart-section-v2 .cart-summary-row span:last-child {
  font-weight: 600;
  color: var(--bbg-brown-900);
}

.cart-section-v2 .cart-summary-total {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  margin: 12px 0 24px;
  border-top: 1px solid rgba(59, 32, 8, 0.12);
  font-family: var(--bbg-font-title);
  font-size: 20px;
  font-weight: 700;
  color: var(--bbg-brown-900);
}

.cart-section-v2 .cart-summary-total span:last-child {
  color: var(--bbg-pink);
}

.cart-section-v2 .cart-sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-section-v2 .cart-btn {
  display: block;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  font-family: var(--bbg-font-title);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
}

.cart-section-v2 .cart-btn--checkout {
  color: var(--bbg-white);
  background: var(--bbg-pink);
}

.cart-section-v2 .cart-btn--checkout:hover {
  background: var(--bbg-pink-hover);
  transform: translateY(-2px);
}

.cart-section-v2 .cart-btn--continue {
  color: var(--bbg-brown-900);
  background: var(--bbg-white);
  border: 2px solid rgba(59, 32, 8, 0.12);
}

.cart-section-v2 .cart-btn--continue:hover {
  border-color: var(--bbg-pink);
  color: var(--bbg-pink);
}

.cart-section-v2 .cart-note {
  font-family: var(--bbg-font-body);
  font-size: 12px;
  line-height: 1.5;
  color: var(--bbg-brown-700);
  margin: 16px 0 0;
  text-align: center;
}

@media (max-width: 900px) {
  .cart-section-v2 .cart-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cart-section-v2 .cart-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .cart-section-v2 {
    padding: 48px 0;
  }

  .cart-section-v2 .cart-container {
    padding: 0 24px;
  }

  .cart-section-v2 .cart-item {
    grid-template-columns: 72px 1fr;
    grid-template-rows: auto auto;
    gap: 12px 16px;
  }

  .cart-section-v2 .cart-item-right {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  .cart-section-v2 .cart-item-image {
    width: 72px;
    height: 90px;
  }
}

@media (max-width: 480px) {
  .cart-section-v2 .cart-container {
    padding: 0 16px;
  }
}

/* === cta_v1.css === */
.cta-section-v1 {
  background: #8B5E1A;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.cta-section-v1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(120, 75, 20, 0.62);
  z-index: 1;
}

.cta-section-v1 .cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.cta-section-v1 .cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-section-v1 h2 {
  font-family: var(--bbg-font-title);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 24px 0;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 12px rgba(50, 20, 0, 0.55);
}

.cta-section-v1 .cta-content > p {
  font-family: var(--bbg-font-body);
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 40px 0;
}

.cta-section-v1 .cta-actions {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.cta-section-v1 .cta-button {
  display: inline-block;
  text-decoration: none;
  font-family: var(--bbg-font-title);
  font-size: 20px;
  font-weight: 700;
  border-radius: 32px;
  padding: 14px 40px;
  transition: all 0.22s ease;
  text-align: center;
}

.cta-section-v1 .cta-button.primary {
  background: #E8789A;
  color: #FFFFFF;
  box-shadow: 0 4px 18px rgba(232, 120, 154, 0.45);
}

.cta-section-v1 .cta-button.primary:hover {
  background: #D45A80;
  box-shadow: 0 6px 24px rgba(232, 120, 154, 0.65);
  transform: translateY(-2px);
}

.cta-section-v1 .cta-button.secondary {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.8);
  padding: 12px 36px;
}

.cta-section-v1 .cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

.cta-section-v1 .trust-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.cta-section-v1 .trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--bbg-font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  text-align: left;
}

.cta-section-v1 .trust-icon {
  background: #E8789A;
  color: #FFFFFF;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cta-section-v1 {
    padding: 48px 0;
  }

  .cta-section-v1 .cta-container {
    padding: 0 24px;
  }

  .cta-section-v1 .cta-content > p {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .cta-section-v1 .cta-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin-bottom: 40px;
  }
  
  .cta-section-v1 .cta-button {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    font-size: clamp(17px, 4.5vw, 20px);
  }
  
  .cta-section-v1 .trust-points {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cta-section-v1 .trust-item {
    font-size: 13px;
  }
}

/* === footer_v1.css === */
.footer-section-v1 {
  background: #6B4510;
  padding: 64px 0 32px 0;
  color: #FFFFFF;
}

.footer-section-v1 .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-section-v1 .footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-section-v1 .footer-brand h3 {
  font-family: var(--bbg-font-title);
  font-size: 32px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 16px 0;
}

.footer-section-v1 .footer-brand p {
  font-family: var(--bbg-font-body);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  max-width: 300px;
}

.footer-section-v1 h4 {
  font-family: var(--bbg-font-title);
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 16px 0;
}

.footer-section-v1 .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section-v1 .footer-links li {
  margin-bottom: 8px;
}

.footer-section-v1 .footer-links a {
  font-family: var(--bbg-font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section-v1 .footer-links a:hover {
  color: #E8789A;
}

.footer-section-v1 .contact-info p {
  font-family: var(--bbg-font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 8px 0;
}

.footer-section-v1 .contact-info a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section-v1 .contact-info a:hover {
  color: #E8789A;
}

.footer-section-v1 .contact-info strong {
  color: #FFFFFF;
}

.footer-section-v1 .social-links {
  margin-top: 20px;
  display: flex;
  gap: 16px;
}

.footer-section-v1 .social-links a {
  font-family: var(--bbg-font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section-v1 .social-links a:hover {
  color: #E8789A;
}

.footer-section-v1 .footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.footer-section-v1 .footer-bottom p {
  font-family: var(--bbg-font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 4px 0;
}

.footer-section-v1 .footer-tagline {
  font-style: italic;
  color: rgba(255, 255, 255, 0.6) !important;
}

@media (max-width: 768px) {
  .footer-section-v1 {
    padding: 48px 0 28px;
  }

  .footer-section-v1 .footer-container {
    padding: 0 24px;
  }

  .footer-section-v1 .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-section-v1 .footer-brand p {
    max-width: none;
    margin: 0 auto;
  }
  
  .footer-section-v1 .social-links {
    justify-content: center;
  }

  .footer-section-v1 .footer-brand h3 {
    font-size: clamp(26px, 6vw, 32px);
  }
}

/* ------------------------------------------------------------------ */
/* Responsive — tablet (max 900px)                                     */
/* ------------------------------------------------------------------ */
@media (max-width: 900px) {
  .wf-hero__nav {
    padding: 0 24px;
    gap: 12px;
  }

  .wf-hero__nav-links {
    gap: 14px;
  }

  .wf-hero__nav-link {
    font-size: 12px;
    letter-spacing: 0.03em;
  }

  .about-section-v1 .about-container,
  .services-section-v1 .services-container,
  .gallery-section-v2 .gallery-container,
  .cta-section-v1 .cta-container,
  .footer-section-v1 .footer-container {
    padding-left: max(24px, env(safe-area-inset-left, 0px));
    padding-right: max(24px, env(safe-area-inset-right, 0px));
  }

  .about-section-v1 .about-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-section-v1 .about-image img {
    height: clamp(280px, 45vw, 400px);
  }

  .footer-section-v1 .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-section-v1 .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ------------------------------------------------------------------ */
/* Responsive — small phones (max 480px)                               */
/* ------------------------------------------------------------------ */
@media (max-width: 480px) {
  .wf-hero__nav {
    padding: 0 12px;
  }

  .wf-hero__nav-icon-link span {
    font-size: 10px;
  }

  .wf-hero__content {
    padding: 32px 16px 48px;
  }

  .wf-hero__headline {
    font-size: clamp(32px, 9vw, 42px);
  }

  .wf-hero__subheadline {
    font-size: clamp(15px, 4vw, 18px);
    margin-bottom: 28px;
  }

  .wf-mobile-nav__link {
    font-size: clamp(24px, 8vw, 30px);
    padding: 12px 14px;
  }

  .about-section-v1,
  .services-section-v1,
  .gallery-section-v2,
  .cta-section-v1 {
    padding: 40px 0;
  }

  .footer-section-v1 {
    padding: 40px 0 24px;
  }

  .about-section-v1 .about-container,
  .services-section-v1 .services-container,
  .gallery-section-v2 .gallery-container,
  .cta-section-v1 .cta-container,
  .footer-section-v1 .footer-container {
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
  }

  .about-section-v1 .about-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-section-v1 .stat-item {
    padding: 14px;
  }

  .services-section-v1 .service-band {
    padding: 20px 0;
  }

  .services-section-v1 .band-content {
    padding: 0 8px;
  }

  .gallery-section-v2 .gallery-row {
    margin-bottom: 32px;
  }

  .gallery-section-v2 .image-side img {
    height: clamp(200px, 55vw, 260px);
    border-radius: 16px;
  }

  .about-section-v1 .about-image img {
    border-radius: 16px;
    height: clamp(200px, 55vw, 260px);
  }

  .cta-section-v1 .cta-button {
    padding: 12px 24px;
  }

  .footer-section-v1 .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-section-v1 h4 {
    font-size: 18px;
  }
}

/* ------------------------------------------------------------------ */
/* Responsive — medium desktop nav (651px–900px)                       */
/* ------------------------------------------------------------------ */
@media (min-width: 651px) and (max-width: 900px) {
  .wf-hero__nav-links {
    gap: 10px;
  }

  .wf-hero__nav-link {
    font-size: 11px;
  }
}
