/* ==========================================================
   CIUBAR SPA — Design System 2026
   Premium Nordic Hot Tub & Sauna Aesthetic
   ========================================================== */

/* --- Design Tokens --- */
:root {
  --c-forest:        #1B4332;
  --c-forest-dark:   #0D2B1F;
  --c-forest-light:  #2D6A4F;
  --c-cedar:         #8B5E3C;
  --c-amber:         #F4A261;
  --c-amber-dark:    #E76F2E;
  --c-cream:         #F8F4EE;
  --c-cream-dark:    #E8E1D5;
  --c-white:         #FFFFFF;
  --c-text:          #1A1A1A;
  --c-muted:         #6B7280;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-pill: 100px;

  --sh-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --sh-md: 0 4px 16px rgba(0,0,0,.10);
  --sh-lg: 0 10px 40px rgba(0,0,0,.14);
  --sh-xl: 0 20px 60px rgba(0,0,0,.18);

  --tr:      all 0.3s cubic-bezier(0.4,0,0.2,1);
  --tr-fast: all 0.15s ease;
}

/* --- Base Reset --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-text);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  margin: 0; padding: 0;
}
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-top: 0;
}
a { color: var(--c-forest); text-decoration: none; transition: var(--tr-fast); }
a:hover { color: var(--c-amber-dark); }
img { max-width: 100%; height: auto; display: block; }
ul { padding: 0; margin: 0; }

/* ── TOP BAR ───────────────────────────────────────────── */
#topbar {
  background: var(--c-forest-dark);
  color: rgba(255,255,255,.72);
  font-size: 13px;
  padding: 9px 0;
}
#topbar a { color: rgba(255,255,255,.72); }
#topbar a:hover { color: var(--c-amber); }
#topbar i { color: var(--c-amber); margin-right: 5px; }
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.tb-contact { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

/* ── HEADER ────────────────────────────────────────────── */
#site-header {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27,67,50,.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow .3s ease;
}
#site-header.scrolled { box-shadow: var(--sh-md); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 20px;
}
.site-logo img { height: 52px; width: auto; }

/* primary nav — wraps categoryTree.get output (<li> items) */
.site-nav {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0; padding: 0;
  gap: 2px;
  flex-wrap: wrap;
}
.site-nav li { position: relative; list-style: none; }
.site-nav li a {
  display: block;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--c-text);
  padding: 8px 13px;
  border-radius: var(--r-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: var(--tr-fast);
}
.site-nav li a:hover,
.site-nav li.active > a { color: var(--c-forest); background: var(--c-cream); }
/* dropdown (class="drop-down" from CategoryService) */
.site-nav li.drop-down > a::after {
  content: '›';
  margin-left: 4px;
  font-size: 15px;
  display: inline-block;
  transition: transform .2s;
}
.site-nav li.drop-down:hover > a::after { transform: rotate(90deg); }
.site-nav li.drop-down > ul {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--c-white);
  border: 1px solid var(--c-cream-dark);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  min-width: 248px;
  padding: 8px;
  z-index: 200;
  list-style: none;
  /* smooth entrance */
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transform-origin: top center;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
/* invisible bridge so the cursor can cross the gap without closing the menu */
.site-nav li.drop-down > ul::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -8px;
  height: 8px;
}
.site-nav li.drop-down:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.site-nav li.drop-down ul li { margin: 1px 0; }
.site-nav li.drop-down ul li a {
  position: relative;
  text-transform: none;
  font-size: 13.5px;
  letter-spacing: 0;
  border-radius: var(--r-sm);
  padding: 10px 16px 10px 22px;
  color: var(--c-text);
  white-space: nowrap;
  transition: var(--tr-fast);
}
/* sliding amber accent bar */
.site-nav li.drop-down ul li a::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 3px;
  height: 18px;
  background: var(--c-amber);
  border-radius: 3px;
  transition: transform .2s ease;
}
.site-nav li.drop-down ul li a:hover {
  background: var(--c-cream);
  color: var(--c-forest);
  padding-left: 24px;
}
.site-nav li.drop-down ul li a:hover::before { transform: translateY(-50%) scaleY(1); }
/* hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--c-cream-dark);
  border-radius: var(--r-sm);
  cursor: pointer;
  padding: 7px 10px;
  color: var(--c-text);
  font-size: 22px;
  line-height: 1;
  transition: var(--tr-fast);
}
.nav-toggle:hover { border-color: var(--c-forest); color: var(--c-forest); }
.mobile-nav {
  display: none;
  background: var(--c-white);
  border-top: 1px solid var(--c-cream-dark);
  padding: 10px 0 18px;
}
.mobile-nav ul { list-style: none; padding: 0; margin: 0; }
.mobile-nav ul li a {
  display: block;
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--c-text);
  border-bottom: 1px solid var(--c-cream);
}
.mobile-nav ul li a:hover { color: var(--c-forest); background: var(--c-cream); }
.mobile-nav ul ul li a { padding-left: 40px; font-size: 14px; color: var(--c-muted); }
@media (max-width: 991px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; align-items: center; }
}

/* ── BUTTONS ───────────────────────────────────────────── */
.btn-cib {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--tr);
  white-space: nowrap;
  line-height: 1;
}
.btn-cib-amber {
  background: var(--c-amber);
  color: var(--c-white) !important;
  box-shadow: 0 4px 16px rgba(244,162,97,.3);
}
.btn-cib-amber:hover {
  background: var(--c-amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(231,111,46,.4);
}
.btn-cib-outline {
  background: transparent;
  color: var(--c-white) !important;
  border-color: rgba(255,255,255,.45);
}
.btn-cib-outline:hover {
  background: var(--c-white);
  color: var(--c-forest) !important;
  border-color: var(--c-white);
  transform: translateY(-2px);
}
.btn-cib-forest {
  background: var(--c-forest);
  color: var(--c-white) !important;
}
.btn-cib-forest:hover {
  background: var(--c-forest-dark);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}

/* ── SECTION HELPERS ───────────────────────────────────── */
.section-badge {
  display: inline-block;
  background: var(--c-cream);
  color: var(--c-forest);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 14px;
}
.section-title-cib {
  font-family: var(--font-display);
  font-size: clamp(1.9rem,4vw,2.8rem);
  font-weight: 600;
  color: var(--c-forest-dark);
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-divider {
  width: 200px;
  height: 3px;
  background: var(--c-amber);
  border-radius: 2px;
}
.section-subtitle { font-size: 16px; color: var(--c-muted); max-width: 520px; line-height: 1.75; }
.bg-cream { background: var(--c-cream); }
.bg-forest { background: var(--c-forest); }
.text-amber { color: var(--c-amber) !important; }

/* ── PAGE HERO (inner pages) ───────────────────────────── */
.page-hero {
  background: linear-gradient(145deg, var(--c-forest-dark) 0%, var(--c-forest) 100%);
  color: var(--c-white);
  padding: 32px 0 22px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-body { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem,5vw,3.2rem);
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 10px;
}
.page-hero p { color: rgba(255,255,255,.65); font-size: 17px; margin: 0; }
.breadcrumb-cib {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-top: 18px;
  flex-wrap: wrap;
  list-style: none;
}
.breadcrumb-cib a { color: rgba(255,255,255,.65); }
.breadcrumb-cib a:hover { color: var(--c-amber); }
.breadcrumb-cib .sep { color: rgba(255,255,255,.25); }

/* ── HOMEPAGE HERO ─────────────────────────────────────── */
#hero-home {
  position: relative;
  min-height: 62vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--c-forest-dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../img/apa.jpg');
  background-size: cover;
  background-position: center;
  opacity: .32;
  transform: scale(1.04);
  transition: transform 10s ease;
}
#hero-home:hover .hero-bg { transform: scale(1.0); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,43,31,.9) 0%, rgba(27,67,50,.65) 55%, rgba(139,94,60,.25) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244,162,97,.12);
  border: 1px solid rgba(244,162,97,.28);
  color: var(--c-amber);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--r-pill);
  margin-bottom: 22px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem,8vw,6rem);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.0;
  margin-bottom: 22px;
}
.hero-title em { font-style: normal; color: var(--c-amber); }
.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  margin-bottom: 38px;
  max-width: 480px;
}
/* Keep the hero subtitle on a single row on desktop */
@media (min-width: 992px) {
  #hero-home .hero-subtitle--wide {
    max-width: none;
    white-space: nowrap;
  }
}
.hero-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  border-top: 1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(8px);
  flex-wrap: wrap;
}
.hero-stat {
  flex: 1;
  min-width: 120px;
  padding: 26px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-amber);
  line-height: 1;
}
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,.45); letter-spacing: .06em; margin-top: 5px; }

/* ── PRODUCT CARDS ─────────────────────────────────────── */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(290px,1fr)); gap: 28px; }
.product-card {
  background: var(--c-white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--c-cream-dark);
  transition: var(--tr);
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}
.product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
  color: inherit;
}
.product-card-img-wrap {
  overflow: hidden;
  background: var(--c-cream);
  position: relative;
  aspect-ratio: 4/3;
}
.product-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.product-card:hover .product-card-img { transform: scale(1.06); }
.product-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,43,31,.65) 0%, transparent 55%);
  opacity: 0;
  transition: var(--tr);
  display: flex;
  align-items: flex-end;
  padding: 18px;
}
.product-card:hover .product-card-overlay { opacity: 1; }
.product-card-body {
  padding: 22px 24px 18px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.product-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--c-forest-dark);
  margin-bottom: 8px;
  flex-grow: 1;
  line-height: 1.3;
}
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--c-cream-dark);
}
.card-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--c-forest);
  letter-spacing: .08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}
.card-link:hover { color: var(--c-amber-dark); }
.card-link i { transition: transform .2s ease; }
.card-link:hover i { transform: translateX(4px); }

/* ── PRODUCT DETAIL ────────────────────────────────────── */
.product-detail-section { padding: 56px 0 80px; }
.product-gallery-main {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--c-cream);
  aspect-ratio: 4/3;
}
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: opacity .2s ease; }
.product-gallery-thumbs { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.prod-thumb {
  width: 68px; height: 68px;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--c-cream-dark);
  transition: var(--tr-fast);
  flex-shrink: 0;
}
.prod-thumb img { width: 100%; height: 100%; object-fit: cover; }
.prod-thumb.active, .prod-thumb:hover { border-color: var(--c-amber); }

.variant-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.variant-pill {
  display: inline-block;
  padding: 8px 22px;
  border-radius: var(--r-pill);
  border: 2px solid var(--c-cream-dark);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-muted);
  background: var(--c-white);
  cursor: pointer;
  transition: var(--tr-fast);
  text-decoration: none;
}
.variant-pill:hover { border-color: var(--c-forest); color: var(--c-forest); background: var(--c-cream); }
.variant-pill.current {
  background: var(--c-forest);
  border-color: var(--c-forest);
  color: var(--c-white) !important;
  pointer-events: none;
}
.specs-heading {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--c-forest-dark);
  margin: 24px 0 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.specs-heading::after { content: ''; flex: 1; height: 1px; background: var(--c-cream-dark); }
.specs-table { width: 100%; border-collapse: collapse; margin-bottom: 8px; }
.specs-table th,
.specs-table td {
  padding: 11px 15px;
  font-size: 14px;
  border-bottom: 1px solid var(--c-cream-dark);
  vertical-align: top;
  text-align: left;
}
.specs-table th {
  background: var(--c-cream);
  font-weight: 600;
  color: var(--c-forest);
  width: 44%;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: .02em;
}
.specs-table td { color: var(--c-text); }
.specs-table tr:last-child th,
.specs-table tr:last-child td { border-bottom: none; }

/* ── FAQ ───────────────────────────────────────────────── */
.faq-list { list-style: none; padding: 0; margin: 0; }
.faq-item {
  border: 1px solid var(--c-cream-dark);
  border-radius: var(--r-lg);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--tr-fast);
}
.faq-item.open {
  border-color: var(--c-forest);
  box-shadow: 0 4px 20px rgba(27,67,50,.09);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  user-select: none;
}
.faq-q-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c-forest-dark);
  flex: 1;
  line-height: 1.4;
}
.faq-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--c-cream);
  color: var(--c-forest);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: var(--tr-fast);
}
.faq-item.open .faq-icon { background: var(--c-forest); color: var(--c-white); transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 22px 22px;
  color: var(--c-muted);
  font-size: 15px;
  line-height: 1.75;
}
.faq-answer table { border-collapse: collapse; width: 100%; margin-top: 12px; }
.faq-answer table th,
.faq-answer table td { border: 1px solid var(--c-cream-dark); padding: 10px 14px; font-size: 14px; text-align: center; }
.faq-answer table th { background: var(--c-cream); color: var(--c-forest); font-weight: 600; }

/* ── GALLERY ───────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(270px,1fr)); gap: 16px; }
.gallery-item {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
  background: var(--c-cream);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(13,43,31,.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--tr);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay i { font-size: 42px; color: var(--c-white); }
/* Lightbox */
#lightbox {
  display: none;
  position: fixed; inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.93);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#lightbox.active { display: flex; }
#lightbox img {
  max-width: 90vw; max-height: 86vh;
  border-radius: var(--r-lg);
  object-fit: contain;
  animation: lbIn .22s ease;
}
@keyframes lbIn { from { opacity:0; transform:scale(.9); } to { opacity:1; transform:scale(1); } }
#lb-close {
  position: absolute; top: 20px; right: 28px;
  color: var(--c-white); font-size: 38px;
  cursor: pointer; opacity: .65;
  transition: var(--tr-fast);
  background: none; border: none; line-height: 1;
}
#lb-close:hover { opacity: 1; transform: scale(1.15); }
#lb-prev, #lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.1); border: none;
  color: var(--c-white); font-size: 26px;
  padding: 14px 18px; cursor: pointer; border-radius: var(--r-md);
  transition: var(--tr-fast);
}
#lb-prev { left: 16px; } #lb-next { right: 16px; }
#lb-prev:hover, #lb-next:hover { background: rgba(255,255,255,.22); }

/* ── CONTACT SECTION ───────────────────────────────────── */
#contact-section { background: var(--c-cream); padding: 50px 0; }
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 20px;
  margin-bottom: 44px;
}
.contact-card {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--sh-sm);
  transition: var(--tr);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.contact-card-icon {
  width: 52px; height: 52px;
  background: var(--c-cream); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  color: var(--c-forest); font-size: 22px;
}
.contact-card h5 {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--c-muted); margin-bottom: 8px;
}
.contact-card p, .contact-card a {
  font-size: 15px; font-weight: 600;
  color: var(--c-forest-dark); margin: 0;
}
.contact-card a:hover { color: var(--c-amber-dark); }
.contact-form-card {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--sh-md);
}
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 575px) { .cf-row { grid-template-columns: 1fr; } }
.cf-field { margin-bottom: 18px; }
.cf-field label {
  display: block; font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--c-muted); margin-bottom: 7px;
}
.cf-field input, .cf-field textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--c-cream-dark);
  border-radius: var(--r-md);
  font-family: var(--font-body); font-size: 15px;
  color: var(--c-text); background: var(--c-white);
  transition: var(--tr-fast); outline: none;
}
.cf-field input:focus, .cf-field textarea:focus {
  border-color: var(--c-forest);
  box-shadow: 0 0 0 3px rgba(27,67,50,.09);
}
.cf-field textarea { resize: vertical; min-height: 118px; }
.loading  { background: var(--c-cream); color: var(--c-muted); padding: 12px 16px; border-radius: var(--r-md); margin-bottom: 14px; font-size: 14px; display: none; }
.error-message { background: #fff5f5; color: #c0392b; padding: 12px 16px; border-radius: var(--r-md); margin-bottom: 14px; font-size: 14px; display: none; }
.sent-message  { background: #f0faf4; color: var(--c-forest); padding: 12px 16px; border-radius: var(--r-md); margin-bottom: 14px; font-size: 14px; display: none; }

/* ── FOOTER ────────────────────────────────────────────── */
#site-footer { background: var(--c-forest-dark); color: rgba(255,255,255,.65); padding: 60px 0 0; }
.footer-logo img { height: 52px; }
.footer-logo { margin-bottom: 6px; }
.footer-about { font-size: 14px; line-height: 1.75; max-width: 250px; margin-top: 16px; }
.footer-heading {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: 16px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a {
  color: rgba(255,255,255,.6); font-size: 14px;
  display: flex; align-items: center; gap: 8px;
  transition: var(--tr-fast);
}
.footer-links a:hover { color: var(--c-amber); padding-left: 4px; }
.footer-links a i { font-size: 11px; color: var(--c-amber); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 44px; padding: 22px 0;
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,.3);
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.6);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: var(--tr-fast);
}
.footer-social a:hover { background: var(--c-amber); color: var(--c-white); }

/* ── BACK TO TOP ───────────────────────────────────────── */
#back-to-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 42px; height: 42px;
  background: var(--c-forest); color: var(--c-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; box-shadow: var(--sh-md);
  z-index: 500; opacity: 0; pointer-events: none;
  transition: var(--tr); border: none; cursor: pointer;
}
#back-to-top.visible { opacity: 1; pointer-events: all; }
#back-to-top:hover { background: var(--c-amber); transform: translateY(-3px); }

/* ── COOKIE BANNER ─────────────────────────────────────── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--c-forest-dark);
  color: rgba(255,255,255,.8);
  padding: 16px 24px;
  z-index: 998;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  font-size: 14px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}
#cookie-banner a { color: var(--c-amber); }
#cookie-banner.hidden { display: none; }

/* ── ACCESSORIES ───────────────────────────────────────── */
.acc-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 24px; }
.acc-card {
  background: var(--c-white);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--c-cream-dark);
  transition: var(--tr);
  display: flex; flex-direction: column;
  color: inherit;
}
.acc-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: transparent; color: inherit; }
.acc-card-img { height: 210px; overflow: hidden; background: var(--c-cream); }
.acc-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.acc-card:hover .acc-card-img img { transform: scale(1.06); }
.acc-card-body { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }
.acc-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 600;
  color: var(--c-forest-dark); margin-bottom: 10px; line-height: 1.3;
}
.acc-card-desc { font-size: 14px; color: var(--c-muted); line-height: 1.6; flex-grow: 1; }
.acc-card-footer { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--c-cream-dark); }

/* ── SCROLL REVEAL (disabled) ──────────────────────────── */
.reveal,
.reveal.visible { opacity: 1; transform: none; transition: none; }
.reveal-delay-1,
.reveal-delay-2,
.reveal-delay-3,
.reveal-delay-4,
.reveal-delay-5 { transition-delay: 0s; }

.validate { color: #C0392B }

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 767px) {
  .hero-stats { flex-wrap: wrap; }
  .hero-stat { flex: 0 0 50%; border-bottom: 1px solid rgba(255,255,255,.07); }
  .contact-form-card { padding: 24px 18px; }
  #lb-prev, #lb-next { display: none; }
}
@media (max-width: 575px) {
  .hero-title { font-size: clamp(2.4rem,10vw,3rem); }
  .product-grid, .acc-grid, .gallery-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 52px 0 36px; }
}

