/* ============================================================
   BioVohon Shop — Main Stylesheet
   ============================================================ */

:root {
  --primary: #e85d04;
  --primary-dark: #c44b00;
  --primary-light: #fff3ed;
  --secondary: #1a1a2e;
  --accent: #f48c06;
  --text: #1e1e1e;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --bg: #ffffff;
  --bg-light: #f9fafb;
  --success: #22c55e;
  --danger: #ef4444;
  --warning: #f59e0b;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 2px 12px rgba(0,0,0,.08);
  --shadow-md: 0 4px 24px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.15);
  --transition: all .2s ease;
  --header-h: 120px;
}

/* ===== REVIEW FORM AND VERIFIED BADGE FINAL ===== */
.review-form {
  grid-template-columns: 1fr 1fr !important;
}

.review-star-picker,
.review-form textarea,
.review-form button {
  grid-column: 1 / -1;
}

.review-star-picker button {
  color: #d8d8d8 !important;
}

.review-star-picker button.active {
  color: #108c7b !important;
}

.verified-review {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-top: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(16, 140, 123, .08);
  color: #108c7b;
  font-size: 13px;
  font-weight: 750;
}

@media (max-width: 768px) {
  .review-form {
    grid-template-columns: 1fr !important;
  }
}

/* ===== REVIEW PICKER, FAQ CHEVRONS, CHAT CLOSE ===== */
.review-star-picker {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  padding: 10px 14px;
  border: 1px solid rgba(10, 10, 10, .12);
  border-radius: 8px;
  background: #fafaf7;
}

.review-star-picker button {
  border: 0;
  background: transparent;
  color: #d8d8d8;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transition: color .15s ease, transform .15s ease;
}

.review-star-picker button.active,
.review-star-picker button:hover,
.review-star-picker button:hover ~ button.active {
  color: #108c7b;
}

.review-star-picker button:hover {
  transform: translateY(-1px);
}

.home-faq-panel details summary::after {
  content: "" !important;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(10, 10, 10, .1);
  border-radius: 50%;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23ff5a1f' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .06);
}

.home-faq-panel details[open] summary::after {
  transform: rotate(180deg);
}

/* .chat-input-area — padding-left: 48px видалено (кнопка .chat-panel-close-inline більше не використовується) */

.chat-panel-close-inline {
  position: absolute;
  left: 12px;
  top: 50%;
  width: 30px !important;
  height: 30px !important;
  border: 1px solid rgba(10, 10, 10, .12) !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  color: #0a0a0a !important;
  font-size: 22px !important;
  line-height: 1 !important;
  cursor: pointer;
  transform: translateY(-50%);
}

/* ===== REVIEWS AND CHAT FINAL POLISH ===== */
.bg-light .section-header {
  display: none !important;
}

.customer-reviews-section {
  background: #ffffff !important;
  border-top: 1px solid rgba(10, 10, 10, .06);
  border-bottom: 1px solid rgba(10, 10, 10, .06);
}

.reviews-summary {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  align-items: center;
  gap: 46px;
  padding: 34px 0;
}

.reviews-overview {
  padding-left: 18px;
}

.reviews-stars-large {
  color: #f59e0b;
  font-size: 34px;
  letter-spacing: .06em;
  line-height: 1;
}

.reviews-overview strong {
  display: inline-block;
  margin-top: 8px;
  color: #108c7b;
  font-size: 18px;
  font-weight: 600;
  text-decoration: underline;
}

.reviews-overview p {
  margin-top: 3px;
  color: #0a0a0a;
  font-size: 16px;
}

.reviews-bars {
  padding: 0 46px;
  border-left: 1px solid rgba(10, 10, 10, .08);
  border-right: 1px solid rgba(10, 10, 10, .08);
}

.rev-bar-row {
  display: grid;
  grid-template-columns: 110px minmax(120px, 1fr) 42px;
  gap: 16px;
  align-items: center;
  margin: 7px 0;
}

.rev-bar-label {
  color: #f59e0b;
  font-size: 13px;
  letter-spacing: .03em;
  white-space: nowrap;
}

.rev-bar-track {
  position: relative;
  height: 10px;
  background: #eeeeee;
  border-radius: 999px;
  overflow: hidden;
  width: 100%;
}

.rev-bar-fill {
  position: absolute;
  inset: 0 auto 0 0;
  height: 100%;
  background: #f59e0b;
  border-radius: 999px;
  transition: width .4s ease;
  min-width: 0;
}

.rev-bar-count {
  color: #5c5c5c;
  font-size: 14px;
  text-align: right;
}

.review-write-btn {
  justify-self: center;
  width: min(280px, 100%);
  min-height: 68px;
  border: 0;
  background: #108c7b;
  color: #ffffff;
  font: inherit;
  font-size: 20px;
  font-weight: 850;
  line-height: 1.05;
  cursor: pointer;
}

.review-summary-action {
  display: flex;
  align-items: center;
  justify-content: center;
}

#product-reviews .reviews-summary {
  grid-template-columns: 1fr;
  gap: 18px;
  padding-top: 10px;
  text-align: center;
}

#product-reviews .reviews-stars-large {
  color: #f59e0b;
  font-size: 22px;
  letter-spacing: .06em;
}

#product-reviews .review-write-btn {
  width: min(360px, 86vw);
  min-height: 56px;
  border-radius: 999px;
  background: #0a0a0a;
  font-size: 17px;
}

#product-reviews .reviews-bars {
  width: min(460px, 100%);
  margin: 6px auto 0;
}

.reviews-grid {
  margin-top: 18px;
}

.review-card {
  border-color: rgba(16, 140, 123, .18) !important;
}

.review-stars {
  color: #108c7b !important;
  font-size: 24px;
  letter-spacing: .08em;
}

.chat-msg.admin {
  color: #0a0a0a;
}

@media (max-width: 768px) {
  .reviews-summary {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 18px 0;
  }

  .reviews-overview {
    padding-left: 0;
    text-align: center;
  }

  .reviews-stars-large {
    font-size: 34px;
  }

  .reviews-overview strong {
    font-size: 15px;
  }

  .reviews-bars {
    padding: 18px 0;
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(10, 10, 10, .08);
    border-bottom: 1px solid rgba(10, 10, 10, .08);
  }

  .reviews-bars .rev-bar-row {
    grid-template-columns: 96px 1fr 34px;
    gap: 10px;
  }

  .reviews-bars .rev-bar-label {
    font-size: 16px;
  }

  .review-write-btn {
    min-height: 58px;
    font-size: 18px;
  }

  #product-reviews .reviews-stars-large {
    font-size: 34px;
  }

  #product-reviews .reviews-bars {
    padding-top: 14px;
  }
}

/* ===== CHAT REDESIGN ===== */
.chat-panel {
  width: 440px !important;
  max-height: 620px !important;
  border: 0 !important;
  border-radius: 12px !important;
  background: #ffffff !important;
  box-shadow: 0 18px 70px rgba(0, 0, 0, .24) !important;
}

.chat-panel-header {
  display: none !important;
}

.chat-start-screen {
  padding: 0 !important;
  gap: 0 !important;
  background: #ffffff;
}

.chat-start-hero {
  padding: 26px 24px 16px;
  background: #050505;
  color: #ffffff;
}

.chat-start-hero h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 25px;
  line-height: 1.1;
  font-weight: 850;
}

.chat-start-hero p {
  margin: 0 0 24px !important;
  color: #ffffff !important;
  font-size: 19px !important;
  line-height: 1.35;
}

.chat-start-btn {
  width: 100%;
  height: 56px;
  border: 0;
  border-radius: 8px;
  background: #5c5c5c;
  color: #ffffff;
  font: inherit;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
}

.quick-replies {
  padding: 24px;
}

.quick-replies h4 {
  margin: 0 0 22px;
  color: #1f1f1f;
  text-align: center;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 850;
}

.quick-replies button {
  width: 100%;
  min-height: 54px;
  margin-bottom: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(10, 10, 10, .26);
  border-radius: 8px;
  background: #ffffff;
  color: #666666;
  font: inherit;
  font-size: 18px;
  text-align: left;
  cursor: pointer;
}

.quick-replies button:hover {
  border-color: #0a0a0a;
  color: #0a0a0a;
}

.chat-messages {
  min-height: 320px;
  background: #ffffff;
}

.chat-input-area {
  background: #ffffff;
}

@media (max-width: 768px) {
  .chat-widget {
    right: 16px;
    bottom: 18px;
  }

  .chat-panel {
    width: min(430px, calc(100vw - 24px)) !important;
    right: -4px !important;
    bottom: 72px !important;
  }

  .chat-start-hero {
    padding: 24px 18px 14px;
  }

  .quick-replies {
    padding: 22px 14px;
  }
}

/* ===== USER FEEDBACK POLISH ===== */
#page-home .hero-slider-arrow {
  width: 42px !important;
  height: 56px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #ffffff !important;
  font-size: 58px !important;
  font-weight: 300;
  text-shadow: 0 3px 16px rgba(0, 0, 0, .75), 0 0 2px rgba(0, 0, 0, .9);
  box-shadow: none !important;
  backdrop-filter: none !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  touch-action: manipulation;
}

#page-home .hero-slider-prev {
  left: 18px !important;
}

#page-home .hero-slider-next {
  right: 18px !important;
}

.home-product-tile span {
  display: none !important;
}

.product-card .product-badges,
.product-card .product-stock {
  display: none !important;
}

.service-slider {
  min-height: 360px !important;
  overflow: hidden;
}

.service-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 42px 52% 42px 54px !important;
}

.service-slide::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 48%;
  background-position: center;
  background-size: cover;
}

.service-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, .96) 48%, rgba(255, 255, 255, .2) 100%);
  pointer-events: none;
}

.service-slide:nth-child(1)::before {
  background-image: url("/assets/biovohon-tabletop-kit.png");
}

.service-slide:nth-child(2)::before {
  background-image: url("/assets/biovohon-rooftop-lounge.png");
}

.service-slide:nth-child(3)::before {
  background-image: url("/assets/biovohon-product-render.png");
}

.service-slide:nth-child(4)::before {
  background-image: url("/assets/biovohon-luxury-terrace-hero.png");
}

.service-slide > * {
  position: relative;
  z-index: 1;
}

.service-slide span {
  display: none !important;
}

.service-slide h3 {
  max-width: 420px;
}

.service-slide p {
  max-width: 430px;
}

.footer-brand .logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-brand .logo-icon {
  flex: 0 0 38px;
  width: 38px !important;
  height: 38px !important;
}

.footer-brand .logo-name {
  color: #ffffff !important;
  font-size: 24px !important;
}

.footer-brand p {
  max-width: 340px;
  margin-top: 0 !important;
}

@media (max-width: 768px) {
  #page-home .hero-slider-arrow {
    width: 34px !important;
    height: 48px !important;
    font-size: 46px !important;
  }

  #page-home .hero-slider-prev {
    left: 12px !important;
  }

  #page-home .hero-slider-next {
    right: 12px !important;
  }

  .home-product-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .home-product-tile {
    min-height: 220px !important;
  }

  .home-product-tile div {
    left: 14px !important;
    right: 14px !important;
    bottom: 14px !important;
  }

  .home-product-tile h3 {
    font-size: 19px !important;
    line-height: 1.05 !important;
  }

  .home-product-tile p {
    display: none !important;
  }

  .service-slider,
  .service-track {
    min-height: 390px !important;
  }

  .service-slide {
    justify-content: flex-end;
    padding: 190px 24px 56px !important;
  }

  .service-slide::before {
    inset: 0 0 auto 0;
    width: 100%;
    height: 190px;
  }

  .service-slide::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, .06) 0%, #ffffff 52%, #ffffff 100%);
  }

  .service-slide h3 {
    max-width: 100%;
    font-size: 30px !important;
  }

  .service-slide p {
    max-width: 100%;
  }

  .footer-brand .logo {
    justify-content: flex-start;
  }
}

/* ===== REFERENCE DESIGN ADAPTATION ===== */
:root {
  --ref-bg: #fafaf7;
  --ref-surface: #ffffff;
  --ref-cream: #f0efea;
  --ref-text: #0a0a0a;
  --ref-muted: #5c5c5c;
  --ref-line: rgba(10, 10, 10, .1);
  --ref-accent: #ff5a1f;
  --ref-radius: 8px;
  --ref-shadow: 0 18px 60px rgba(0, 0, 0, .1), 0 2px 6px rgba(0, 0, 0, .05);
}

html,
body {
  overflow-x: hidden;
  background: var(--ref-bg) !important;
  color: var(--ref-text);
  font-family: Manrope, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1180px;
}

.header {
  background: rgba(250, 250, 247, .94);
  border-bottom: 1px solid var(--ref-line);
  backdrop-filter: blur(18px);
}

.header-top {
  display: none;
}

.mobile-promo-strip.top-promo-slider {
  height: 44px;
  border: 0;
  background: #0a0a0a;
  color: #fafaf7;
  font-weight: 800;
  letter-spacing: 0;
}

.top-promo-arrow {
  background: transparent !important;
  color: #fafaf7 !important;
  box-shadow: none !important;
}

.header-main {
  border: 0;
  background: transparent;
}

.header-main-inner {
  min-height: 72px;
}

.logo {
  gap: 10px;
}

.logo-icon {
  width: 42px;
  height: 42px;
  overflow: hidden;
  border-radius: 50%;
  background: #0a0a0a !important;
  box-shadow: none !important;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.logo-name {
  color: #0a0a0a !important;
  font-size: 24px;
  font-weight: 850;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.logo-sub {
  display: none !important;
}

.nav-desktop {
  gap: 4px;
}

/* Плоский список категорій — рівномірно розподілений по всій вільній ширині хедера */
.nav-desktop.nav-desktop-flat {
  flex: 1;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 8px;
  margin: 0 16px;
}
.nav-desktop.nav-desktop-flat .nav-cat-link {
  /* Без flex:1 — ширина по контенту, щоб hover-фон обгортав лише текст */
  text-align: center;
  white-space: nowrap;
  padding: 10px 18px;
}

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: #0a0a0a;
  font-size: 14px;
  font-weight: 750;
}

.nav-link:hover,
.nav-link.active {
  background: #0a0a0a;
  color: #ffffff !important;
}

.header-btn {
  width: 42px;
  height: 42px;
  border: 1px solid transparent;
  background: transparent;
  color: #0a0a0a;
  box-shadow: none;
}

.header-btn:hover {
  border-color: var(--ref-line);
  background: #ffffff;
}

#page-home .hero {
  width: min(1180px, calc(100% - 48px));
  min-height: 620px !important;
  height: 620px;
  margin: 24px auto 0;
  overflow: hidden;
  border-radius: var(--ref-radius);
  background: #0a0a0a;
  box-shadow: var(--ref-shadow);
}

#page-home .hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 100%;
  min-height: 100% !important;
  padding: 56px;
  pointer-events: none;
}

#page-home .hero-photo,
#page-home .hero-product-slider {
  inset: 0;
  z-index: 0 !important;
}

#page-home .hero-slide {
  filter: saturate(.96) contrast(1.02);
}

#page-home .hero-bg {
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, .74), rgba(10, 10, 10, .38) 45%, rgba(10, 10, 10, .08)),
    linear-gradient(180deg, rgba(10, 10, 10, .04), rgba(10, 10, 10, .66));
}

#page-home .hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 0 !important;
  pointer-events: auto;
}

#page-home .hero-badge {
  max-width: max-content;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  color: #fafaf7 !important;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

#page-home .hero-title {
  max-width: 760px;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(56px, 7vw, 92px) !important;
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: .92 !important;
}

#page-home .hero-desc {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 18px !important;
  line-height: 1.55;
}

#page-home .hero-offer {
  position: relative;
  z-index: 2;
  display: block;
  width: 310px;
  max-width: 310px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: var(--ref-radius) !important;
  background: rgba(255, 255, 255, .92) !important;
  color: #0a0a0a !important;
  box-shadow: none;
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

#page-home .hero-offer-kicker {
  color: var(--ref-accent);
}

#page-home .hero-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid !important;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: rgba(10, 10, 10, .42);
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
  backdrop-filter: blur(14px);
}

#page-home .hero-slider-prev {
  left: 24px !important;
}

#page-home .hero-slider-next {
  right: 24px !important;
}

#page-home .hero-slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  z-index: 5;
  display: flex !important;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(10, 10, 10, .28);
  backdrop-filter: blur(12px);
  transform: translateX(-50%);
}

#page-home .hero-slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .42);
}

#page-home .hero-slider-dots button.active {
  width: 24px;
  background: #ffffff;
}

.section {
  padding: 82px 0;
  background: var(--ref-bg);
}

.section-header {
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 30px;
}

.section-kicker {
  color: var(--ref-accent) !important;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section-title {
  color: #0a0a0a !important;
  font-size: clamp(34px, 5vw, 64px) !important;
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: .96 !important;
}

.section-sub {
  max-width: 460px;
  color: var(--ref-muted) !important;
  line-height: 1.65;
}

.home-product-showcase {
  background: var(--ref-bg) !important;
  color: var(--ref-text) !important;
}

.home-product-showcase .section-title {
  color: #0a0a0a !important;
}

.home-product-showcase .section-sub {
  color: var(--ref-muted) !important;
}

.home-product-tiles,
.fire-banner-grid {
  gap: 14px;
}

.home-product-tile,
.fire-banner {
  overflow: hidden;
  border: 1px solid var(--ref-line);
  border-radius: var(--ref-radius) !important;
  box-shadow: none !important;
}

.home-product-tile {
  min-height: 360px;
  background: #0a0a0a;
}

.home-product-tile::after,
.fire-banner::after {
  background: linear-gradient(180deg, transparent 30%, rgba(10, 10, 10, .72));
}

.home-product-tile h3,
.fire-banner h2 {
  letter-spacing: -.02em;
}

.fire-banners,
.bg-light,
.social-proof-section,
.brand-story-section,
.newsletter-section {
  background: var(--ref-bg) !important;
}

.service-guarantees {
  background: var(--ref-cream) !important;
}

.service-slider {
  min-height: 300px;
  border: 1px solid var(--ref-line);
  border-radius: var(--ref-radius) !important;
  background: #ffffff !important;
  box-shadow: none !important;
}

.service-slide {
  padding: 34px;
  color: #0a0a0a;
}

.service-slide span {
  background: #0a0a0a !important;
  color: var(--ref-accent) !important;
}

.service-slide h3 {
  color: #0a0a0a !important;
  font-size: 34px;
  line-height: 1;
}

.service-slide p {
  color: var(--ref-muted) !important;
}

.service-arrow {
  border: 0 !important;
  background: #0a0a0a !important;
  color: #ffffff !important;
}

.product-card {
  border: 1px solid var(--ref-line) !important;
  border-radius: var(--ref-radius) !important;
  background: #ffffff;
  box-shadow: none !important;
}

.product-card:hover {
  border-color: rgba(10, 10, 10, .18) !important;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .08) !important;
  transform: translateY(-3px);
}

.product-img {
  background: #f0efea;
}

.product-info {
  padding: 18px;
}

/* ── Свотчі кольорів на картці товара в каталозі ── */
.product-card-swatches {
  display: flex;
  gap: 6px;
  margin: 8px 0 10px;
  flex-wrap: wrap;
}
.pcard-swatch {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #e5e7eb;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 1px 2px rgba(0,0,0,.1);
  transition: transform .15s, border-color .15s, box-shadow .15s;
}
.pcard-swatch:hover {
  transform: scale(1.15);
  box-shadow: 0 2px 6px rgba(0,0,0,.18);
}
.pcard-swatch.active {
  border-color: #e8531d;
  transform: scale(1.1);
}
.pcard-swatch.out-of-stock {
  opacity: 0.45;
  cursor: not-allowed;
}
.pcard-swatch .swatch-off {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #dc2626;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
}

.product-cat {
  color: var(--ref-muted);
  letter-spacing: 0;
  text-transform: none;
}

.product-name {
  color: #0a0a0a;
  font-weight: 850;
}

.price-current {
  color: #0a0a0a !important;
}

.btn-primary,
.product-buy-now {
  border-color: #0a0a0a !important;
  background: #0a0a0a !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

.product-add-btn,
.btn-outline {
  border-color: var(--ref-line);
  background: #ffffff;
  color: #0a0a0a;
}

.btn-primary:hover,
.product-card .btn-primary:hover {
  border-color: var(--ref-accent) !important;
  background: var(--ref-accent) !important;
}

.testimonial-panel,
.home-faq-panel,
.brand-story,
.newsletter-box {
  border: 1px solid var(--ref-line) !important;
  border-radius: var(--ref-radius) !important;
  background: #ffffff !important;
  box-shadow: none !important;
}

.footer {
  background: #0a0a0a !important;
}

/* Service slider: vector icons, no photos, no round arrow backgrounds */
.service-slider .service-arrow {
  width: 54px !important;
  height: 72px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #0a0a0a !important;
  font-size: 48px !important;
  text-shadow: 0 2px 10px rgba(255, 255, 255, .9);
  box-shadow: none !important;
}

.service-slider .service-prev {
  left: 8px !important;
}

.service-slider .service-next {
  right: 8px !important;
}

.service-slide {
  align-items: flex-start !important;
  justify-content: center !important;
  padding: 44px 76px 54px !important;
  text-align: left;
}

.service-slide::before,
.service-slide::after {
  display: none !important;
  content: none !important;
  background-image: none !important;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: 22px;
  border: 1px solid rgba(10, 10, 10, .12);
  border-radius: 20px;
  background: #fafaf7;
}

.service-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: #ff5a1f;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-slide h3,
.service-slide p {
  max-width: 620px !important;
}

.home-faq-panel details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  list-style: none;
}

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

.home-faq-panel details summary::after {
  content: "+";
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(10, 10, 10, .12);
  border-radius: 50%;
  color: #ff5a1f;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.home-faq-panel details[open] summary::after {
  content: "-";
}

.brand-story-section {
  background: #fafaf7 !important;
}

.brand-story {
  background: #ffffff !important;
  color: #0a0a0a !important;
}

.brand-story .section-kicker {
  color: #ff5a1f !important;
}

.brand-story h2 {
  color: #0a0a0a !important;
  opacity: 1 !important;
}

.brand-story p {
  color: #5c5c5c !important;
  opacity: 1 !important;
}

@media (max-width: 768px) {
  .mobile-promo-strip.top-promo-slider {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    height: 44px;
    font-size: 14px;
  }

  .header-main-inner {
    min-height: 58px;
  }

  .logo-icon {
    width: 34px;
    height: 34px;
  }

  .logo-name {
    font-size: 23px !important;
  }

  .header-actions {
    gap: 10px;
  }

  .header-btn {
    width: 38px;
    height: 38px;
  }

  #page-home .hero {
    width: 100%;
    min-height: 560px !important;
    height: 560px;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
  }

  #page-home .hero .container {
    padding: 0 18px 64px;
  }

  #page-home .hero-bg {
    background:
      linear-gradient(180deg, rgba(10, 10, 10, .04) 0%, rgba(10, 10, 10, .22) 38%, rgba(10, 10, 10, .82) 100%);
  }

  #page-home .hero-title {
    max-width: 350px;
    font-size: clamp(40px, 11vw, 48px) !important;
    line-height: .96 !important;
  }

  #page-home .hero-desc {
    max-width: 350px;
    font-size: 15px !important;
  }

  #page-home .hero-badge {
    max-width: 290px;
    padding: 7px 12px;
    font-size: 10px;
  }

  #page-home .hero-offer {
    display: none !important;
  }

  #page-home .hero-slider-arrow {
    top: 48%;
    width: 36px;
    height: 36px;
    font-size: 34px;
  }

  #page-home .hero-slider-prev {
    left: 12px !important;
  }

  #page-home .hero-slider-next {
    right: 12px !important;
  }

  #page-home .hero-slider-dots {
    bottom: 18px;
  }

  .section {
    padding: 56px 0;
  }

  .section-header {
    display: block;
    margin-bottom: 22px;
  }

  .section-title {
    margin-top: 8px;
    font-size: clamp(34px, 10vw, 46px) !important;
    line-height: .98 !important;
  }

  .section-sub {
    margin-top: 14px;
    font-size: 16px;
  }

  .home-product-tiles,
  .fire-banner-grid {
    grid-template-columns: 1fr !important;
  }

  .home-product-tile,
  .fire-banner {
    min-height: 300px !important;
  }

  .service-slider,
  .service-track {
    min-height: 260px;
  }

  .service-slide {
    padding: 26px 22px 54px;
  }

  .service-slide h3 {
    font-size: 30px;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .product-info {
    padding: 13px;
  }
}

/* ===== REVIEW PICKER, FAQ CHEVRONS, CHAT CLOSE FINAL ===== */
.review-star-picker {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  padding: 10px 14px;
  border: 1px solid rgba(10, 10, 10, .12);
  border-radius: 8px;
  background: #fafaf7;
}

.review-star-picker button {
  border: 0;
  background: transparent;
  color: #d8d8d8;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transition: color .15s ease, transform .15s ease;
}

.review-star-picker button.active {
  color: #108c7b;
}

.review-star-picker button:hover {
  color: #108c7b;
  transform: translateY(-1px);
}

.home-faq-panel details summary::after {
  content: "" !important;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(10, 10, 10, .1);
  border-radius: 50%;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23ff5a1f' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .06);
}

.home-faq-panel details[open] summary::after {
  transform: rotate(180deg);
}

/* .chat-input-area — padding-left: 48px видалено (кнопка .chat-panel-close-inline більше не використовується) */

.chat-panel-close-inline {
  position: absolute;
  left: 12px;
  top: 50%;
  width: 30px !important;
  height: 30px !important;
  min-width: 30px !important;
  border: 1px solid rgba(10, 10, 10, .12) !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  color: #0a0a0a !important;
  font-size: 22px !important;
  line-height: 1 !important;
  cursor: pointer;
  transform: translateY(-50%);
}

/* ===== CHAT REDESIGN FINAL ===== */
.chat-panel {
  width: 440px !important;
  max-height: 620px !important;
  border: 0 !important;
  border-radius: 12px !important;
  background: #ffffff !important;
  box-shadow: 0 18px 70px rgba(0, 0, 0, .24) !important;
}

.chat-panel-header {
  display: none !important;
}

.chat-start-screen {
  padding: 0 !important;
  gap: 0 !important;
  background: #ffffff;
}

.chat-start-hero {
  padding: 26px 24px 16px;
  background: #050505;
  color: #ffffff;
}

.chat-start-hero h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 25px;
  line-height: 1.1;
  font-weight: 850;
}

.chat-start-hero p {
  margin: 0 0 24px !important;
  color: #ffffff !important;
  font-size: 19px !important;
  line-height: 1.35;
}

.chat-start-btn {
  width: 100%;
  height: 56px;
  border: 0;
  border-radius: 8px;
  background: #5c5c5c;
  color: #ffffff;
  font: inherit;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
}

.quick-replies {
  padding: 24px;
}

.quick-replies h4 {
  margin: 0 0 22px;
  color: #1f1f1f;
  text-align: center;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 850;
}

.quick-replies button {
  width: 100%;
  min-height: 54px;
  margin-bottom: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(10, 10, 10, .26);
  border-radius: 8px;
  background: #ffffff;
  color: #666666;
  font: inherit;
  font-size: 18px;
  text-align: left;
  cursor: pointer;
}

.quick-replies button:hover {
  border-color: #0a0a0a;
  color: #0a0a0a;
}

.chat-messages {
  min-height: 320px;
  background: #ffffff;
}

.chat-input-area {
  background: #ffffff;
}

@media (max-width: 768px) {
  .chat-widget {
    right: 16px;
    bottom: 18px;
  }

  .chat-panel {
    width: min(430px, calc(100vw - 24px)) !important;
    right: -4px !important;
    bottom: 72px !important;
  }

  .chat-start-hero {
    padding: 24px 18px 14px;
  }

  .quick-replies {
    padding: 22px 14px;
  }
}

/* ===== FINAL MOBILE POLISH AND REVIEWS ===== */
.home-product-showcase .section-header {
  text-align: center !important;
  justify-content: center !important;
}

.home-product-showcase .section-header > div,
.home-product-showcase .section-sub {
  margin-left: auto !important;
  margin-right: auto !important;
}

.service-slide {
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

.service-icon {
  width: 116px !important;
  height: 116px !important;
  margin: 0 auto 24px !important;
  border-radius: 28px !important;
}

.service-icon svg {
  width: 68px !important;
  height: 68px !important;
}

.service-slide h3,
.service-slide p {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.testimonial-panel {
  color: #0a0a0a !important;
}

.testimonial-panel blockquote {
  color: #0a0a0a !important;
  opacity: 1 !important;
}

.testimonial-panel p {
  color: #5c5c5c !important;
  opacity: 1 !important;
}

.home-faq-panel details summary::after {
  content: "⌄" !important;
  font-size: 24px;
}

.home-faq-panel details[open] summary::after {
  content: "⌃" !important;
}

.bg-light .section-more {
  display: none !important;
}

.customer-reviews-section {
  background: #fafaf7 !important;
}

.reviews-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
  margin-bottom: 28px;
}

.reviews-head .section-kicker,
.reviews-head .section-title {
  grid-column: 1;
}

.reviews-score {
  grid-row: 1 / span 2;
  grid-column: 2;
  min-width: 180px;
  padding: 18px;
  border: 1px solid rgba(10, 10, 10, .1);
  border-radius: 8px;
  background: #ffffff;
  text-align: center;
}

.reviews-score strong {
  display: block;
  color: #0a0a0a;
  font-size: 46px;
  line-height: .95;
}

.reviews-score span,
.review-stars {
  color: #ff5a1f;
  letter-spacing: .08em;
}

.reviews-score p {
  margin-top: 6px;
  color: #5c5c5c;
  font-size: 13px;
}

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

.review-card,
.review-form {
  border: 1px solid rgba(10, 10, 10, .1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: none;
}

.review-card {
  padding: 22px;
}

.review-card p {
  margin: 14px 0 18px;
  color: #0a0a0a;
  line-height: 1.55;
}

.review-card strong {
  color: #5c5c5c;
}

.review-form {
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 12px;
  margin-top: 16px;
  padding: 18px;
}

.review-form textarea {
  grid-column: 1 / -1;
  min-height: 96px;
  resize: vertical;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  border: 1px solid rgba(10, 10, 10, .12);
  border-radius: 8px;
  background: #fafaf7;
  color: #0a0a0a;
  font: inherit;
  padding: 13px 14px;
}

.review-form button {
  grid-column: 1 / -1;
}

@media (max-width: 768px) {
  .home-product-showcase .section-header,
  .home-product-showcase .section-title,
  .home-product-showcase .section-sub {
    text-align: center !important;
  }

  .service-icon {
    width: 104px !important;
    height: 104px !important;
  }

  .service-icon svg {
    width: 62px !important;
    height: 62px !important;
  }

  .reviews-head,
  .reviews-grid,
  .review-form {
    grid-template-columns: 1fr;
  }

  .reviews-score {
    grid-row: auto;
    grid-column: auto;
  }

  .reviews-summary {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 20px 0;
  }

  .reviews-overview {
    padding-left: 0;
    text-align: center;
  }

  .reviews-stars-large {
    font-size: 34px;
  }
}

/* ===== HERO SLIDER ARROW FINAL CLICK LAYER ===== */
#page-home .hero-photo.hero-product-slider {
  position: absolute !important;
  inset: 0 !important;
  z-index: 30 !important;
  pointer-events: none !important;
}

#page-home .hero-photo.hero-product-slider .hero-slide {
  pointer-events: none !important;
}

#page-home .hero-photo.hero-product-slider .hero-slider-arrow {
  position: absolute !important;
  top: 50% !important;
  z-index: 50 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 64px !important;
  height: 96px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #ffffff !important;
  font-size: 58px !important;
  line-height: 1 !important;
  text-shadow: 0 4px 18px rgba(0, 0, 0, .82), 0 0 2px #000000;
  box-shadow: none !important;
  backdrop-filter: none !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  touch-action: manipulation;
  transform: translateY(-50%) !important;
}

#page-home .hero-photo.hero-product-slider .hero-slider-prev {
  left: 0 !important;
}

#page-home .hero-photo.hero-product-slider .hero-slider-next {
  right: 0 !important;
}

#page-home .hero-photo.hero-product-slider .hero-slider-dots,
#page-home .hero-photo.hero-product-slider .hero-slider-dots button {
  z-index: 50 !important;
  pointer-events: auto !important;
}

@media (max-width: 768px) {
  #page-home .hero-photo.hero-product-slider .hero-slider-arrow {
    width: 58px !important;
    height: 96px !important;
    font-size: 48px !important;
  }
}

/* ===== SERVICE SVG ICONS AND CONTENT CONTRAST ===== */
.service-slider .service-arrow {
  width: 54px !important;
  height: 72px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #0a0a0a !important;
  font-size: 48px !important;
  text-shadow: 0 2px 10px rgba(255, 255, 255, .9);
  box-shadow: none !important;
}

.service-slider .service-prev {
  left: 8px !important;
}

.service-slider .service-next {
  right: 8px !important;
}

.service-slide {
  align-items: flex-start !important;
  justify-content: center !important;
  padding: 44px 76px 54px !important;
  text-align: left;
}

.service-slide::before,
.service-slide::after {
  display: none !important;
  content: none !important;
  background-image: none !important;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: 22px;
  border: 1px solid rgba(10, 10, 10, .12);
  border-radius: 20px;
  background: #fafaf7;
}

.service-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: #ff5a1f;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-slide h3,
.service-slide p {
  max-width: 620px !important;
}

.home-faq-panel details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  list-style: none;
}

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

.home-faq-panel details summary::after {
  content: "+";
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(10, 10, 10, .12);
  border-radius: 50%;
  color: #ff5a1f;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.home-faq-panel details[open] summary::after {
  content: "−";
}

.brand-story-section {
  background: #fafaf7 !important;
}

.brand-story {
  background: #ffffff !important;
  color: #0a0a0a !important;
}

.brand-story .section-kicker {
  color: #ff5a1f !important;
}

.brand-story h2 {
  color: #0a0a0a !important;
  opacity: 1 !important;
}

.brand-story p {
  color: #5c5c5c !important;
  opacity: 1 !important;
}

@media (max-width: 768px) {
  .service-slider,
  .service-track {
    min-height: 360px !important;
  }

  .service-slide {
    justify-content: center !important;
    padding: 42px 58px 52px !important;
  }

  .service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
    border-radius: 18px;
  }

  .service-icon svg {
    width: 36px;
    height: 36px;
  }

  .service-slider .service-arrow {
    width: 44px !important;
    height: 64px !important;
    font-size: 40px !important;
  }
}

/* ===== HERO SLIDER CLICK FIX ===== */
#page-home .hero-product-slider {
  z-index: 4 !important;
  pointer-events: none;
}

#page-home .hero-slide {
  pointer-events: none;
}

#page-home .hero-slider-arrow,
#page-home .hero-slider-dots,
#page-home .hero-slider-dots button {
  pointer-events: auto !important;
}

#page-home .hero-slider-arrow {
  cursor: pointer;
  touch-action: manipulation;
}

/* ===== USER FEEDBACK POLISH FINAL ===== */
#page-home .hero-slider-arrow {
  width: 42px !important;
  height: 56px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #ffffff !important;
  font-size: 58px !important;
  font-weight: 300;
  text-shadow: 0 3px 16px rgba(0, 0, 0, .75), 0 0 2px rgba(0, 0, 0, .9);
  box-shadow: none !important;
  backdrop-filter: none !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  touch-action: manipulation;
}

#page-home .hero-slider-prev {
  left: 18px !important;
}

#page-home .hero-slider-next {
  right: 18px !important;
}

.home-product-tile span,
.service-slide span {
  display: none !important;
}

.product-card .product-badges,
.product-card .product-stock {
  display: none !important;
}

.service-slider {
  min-height: 360px !important;
  overflow: hidden;
}

.service-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 42px 52% 42px 54px !important;
}

.service-slide::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 48%;
  background-position: center;
  background-size: cover;
}

.service-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, .96) 48%, rgba(255, 255, 255, .2) 100%);
  pointer-events: none;
}

.service-slide:nth-child(1)::before {
  background-image: url("/assets/biovohon-tabletop-kit.png");
}

.service-slide:nth-child(2)::before {
  background-image: url("/assets/biovohon-rooftop-lounge.png");
}

.service-slide:nth-child(3)::before {
  background-image: url("/assets/biovohon-product-render.png");
}

.service-slide:nth-child(4)::before {
  background-image: url("/assets/biovohon-luxury-terrace-hero.png");
}

.service-slide > * {
  position: relative;
  z-index: 1;
}

.service-slide h3 {
  max-width: 420px;
}

.service-slide p {
  max-width: 430px;
}

.footer-brand .logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-brand .logo-icon {
  flex: 0 0 38px;
  width: 38px !important;
  height: 38px !important;
}

.footer-brand .logo-name {
  color: #ffffff !important;
  font-size: 24px !important;
}

.footer-brand p {
  max-width: 340px;
  margin-top: 0 !important;
}

@media (max-width: 768px) {
  #page-home .hero-slider-arrow {
    width: 34px !important;
    height: 48px !important;
    font-size: 46px !important;
  }

  #page-home .hero-slider-prev {
    left: 12px !important;
  }

  #page-home .hero-slider-next {
    right: 12px !important;
  }

  .home-product-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .home-product-tile {
    min-height: 220px !important;
  }

  .home-product-tile div {
    left: 14px !important;
    right: 14px !important;
    bottom: 14px !important;
  }

  .home-product-tile h3 {
    font-size: 19px !important;
    line-height: 1.05 !important;
  }

  .home-product-tile p {
    display: none !important;
  }

  .service-slider,
  .service-track {
    min-height: 390px !important;
  }

  .service-slide {
    justify-content: flex-end;
    padding: 190px 24px 56px !important;
  }

  .service-slide::before {
    inset: 0 0 auto 0;
    width: 100%;
    height: 190px;
  }

  .service-slide::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, .06) 0%, #ffffff 52%, #ffffff 100%);
  }

  .service-slide h3 {
    max-width: 100%;
    font-size: 30px !important;
  }

  .service-slide p {
    max-width: 100%;
  }
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

a { color: inherit; text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary); }

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

input, textarea, select {
  font-family: inherit;
  font-size: 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  width: 100%;
  outline: none;
  transition: var(--transition);
  background: var(--bg);
  color: var(--text);
}
input:focus, textarea:focus, select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(232,93,4,.1); }
textarea { resize: vertical; min-height: 100px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); }
.btn-outline { background: transparent; border-color: var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-secondary { background: var(--secondary); color: #fff; }
.btn-secondary:hover { background: #2d2d4e; color: #fff; }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover { background: var(--bg-light); }
.btn-sm { padding: 7px 14px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-full { width: 100%; }
.btn-text { background: none; border: none; color: var(--primary); font-size: 13px; cursor: pointer; padding: 0; font-weight: 500; }
.btn-text:hover { text-decoration: underline; }
.btn-icon { width: 38px; height: 38px; padding: 0; border-radius: 50%; }
.btn:disabled { opacity: .5; cursor: not-allowed; }

/* ===== HEADER ===== */
.header { position: sticky; top: 0; z-index: 100; background: var(--bg); box-shadow: var(--shadow); }

.header-top { background: var(--secondary); color: rgba(255,255,255,.8); padding: 7px 0; font-size: 13px; }
.header-top-inner { display: flex; align-items: center; gap: 20px; }
.header-phone { display: flex; align-items: center; gap: 6px; font-weight: 500; color: #fff; }
.header-phone svg { width: 14px; height: 14px; fill: currentColor; }
.header-working { color: rgba(255,255,255,.6); margin-left: auto; }
.header-top-right { display: flex; gap: 16px; }
.header-link { color: rgba(255,255,255,.8); font-size: 13px; transition: var(--transition); }
.header-link:hover { color: #fff; }

.header-main { padding: 12px 0; }
.header-main-inner { display: flex; align-items: center; gap: 24px; }

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { width: 42px; height: 42px; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.logo-icon svg { width: 28px; height: 28px; }
.logo-icon img { width: 100%; height: 100%; object-fit: contain; display: block; }

.logo-icon img[src*="wohlaura-logo-source"] {
  width: 150%;
  height: 150%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}
.logo-name { font-size: 20px; font-weight: 800; color: var(--secondary); letter-spacing: 0; display: block; }
.logo-sub { font-size: 11px; color: var(--text-muted); font-weight: 400; display: block; margin-top: -2px; }

.nav-desktop { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; }
.nav-link:hover, .nav-link.active { background: var(--primary-light); color: var(--primary); }

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(4px); }
.nav-dropdown-menu a { display: block; padding: 9px 12px; border-radius: var(--radius-sm); font-size: 14px; color: var(--text); }
.nav-dropdown-menu a:hover { background: var(--primary-light); color: var(--primary); }

.header-actions { display: flex; align-items: center; gap: 6px; margin-left: 12px; }
.header-btn {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  border: none; background: transparent; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text); transition: var(--transition); position: relative;
}
.header-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.header-btn:hover { background: var(--bg-light); color: var(--primary); }
.cart-badge {
  position: absolute; top: 4px; right: 4px; width: 18px; height: 18px;
  background: var(--primary); color: #fff; border-radius: 50%;
  font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.mobile-menu-btn { display: none; }
.mobile-promo-strip,
.account-mobile-btn { display: none; }

/* Search Bar */
.search-bar { background: var(--bg-light); border-top: 1px solid var(--border); padding: 12px 0; display: none; }
.search-bar.open { display: block; }
.search-form { display: flex; gap: 8px; }
.search-form input { flex: 1; }
.search-form button { padding: 10px 20px; background: var(--primary); color: #fff; border: none; border-radius: var(--radius-sm); cursor: pointer; font-weight: 600; font-size: 14px; transition: var(--transition); }
.search-form button:hover { background: var(--primary-dark); }
.search-form button:last-child { background: transparent; color: var(--text); border: 1.5px solid var(--border); padding: 10px; }
.search-form button:last-child svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }

/* Mobile Menu */
.mobile-menu { display: none; background: var(--bg); border-top: 1px solid var(--border); padding: 16px 0; }
.mobile-menu.open { display: block; }
.mobile-menu-inner { display: flex; flex-direction: column; gap: 2px; }
.mobile-nav-link { display: block; padding: 12px 20px; font-weight: 500; color: var(--text); border-radius: var(--radius-sm); }
.mobile-nav-link:hover { background: var(--primary-light); color: var(--primary); }
.mobile-cat-links { display: flex; flex-direction: column; gap: 2px; }
.mobile-cat-link { display: block; padding: 14px 20px; font-size: 16px; font-weight: 600; color: var(--text); border-radius: var(--radius-sm); }
.mobile-cat-link:hover { background: var(--primary-light); color: var(--primary); }
.mobile-menu-label { display: none; }

/* ===== PAGES ===== */
.page { display: none; }
.page.active { display: block; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--secondary) 0%, #16213e 50%, #0f3460 100%);
  color: #fff;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(232,93,4,.15) 0%, transparent 60%);
}
.hero .container { display: flex; align-items: center; gap: 60px; position: relative; z-index: 1; }
.hero-content { flex: 1; }
.hero-badge { display: inline-block; background: rgba(232,93,4,.2); border: 1px solid rgba(232,93,4,.4); color: var(--accent); padding: 4px 14px; border-radius: 20px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 20px; }
.hero-title { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
.hero-desc { font-size: 16px; color: rgba(255,255,255,.75); max-width: 480px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-outline.btn-lg { border-color: rgba(255,255,255,.4); color: #fff; }
.btn-outline.btn-lg:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }
.hero-stats { display: flex; gap: 40px; }
.hero-stat { }
.hero-stat-num { display: block; font-size: 28px; font-weight: 800; color: var(--accent); }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,.6); }
.hero-image { flex: 0 0 400px; display: flex; justify-content: center; }
.hero-img-frame {
  width: 320px; height: 360px;
  background: rgba(255,255,255,.05);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-fire-anim {
  position: relative;
  width: 80px; height: 120px;
}
.fire-base {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 70px; height: 20px;
  background: rgba(232,93,4,.3);
  border-radius: 50%;
  filter: blur(8px);
}
.fire-particle {
  position: absolute;
  border-radius: 50% 50% 20% 20%;
  animation: fireAnim 1.5s ease-in-out infinite;
}
.fire-particle.p1 { width: 60px; height: 100px; bottom: 10px; left: 50%; transform: translateX(-50%); background: radial-gradient(ellipse at bottom, #e85d04, #f48c06, rgba(255,200,0,.3)); animation-delay: 0s; }
.fire-particle.p2 { width: 40px; height: 70px; bottom: 20px; left: 50%; transform: translateX(-50%); background: radial-gradient(ellipse at bottom, #f48c06, #ffd60a, transparent); animation-delay: .3s; }
.fire-particle.p3 { width: 20px; height: 50px; bottom: 30px; left: 50%; transform: translateX(-50%); background: radial-gradient(ellipse at bottom, #ffd60a, #fff, transparent); animation-delay: .6s; }
@keyframes fireAnim {
  0%, 100% { transform: translateX(-50%) scaleX(1); }
  33% { transform: translateX(-52%) scaleX(.95); }
  66% { transform: translateX(-48%) scaleX(1.05); }
}

/* ===== SECTIONS ===== */
.section { padding: 60px 0; }
.bg-light { background: var(--bg-light); }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.section-title { font-size: 28px; font-weight: 700; color: var(--secondary); }
.section-sub { color: var(--text-muted); margin-top: 4px; }
.section-more { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 500; color: var(--primary); }
.section-more svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ===== CATEGORIES GRID ===== */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.cat-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.cat-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.cat-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.cat-icon svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.cat-name { font-weight: 600; font-size: 14px; color: var(--text); margin-bottom: 4px; }
.cat-count { font-size: 12px; color: var(--text-muted); }

/* ===== PRODUCTS GRID ===== */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.products-grid.list-view { grid-template-columns: 1fr; }

.product-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}
.product-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.product-img {
  aspect-ratio: 4/3;
  background: var(--bg-light);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-img-placeholder {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
  color: var(--border);
}
.product-img-placeholder svg { width: 60px; height: 60px; }
.product-badges { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 4px; }
.badge { padding: 3px 8px; border-radius: 4px; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.badge-sale { background: var(--danger); color: #fff; }
.badge-new { background: var(--success); color: #fff; }
.badge-featured { background: var(--accent); color: #fff; }
.product-actions { position: absolute; top: 10px; right: 10px; display: flex; flex-direction: column; gap: 6px; opacity: 0; transition: var(--transition); }
.product-card:hover .product-actions { opacity: 1; }
.product-action-btn {
  width: 34px; height: 34px; background: #fff; border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: var(--shadow); transition: var(--transition);
  color: var(--text);
}
.product-action-btn svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.product-action-btn:hover { background: var(--primary); color: #fff; }

.product-info { padding: 16px; }
.product-cat { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 6px; }
.product-name { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 10px; line-height: 1.3; }
.product-price { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.price-current { font-size: 20px; font-weight: 800; color: var(--primary); }
.price-old { font-size: 14px; color: var(--text-muted); text-decoration: line-through; }
.price-discount { font-size: 11px; background: var(--danger); color: #fff; padding: 2px 6px; border-radius: 4px; font-weight: 700; }
.product-stock { font-size: 12px; margin-bottom: 12px; }
.in-stock { color: var(--success); }
.out-of-stock { color: var(--danger); }
.product-add-btn { width: 100%; }

/* List view card */
.products-grid.list-view .product-card { display: flex; flex-direction: row; }
.products-grid.list-view .product-img { width: 200px; flex-shrink: 0; aspect-ratio: auto; height: 160px; }
.products-grid.list-view .product-info { flex: 1; display: flex; flex-direction: column; }
.products-grid.list-view .product-add-btn { width: auto; margin-top: auto; }

/* ===== PRODUCT DETAIL ===== */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--text); }

.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.product-gallery { min-width: 0; }   /* prevent column expansion due to overflowing flex track */

/* === CAROUSEL === */
.product-carousel {
  position: relative;
  aspect-ratio: 1;
  background: transparent;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 12px;
}
/* Video play overlay — shown when video is paused, hidden while playing */
.pv-wrap { position: relative; }
.pv-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 76px; height: 76px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,0.85);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: transform .15s, background .15s, opacity .25s;
  padding: 0;
  box-shadow: 0 6px 24px rgba(0,0,0,0.4);
}
.pv-play-btn:hover { background: rgba(0,0,0,0.78); transform: translate(-50%, -50%) scale(1.08); }
.pv-play-btn svg { transform: translateX(2px); }   /* optical centering for triangle */
.pv-wrap.pv-playing .pv-play-btn { opacity: 0; pointer-events: none; }
/* Track holds all slides side-by-side; transform: translateX moves between them */
.carousel-track {
  display: flex;
  width: 100%; height: 100%;
  transition: transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  touch-action: pan-y;
}
.carousel-track.dragging { transition: none; }
.carousel-slide {
  flex: 0 0 100%;                 /* each slide = 100% of carousel (fallback before JS runs) */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.carousel-slide img {
  width: 100%; height: 100%; object-fit: cover;
  box-sizing: border-box;            /* padding does NOT add to total size */
  cursor: zoom-in;
  transition: transform .2s;
}
.carousel-slide img:hover { transform: scale(1.03); }
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.85); border: 1px solid var(--border);
  border-radius: 50%; width: 38px; height: 38px;
  font-size: 22px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 2; transition: var(--transition);
  color: var(--secondary);
}
.carousel-arrow:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }
.carousel-dots {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 2;
}
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(0,0,0,.25); border: none; cursor: pointer; padding: 0;
  transition: var(--transition);
}
.carousel-dot.active { background: var(--primary); transform: scale(1.3); }

/* Thumbs wrapper with left/right scroll arrows */
.product-thumbs-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}
.thumbs-arrow {
  flex-shrink: 0;
  width: 32px; height: 72px;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center; justify-content: center;
  color: #4b5563;
  transition: background .15s, color .15s, border-color .15s;
  padding: 0;
}
.thumbs-arrow:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.thumbs-arrow:active { transform: scale(.95); }

.product-thumbs {
  display: flex; gap: 8px; flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;   /* no rubber-band overscroll */
  scrollbar-width: none;
  flex: 1; min-width: 0;
}
.product-thumbs::-webkit-scrollbar { display: none; }
.product-thumb { flex-shrink: 0; }

/* Hide arrows when there's nothing to scroll on that side */
.thumbs-arrow.thumbs-arrow-hidden {
  opacity: 0; pointer-events: none;
  transform: scale(.8);
  transition: opacity .2s, transform .2s;
}
.thumbs-arrow { transition: opacity .2s, transform .2s, background .15s, color .15s; }
.product-thumb {
  width: 72px; height: 72px; border-radius: var(--radius-sm);
  background: var(--bg-light); border: 2px solid transparent;
  overflow: hidden; cursor: pointer; transition: var(--transition);
}
.product-thumb:hover, .product-thumb.active { border-color: var(--primary); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* === SPECS === */
.product-specs-section, .product-faq-section {
  margin-bottom: 40px;
}
.section-title-sm { font-size: 20px; font-weight: 700; color: var(--secondary); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
.specs-drawing-wrap { display: flex; gap: 32px; align-items: flex-start; flex-wrap: wrap; }
.specs-table { border-collapse: collapse; flex: 1; min-width: 260px; border-radius: 10px; overflow: hidden; border: 1.5px solid #e8531d22; }
.specs-table tr { border-bottom: 1px solid #f0ebe6; transition: background .12s; }
.specs-table tr:last-child { border-bottom: none; }
.specs-table tr:nth-child(odd) { background: #fff; }
.specs-table tr:nth-child(even) { background: #fdf7f4; }
.specs-table tr:hover { background: #fff0e8; }
.specs-table td { padding: 11px 16px; font-size: 14px; border: none; }
.specs-table td.spec-name { font-weight: 600; color: #1a1a1a; width: 42%; border-right: 2px solid #e8531d22; }
.specs-table td.spec-val { color: #444; }
.drawing-wrap { flex: 0 0 auto; text-align: center; }
.drawing-img { max-width: 260px; max-height: 320px; border-radius: var(--radius); border: 1px solid var(--border); cursor: zoom-in; transition: var(--transition); }
.drawing-img:hover { box-shadow: 0 4px 16px rgba(0,0,0,.12); transform: scale(1.01); }
.drawing-caption { font-size: 12px; color: var(--text-muted); margin-top: 6px; }

/* === FAQ === */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 12px; padding: 16px 0; background: none; border: none; cursor: pointer;
  font-size: 15px; font-weight: 600; color: var(--text); text-align: left;
  transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-chevron { flex-shrink: 0; transition: transform .25s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; font-size: 14px; color: var(--text-muted);
  line-height: 1.7; transition: max-height .3s ease, padding .3s ease;
  padding: 0;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 16px; }

/* === LIGHTBOX === */
/* ── Image Lightbox ── */
.img-lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.92);      /* dark backdrop ON the container */
  align-items: center; justify-content: center;
  cursor: zoom-out;
}
.img-lightbox.open { display: flex; }
.img-lightbox.lb-drawing { background: rgba(245,245,245,.97); cursor: default; }

/* Main image — centered by flex */
.img-lb-img {
  max-width: 90vw; max-height: 90vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 16px 64px rgba(0,0,0,.7);
  display: block;
  cursor: default;
  user-select: none;
}
.img-lightbox.lb-drawing .img-lb-img {
  background: #fff; border: 1px solid #ddd;
  box-shadow: 0 8px 40px rgba(0,0,0,.18);
}

/* Close button — top-right */
.img-lb-close {
  position: fixed; top: 16px; right: 16px; z-index: 10000;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .2s, background .15s;
}
.img-lb-close:hover { background: rgba(255,255,255,.3); }
.img-lightbox.lb-show .img-lb-close { opacity: 1; }

/* Nav arrows — left/right edges, full height */
.img-lb-prev, .img-lb-next {
  position: fixed; top: 0; bottom: 0; z-index: 10000;
  width: 80px; background: none; border: none;
  cursor: pointer; color: #fff;
  display: flex; align-items: center;
  opacity: 0; transition: opacity .2s;
}
.img-lb-prev { left: 0;  justify-content: flex-start; padding-left: 14px; }
.img-lb-next { right: 0; justify-content: flex-end;   padding-right: 14px; }
.img-lb-prev svg, .img-lb-next svg {
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(6px);
  border-radius: 50%; padding: 9px;
  width: 44px; height: 44px; flex-shrink: 0;
  transition: background .15s, transform .12s;
}
.img-lb-prev:hover svg, .img-lb-next:hover svg {
  background: rgba(0,0,0,.7); transform: scale(1.1);
}
.img-lightbox.lb-show .img-lb-prev,
.img-lightbox.lb-show .img-lb-next { opacity: 1; }

/* Counter */
.img-lb-counter {
  position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.65); font-size: 13px; letter-spacing: .05em;
  z-index: 10000; pointer-events: none;
  opacity: 0; transition: opacity .2s;
}
.img-lightbox.lb-show .img-lb-counter { opacity: 1; }

/* Mobile — always show controls */
@media (max-width: 768px) {
  .img-lb-prev, .img-lb-next, .img-lb-close, .img-lb-counter { opacity: 1 !important; }
  .img-lb-prev, .img-lb-next { width: 54px; }
  .img-lb-prev { padding-left: 8px; }
  .img-lb-next { padding-right: 8px; }
  .img-lb-prev svg, .img-lb-next svg { width: 38px; height: 38px; padding: 8px; }
}
.product-info-detail { }
.product-detail-cat { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; }
.product-detail-name { font-size: 26px; font-weight: 700; color: var(--secondary); margin-bottom: 16px; line-height: 1.2; }
.product-detail-price { margin-bottom: 20px; }
.product-detail-price .price-current { font-size: 32px; }
.product-desc { color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.product-meta { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; padding: 16px; background: var(--bg-light); border-radius: var(--radius); }
.product-meta-row { display: flex; justify-content: space-between; font-size: 14px; }
.product-meta-row strong { color: var(--text); }
.qty-selector { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.qty-btn { width: 38px; height: 38px; border: 1.5px solid var(--border); background: var(--bg); border-radius: var(--radius-sm); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 600; transition: var(--transition); }
.qty-btn:hover { border-color: var(--primary); color: var(--primary); }
.qty-input { width: 60px; text-align: center; font-weight: 600; }
.add-to-cart-btn { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }

/* ===== FILTERS ===== */
.page-header { margin-bottom: 24px; }
.page-header h1 { font-size: 28px; font-weight: 700; color: var(--secondary); margin-bottom: 8px; }

.products-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; }
.filters-sidebar { background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 20px; height: fit-content; position: sticky; top: 140px; }
.filters-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.filters-header h3 { font-size: 16px; font-weight: 600; }
.filter-group { margin-bottom: 24px; }
.filter-group:last-child { margin-bottom: 0; }
.filter-group h4 { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); margin-bottom: 10px; }
.filter-cat-link { display: flex; align-items: center; justify-content: space-between; padding: 7px 10px; border-radius: var(--radius-sm); font-size: 14px; cursor: pointer; transition: var(--transition); }
.filter-cat-link:hover, .filter-cat-link.active { background: var(--primary-light); color: var(--primary); }
.filter-cat-count { font-size: 11px; background: var(--bg-light); padding: 2px 7px; border-radius: 10px; color: var(--text-muted); }
.price-range { display: flex; align-items: center; gap: 8px; }
.price-range input { flex: 1; }
.filter-check { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 14px; }
.filter-check input { width: auto; }
.filters-mobile-btn, .filters-mobile-close { display: none; }

.products-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; gap: 12px; flex-wrap: wrap; }
.products-count { font-size: 14px; color: var(--text-muted); }
.toolbar-right { display: flex; align-items: center; gap: 10px; }
.sort-select { width: auto; padding: 8px 12px; font-size: 13px; }
.view-toggle { display: flex; gap: 4px; }
.view-btn { width: 34px; height: 34px; border: 1.5px solid var(--border); background: var(--bg); border-radius: var(--radius-sm); cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: var(--transition); }
.view-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.view-btn:hover, .view-btn.active { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }

/* ===== PAGINATION ===== */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 32px; flex-wrap: wrap; }
.page-btn {
  min-width: 38px; height: 38px; padding: 0 10px;
  border: 1.5px solid var(--border); background: var(--bg);
  border-radius: var(--radius-sm); cursor: pointer;
  font-size: 14px; font-weight: 500; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.page-btn:hover, .page-btn.active { border-color: var(--primary); background: var(--primary); color: #fff; }

/* ===== BENEFITS ===== */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.benefit-card { text-align: center; padding: 28px 20px; background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius); transition: var(--transition); }
.benefit-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.benefit-icon { width: 56px; height: 56px; background: var(--primary-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--primary); }
.benefit-icon svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.benefit-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.benefit-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ===== PROMO BANNER ===== */
.promo-banner { background: linear-gradient(135deg, var(--primary), var(--accent)); padding: 48px 0; color: #fff; }
.promo-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.promo-inner h2 { font-size: 26px; font-weight: 700; margin-bottom: 8px; }
.promo-inner p { opacity: .85; font-size: 15px; }
.promo-inner strong { font-weight: 700; background: rgba(255,255,255,.2); padding: 2px 8px; border-radius: 4px; }
.promo-inner .btn-primary { background: #fff; color: var(--primary); }
.promo-inner .btn-primary:hover { background: var(--primary-light); }

/* ===== CART DRAWER ===== */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  z-index: 300; opacity: 0; visibility: hidden; transition: var(--transition);
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: 0; width: 420px; max-width: 100vw;
  height: 100vh; background: var(--bg); z-index: 301;
  transform: translateX(100%); transition: transform .3s ease;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-header { padding: 20px 24px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.cart-drawer-header h3 { font-size: 18px; font-weight: 600; }
.close-btn { width: 36px; height: 36px; border: none; background: var(--bg-light); border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.close-btn:hover { background: var(--border); }
.close-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-drawer-footer { padding: 16px 24px; border-top: 1px solid var(--border); }

.cart-item { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.cart-item:last-child { border-bottom: none; }
.cart-item-img { width: 72px; height: 72px; border-radius: var(--radius-sm); overflow: hidden; background: var(--bg-light); flex-shrink: 0; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 14px; font-weight: 500; margin-bottom: 4px; }
.cart-item-price { font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.cart-item-qty { display: flex; align-items: center; gap: 8px; }
.qty-mini { width: 28px; height: 28px; border: 1px solid var(--border); background: var(--bg); border-radius: 4px; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; transition: var(--transition); }
.qty-mini:hover { border-color: var(--primary); color: var(--primary); }
.cart-item-remove { color: var(--text-muted); cursor: pointer; padding: 4px; transition: var(--transition); background: none; border: none; }
.cart-item-remove:hover { color: var(--danger); }
.cart-item-remove svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

.cart-total { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.cart-empty { text-align: center; padding: 48px 24px; }
.cart-empty svg { width: 64px; height: 64px; stroke: var(--border); fill: none; stroke-width: 1.5; margin: 0 auto 16px; }
.cart-empty p { color: var(--text-muted); margin-bottom: 16px; }

/* ===== QUICK VIEW MODAL ===== */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 400; opacity: 0; visibility: hidden; transition: var(--transition); }
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(.95);
  background: var(--bg); border-radius: var(--radius); padding: 32px;
  max-width: 780px; width: 95vw; max-height: 90vh; overflow-y: auto;
  z-index: 401; transition: var(--transition); opacity: 0; visibility: hidden;
  box-shadow: var(--shadow-lg);
}
.modal.open { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }
.modal-close { position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; border: none; background: var(--bg-light); border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.modal-close svg { width: 16px; height: 16px; stroke: var(--text); fill: none; stroke-width: 2; }

/* ===== CHECKOUT ===== */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; }
.form-section { background: var(--bg-light); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 24px; margin-bottom: 20px; }
.form-section h2 { font-size: 18px; font-weight: 600; margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 6px; color: var(--text-muted); }
.form-group:last-child { margin-bottom: 0; }

/* ===== ADDRESS AUTOCOMPLETE ===== */
.plz-city-row { display: grid; grid-template-columns: 140px 1fr; gap: 16px; margin-bottom: 16px; }
.plz-input-wrap { position: relative; }
.plz-input-wrap input { width: 100%; }

/* Animated underline bar — replaces ugly spinning circle */
.plz-input-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  border-radius: 0 0 6px 6px;
  transition: width 0.25s ease, background 0.25s ease;
  pointer-events: none;
}
.plz-input-wrap.plz-loading::after {
  width: 100%;
  background: linear-gradient(90deg, transparent, #e8531d 40%, #ff8c5a 60%, transparent);
  background-size: 200% 100%;
  animation: plzSweep 0.9s ease-in-out infinite;
}
.plz-input-wrap.plz-ok::after {
  width: 100%;
  background: #22c55e;
  animation: plzFadeOut 1.4s ease forwards;
}
.plz-input-wrap.plz-err::after {
  width: 100%;
  background: #ef4444;
  animation: plzFadeOut 1.8s ease forwards;
}
.plz-input-wrap.plz-err input {
  animation: plzShake 0.35s ease;
}
@keyframes plzSweep {
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}
@keyframes plzFadeOut {
  0%   { opacity: 1; }
  60%  { opacity: 1; }
  100% { opacity: 0; }
}
@keyframes plzShake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-5px); }
  40%       { transform: translateX(5px); }
  60%       { transform: translateX(-3px); }
  80%       { transform: translateX(3px); }
}

/* Stadt dropdown */
.city-input-wrap { position: relative; }
.city-dropdown {
  display: none; position: absolute; top: calc(100% + 2px); left: 0; right: 0; z-index: 201;
  background: #fff; border: 1.5px solid #e8531d; border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,.14); overflow: hidden;
}
.city-dropdown.open { display: block; }
.city-item {
  padding: 10px 14px; cursor: pointer; display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid #f3f3f3; transition: background 0.1s;
}
.city-item:last-child { border-bottom: none; }
.city-item:hover, .city-item.active { background: #fff8f5; }
.city-item-plz {
  font-size: 12px; font-weight: 700; color: #e8531d;
  background: #fff3ee; border: 1px solid #fcd4c0; border-radius: 5px;
  padding: 2px 7px; white-space: nowrap; flex-shrink: 0;
}
.city-item-info { display: flex; flex-direction: column; gap: 1px; min-width: 0; flex: 1; }
.city-item-name { font-size: 14px; font-weight: 600; color: #1a1a1a; word-break: break-word; line-height: 1.3; }
.city-item-sub  { font-size: 11px; color: #aaa; word-break: break-word; line-height: 1.3; }

/* Stadt: flash green on select */
.city-selected {
  animation: cityFill 0.7s ease;
}
@keyframes cityFill {
  0%   { box-shadow: 0 0 0 3px rgba(34,197,94,.3); border-color: #22c55e; }
  100% { box-shadow: none; }
}

.street-house-row { display: grid; grid-template-columns: 1fr 100px; gap: 12px; margin-bottom: 16px; }
.addr-autocomplete-wrap { position: relative; }
.addr-dropdown {
  display: none; position: absolute; top: calc(100% + 2px); left: 0; right: 0; z-index: 200;
  background: #fff; border: 1.5px solid #e8531d; border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,.14); max-height: 260px; overflow-y: auto;
}
.addr-dropdown.open { display: block; }
.addr-item {
  padding: 10px 14px; cursor: pointer; display: flex; flex-direction: column; gap: 2px;
  border-bottom: 1px solid #f3f3f3; transition: background 0.12s;
}
.addr-item:last-child { border-bottom: none; }
.addr-item:first-child { border-radius: 8px 8px 0 0; }
.addr-item:last-child { border-radius: 0 0 8px 8px; }
.addr-item:hover, .addr-item.active { background: #fff8f5; }
.addr-item-street { font-size: 14px; font-weight: 500; color: #1a1a1a; }
.addr-item-city { font-size: 12px; color: #999; }
.addr-item-type { font-size: 11px; color: #bbb; float: right; }
.addr-loading { padding: 12px 14px; font-size: 13px; color: #999; display: flex; align-items: center; gap: 8px; }
.addr-loading::before { content: ''; display: inline-block; width: 14px; height: 14px; border: 2px solid #e8531d; border-top-color: transparent; border-radius: 50%; animation: plzSpin 0.6s linear infinite; flex-shrink: 0; }
.addr-noresult { padding: 12px 14px; font-size: 13px; color: #bbb; }
.payment-options { display: flex; flex-direction: column; gap: 10px; }
.payment-opt { display: flex; align-items: center; gap: 10px; padding: 12px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); cursor: pointer; transition: var(--transition); }
.payment-opt:has(input:checked) { border-color: var(--primary); background: var(--primary-light); }
.payment-opt input { width: auto; }
.promo-row { display: flex; gap: 8px; }
.promo-row input { flex: 1; }
#promoResult { margin-top: 8px; font-size: 13px; }
.promo-success { color: var(--success); font-weight: 500; }
.promo-error { color: var(--danger); }

.checkout-summary { background: var(--bg-light); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 24px; height: fit-content; position: sticky; top: 140px; }
.checkout-summary h2 { font-size: 18px; font-weight: 600; margin-bottom: 20px; }
.summary-items { max-height: 300px; overflow-y: auto; margin-bottom: 16px; }
.summary-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.summary-totals { }
.summary-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; color: var(--text-muted); }
.summary-total { display: flex; justify-content: space-between; padding: 12px 0 0; border-top: 2px solid var(--border); font-size: 18px; font-weight: 700; }

/* ===== SUCCESS PAGE ===== */
.success-page { max-width: 480px; margin: 80px auto; text-align: center; padding: 40px; }
.success-icon { width: 80px; height: 80px; background: var(--success); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.success-icon svg { width: 40px; height: 40px; stroke: currentColor; fill: none; stroke-width: 2; }
.success-page h1 { font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.success-page p { color: var(--text-muted); margin-bottom: 28px; }
.success-actions { display: flex; gap: 12px; justify-content: center; }

/* ===== ACCOUNT PAGE ===== */
.account-layout { display: grid; grid-template-columns: 240px 1fr; gap: 32px; }
.account-sidebar { }
.account-nav { background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.account-nav-link { display: flex; align-items: center; gap: 10px; padding: 14px 16px; font-size: 14px; font-weight: 500; cursor: pointer; transition: var(--transition); border-bottom: 1px solid var(--border); }
.account-nav-link:last-child { border-bottom: none; }
.account-nav-link svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; color: var(--text-muted); }
.account-nav-link:hover, .account-nav-link.active { background: var(--primary-light); color: var(--primary); }
.account-nav-link:hover svg, .account-nav-link.active svg { color: var(--primary); }
.account-content { }
.auth-card { max-width: 420px; margin: 0 auto; }
.auth-card h2 { font-size: 24px; font-weight: 700; margin-bottom: 6px; }
.auth-card p { color: var(--text-muted); margin-bottom: 24px; font-size: 14px; }
.auth-toggle { font-size: 13px; text-align: center; margin-top: 16px; color: var(--text-muted); }
.auth-toggle a { color: var(--primary); font-weight: 500; cursor: pointer; }

.order-card { background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 20px; margin-bottom: 12px; }
.order-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.order-number { font-weight: 600; font-size: 15px; }
.order-date { font-size: 12px; color: var(--text-muted); }
.order-status { padding: 4px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.status-pending { background: #fef3c7; color: #d97706; }
.status-processing { background: #dbeafe; color: #1d4ed8; }
.status-shipped { background: #d1fae5; color: #059669; }
.status-delivered { background: #d1fae5; color: #059669; }
.status-cancelled { background: #fee2e2; color: #dc2626; }
.order-items-preview { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.order-total-line { font-size: 16px; font-weight: 700; color: var(--primary); }

/* ===== CONTACT PAGE ===== */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info { }
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-item svg { width: 22px; height: 22px; stroke: var(--primary); fill: none; stroke-width: 1.5; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: 14px; margin-bottom: 2px; }
.contact-form { background: var(--bg-light); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 28px; }
.contact-form h3 { font-size: 20px; font-weight: 600; margin-bottom: 20px; }

/* ===== ABOUT PAGE ===== */
.about-content { max-width: 720px; }
.about-text h2 { font-size: 24px; font-weight: 700; margin-bottom: 16px; }
.about-text h3 { font-size: 18px; font-weight: 600; margin: 24px 0 12px; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.7; }
.about-text ul { padding-left: 20px; color: var(--text-muted); line-height: 2; }

/* ===== RELATED PRODUCTS ===== */
.related-products { margin-top: 48px; }
.related-products h2 { font-size: 22px; font-weight: 700; margin-bottom: 20px; }

/* ===== CHAT WIDGET ===== */
.chat-widget { position: fixed; bottom: 28px; right: 28px; z-index: 200; }
.chat-toggle-btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--primary); color: #fff; border: none;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(232,93,4,.4);
  transition: var(--transition);
  position: relative;
}
.chat-toggle-btn:hover { background: var(--primary-dark); transform: scale(1.05); }
.chat-toggle-btn svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.chat-unread { position: absolute; top: -4px; right: -4px; width: 20px; height: 20px; background: var(--danger); border-radius: 50%; color: #fff; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; border: 2px solid #fff; }
.chat-panel {
  position: absolute; bottom: 70px; right: 0;
  width: 360px; background: var(--bg); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  display: none; flex-direction: column; overflow: hidden;
  max-height: 500px;
}
.chat-panel.open { display: flex; }
.chat-panel-header { background: var(--primary); padding: 16px; color: #fff; display: flex; align-items: center; justify-content: space-between; }
.chat-agent { display: flex; gap: 12px; align-items: center; }
.agent-avatar { width: 38px; height: 38px; background: rgba(255,255,255,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.agent-avatar svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }
.agent-name { font-weight: 600; font-size: 14px; }
.agent-status { font-size: 12px; color: rgba(255,255,255,.9); display: flex; align-items: center; gap: 5px; }
.admin-online-dot { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; display: inline-block; animation: onlinePulse 2s infinite; flex-shrink: 0; }
@keyframes onlinePulse { 0%,100%{box-shadow:0 0 0 0 rgba(74,222,128,.4)} 50%{box-shadow:0 0 0 4px rgba(74,222,128,0)} }
.status-dot { width: 7px; height: 7px; background: #4ade80; border-radius: 50%; display: inline-block; }
/* Редагування повідомлень клієнта */
.chat-msg-edit-btn { background: rgba(255,255,255,.22); border: 1px solid rgba(255,255,255,.35); border-radius: 3px; color: #fff; font-size: 11px; cursor: pointer; padding: 1px 5px; margin-left: 5px; opacity: 0; vertical-align: middle; transition: opacity .15s; }
.chat-msg.customer:hover .chat-msg-edit-btn { opacity: 1; }
.msg-edit-inline { width: 100%; border: 1.5px solid rgba(255,255,255,.5); border-radius: 6px; padding: 5px 8px; font-size: 13px; font-family: inherit; background: rgba(255,255,255,.15); color: #fff; resize: none; margin: 4px 0 2px; box-sizing: border-box; }
.msg-edit-inline:focus { outline: none; border-color: rgba(255,255,255,.8); }
.msg-edit-inline-actions { display: flex; gap: 6px; margin-bottom: 2px; }
.msg-edit-inline-actions button { padding: 2px 8px; font-size: 12px; border-radius: 4px; border: 1px solid rgba(255,255,255,.4); background: rgba(255,255,255,.15); color: #fff; cursor: pointer; }
.msg-edit-inline-actions button:hover { background: rgba(255,255,255,.3); }
.msg-edited-mark { font-size: 10px; opacity: .6; font-style: italic; margin-left: 4px; }
.chat-close-btn { background: none; border: none; color: rgba(255,255,255,.8); cursor: pointer; padding: 4px; }
.chat-close-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
.chat-init-form { padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.chat-init-form p { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.chat-messages { flex: 1; overflow-y: auto; padding: 12px; display: flex; flex-direction: column; gap: 8px; min-height: 200px; }
.chat-msg { max-width: 80%; padding: 8px 12px; border-radius: 12px; font-size: 13px; line-height: 1.4; }
.chat-msg.admin { background: var(--bg-light); border: 1px solid var(--border); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-msg.customer { background: var(--primary); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-msg-time { font-size: 10px; opacity: .6; margin-top: 4px; }
.chat-msg.system { max-width: 100%; align-self: center; background: #fff8e1; border: 1px dashed #f59e0b; border-radius: 8px; padding: 6px 12px; font-size: 12px; color: #92400e; text-align: center; }
/* Waiting bubble — "Wir antworten gleich..." */
#chatWaitingBubble { display: flex; flex-direction: column; gap: 4px; animation: waitBubbleIn 0.3s ease; }
@keyframes waitBubbleIn { from { opacity:0; transform:translateY(5px); } to { opacity:1; transform:translateY(0); } }
.waiting-dots { display: flex; gap: 4px; align-items: center; }
.waiting-dots span { width: 7px; height: 7px; border-radius: 50%; background: #9ca3af; animation: waitDot 1.2s infinite ease-in-out; }
.waiting-dots span:nth-child(2) { animation-delay: .2s; }
.waiting-dots span:nth-child(3) { animation-delay: .4s; }
@keyframes waitDot { 0%,80%,100%{transform:scale(0.6);opacity:.4} 40%{transform:scale(1);opacity:1} }
.waiting-text { font-size: 11px; color: #9ca3af; margin-top: 2px; }
.chat-input-area { padding: 8px 10px; border-top: 1px solid var(--border); display: flex; align-items: center; gap: 5px; }
.chat-input-area input[type="text"] { flex: 1; border-radius: 20px; padding: 8px 14px; font-size: 13px; min-width: 0; }
.chat-send-btn { width: 34px; height: 34px; background: var(--primary); border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; transition: var(--transition); padding: 0; }
.chat-send-btn:hover { background: var(--primary-dark); }
.chat-send-btn svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; }
/* Кнопки emoji та скріпки */
.chat-btn-icon { width: 30px; height: 30px; background: transparent; border: none; border-radius: 8px; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--text-muted); flex-shrink: 0; font-size: 15px; transition: background .15s, color .15s; padding: 0; }
.chat-btn-icon:hover { background: var(--bg-light); color: var(--primary); }
.chat-btn-icon svg { width: 16px; height: 16px; }
/* Emoji picker */
.chat-emoji-picker { display: grid; grid-template-columns: repeat(8, 1fr); gap: 2px; padding: 8px; background: #fff; border: 1px solid var(--border); border-radius: 10px; box-shadow: 0 4px 20px rgba(0,0,0,.12); position: relative; z-index: 200; max-height: 200px; overflow-y: auto; }
.emoji-btn { background: none; border: none; cursor: pointer; font-size: 18px; padding: 3px; border-radius: 5px; line-height: 1; transition: background .1s; }
.emoji-btn:hover { background: var(--bg-light); }
/* Зображення в повідомленнях */
.chat-msg-img { max-width: 200px; max-height: 200px; border-radius: 8px; cursor: pointer; display: block; object-fit: cover; transition: opacity .15s; }
.chat-msg-img:hover { opacity: .88; }
.chat-img-sending { font-size: 12px; opacity: .7; animation: waitDot 1.2s infinite ease-in-out; }
/* Staging area зображень */
.chat-img-staging { padding: 6px 10px; background: var(--bg-light,#f9fafb); border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; gap: 6px; align-items: center; flex-shrink: 0; }
.staged-thumb { position: relative; width: 52px; height: 52px; border-radius: 6px; overflow: hidden; flex-shrink: 0; border: 1px solid var(--border); }
.staged-thumb img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; display: block; }
.staged-remove { position: absolute; top: 2px; right: 2px; width: 16px; height: 16px; background: rgba(0,0,0,.6); color: #fff; border: none; border-radius: 50%; cursor: pointer; font-size: 10px; display: flex; align-items: center; justify-content: center; padding: 0; line-height: 1; }
.staged-remove:hover { background: #ef4444; }
/* Лайтбокс — стилі вище (рядок ~2685) */

/* ===== CHAT PROMO BUBBLE ===== */
@keyframes chatPromoIn {
  from { opacity: 0; transform: translateY(14px) scale(.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.chat-promo-bubble {
  position: absolute; bottom: 72px; right: 0;
  width: 240px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  border: 1px solid rgba(0,0,0,.08);
  padding: 16px 14px 14px;
  display: none; flex-direction: column; align-items: flex-start; gap: 10px;
  z-index: 201;
}
.chat-promo-bubble::after {
  content: '';
  position: absolute; bottom: -10px; right: 18px;
  width: 0; height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #fff;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,.06));
}
.chat-promo-bubble.show { display: flex; animation: chatPromoIn .35s cubic-bezier(.34,1.56,.64,1) forwards; }
.chat-promo-close {
  position: absolute; top: 8px; right: 8px;
  background: none; border: none; cursor: pointer;
  color: #9ca3af; font-size: 14px; line-height: 1; padding: 2px 4px;
  border-radius: 4px; transition: color .15s;
}
.chat-promo-close:hover { color: #374151; }
.chat-promo-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.chat-promo-avatar svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2; }
.chat-promo-text {
  font-size: 13px; line-height: 1.45; color: #111827;
  padding-right: 16px;
}
.chat-promo-btn {
  width: 100%;
  background: var(--primary); color: #fff;
  border: none; border-radius: 8px;
  padding: 9px 14px; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: background .15s;
  text-align: center;
}
.chat-promo-btn:hover { background: var(--primary-dark); }

/* ===== FOOTER ===== */
.footer { background: var(--secondary); color: rgba(255,255,255,.8); padding: 48px 0 0; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .logo-name { color: #fff; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 12px; line-height: 1.6; }
.footer-col h4 { color: #fff; font-size: 14px; font-weight: 600; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col li a { font-size: 13px; color: rgba(255,255,255,.6); transition: var(--transition); }
.footer-col li a:hover { color: #fff; }
.footer-col p { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 6px; }
.footer-bottom { padding: 16px 0; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.4); text-align: center; }

/* ===== LOADING ===== */
.loading { display: flex; justify-content: center; align-items: center; padding: 60px; }
.spinner { width: 36px; height: 36px; border: 3px solid var(--border); border-top-color: var(--primary); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.skeleton { background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: var(--radius-sm); }
@keyframes shimmer { to { background-position: -200% 0; } }

/* ===== TOAST NOTIFICATIONS ===== */
.toast-container { position: fixed; top: 20px; right: 20px; z-index: 500; display: flex; flex-direction: column; gap: 8px; }
.toast {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 14px 18px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; min-width: 280px; max-width: 380px;
  transform: translateX(100px); opacity: 0; transition: all .3s ease;
}
.toast.show { transform: translateX(0); opacity: 1; }
.toast-success { border-left: 4px solid var(--success); }
.toast-error { border-left: 4px solid var(--danger); }
.toast-info { border-left: 4px solid var(--primary); }
.toast svg { width: 18px; height: 18px; flex-shrink: 0; stroke: currentColor; fill: none; stroke-width: 2; }
.toast-success svg { stroke: var(--success); }
.toast-error svg { stroke: var(--danger); }
.toast-info svg { stroke: var(--primary); }

/* ===== EMPTY STATE ===== */
.empty-state { text-align: center; padding: 80px 20px; }
.empty-state svg { width: 72px; height: 72px; stroke: var(--border); fill: none; stroke-width: 1.5; margin: 0 auto 20px; }
.empty-state h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.empty-state p { color: var(--text-muted); margin-bottom: 20px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .products-layout { grid-template-columns: 220px 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .checkout-layout { grid-template-columns: 1fr 320px; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .header-top { display: none; }
  .nav-desktop,
  .nav-desktop.nav-desktop-flat { display: none !important; }
  .mobile-menu-btn { display: flex; }
  .header-main { padding: 10px 0; }

  .hero { padding: 40px 0; }
  .hero .container { flex-direction: column; gap: 32px; }
  .hero-image { display: none; }
  .hero-stats { gap: 20px; }
  .hero-stat-num { font-size: 22px; }

  .section { padding: 40px 0; }
  .section-title { font-size: 22px; }

  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .products-grid.list-view { grid-template-columns: 1fr; }
  .products-grid.list-view .product-img { width: 120px; height: 120px; }

  .products-layout { grid-template-columns: 1fr; }
  .filters-sidebar {
    position: fixed; top: 0; left: -100%; width: 280px; height: 100vh;
    z-index: 250; overflow-y: auto; border-radius: 0;
    transition: left .3s ease;
  }
  .filters-sidebar.mobile-open { left: 0; }
  .filters-mobile-btn, .filters-mobile-close { display: flex; }

  .product-detail { grid-template-columns: 1fr; gap: 24px; }
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .account-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .cart-drawer { width: 100vw; }
  .chat-panel { width: calc(100vw - 40px); right: -10px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .promo-inner { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-lg { width: 100%; justify-content: center; }
  .products-grid.list-view .product-card { flex-direction: column; }
  .products-grid.list-view .product-img { width: 100%; }
}

@media (max-width: 480px) {
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .product-info { padding: 12px; }
  .product-name { font-size: 13px; }
  .price-current { font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .success-actions { flex-direction: column; }
}

/* ===== 2026 STORE VISUAL REFRESH ===== */
:root {
  --primary: #e45b23;
  --primary-dark: #b63d14;
  --primary-light: #fff0e7;
  --secondary: #171411;
  --accent: #ffb15c;
  --cream: #fff8f2;
  --ink: #18110d;
  --soft-shadow: 0 18px 60px rgba(70,34,18,.14);
  --radius: 8px;
  --radius-sm: 6px;
}

body {
  background:
    linear-gradient(180deg, #fffaf5 0, #fff 420px),
    #fff;
  color: var(--ink);
}

.container { max-width: 1180px; }

.header {
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(24,17,13,.08);
}

.header-top {
  background: #171411;
  color: #fff;
  padding: 8px 0;
}

.header-top-inner::before {
  content: 'Безкоштовна доставка від €150';
  color: #ffd7b4;
  font-weight: 700;
  margin-right: auto;
}

.header-working { display: none; }
.header-main { padding: 10px 0; }
.logo-icon {
  border-radius: 8px;
  background: linear-gradient(135deg, #ed6a25, #9d2f14);
  box-shadow: 0 10px 24px rgba(228,91,35,.24);
}
.logo-name { color: #211713; letter-spacing: 0; }

.nav-link {
  border-radius: 999px;
  font-weight: 650;
}

.header-btn {
  background: #fff6ef;
  border: 1px solid #f3ddce;
}

.btn {
  border-radius: 999px;
  min-height: 42px;
  font-weight: 750;
  letter-spacing: 0;
}
.btn-primary {
  background: linear-gradient(135deg, #f06b27, #c94617);
  box-shadow: 0 12px 28px rgba(228,91,35,.26);
}
.btn-primary:hover { background: linear-gradient(135deg, #d94f18, #ad3612); }

.hero {
  min-height: calc(100svh - 76px);
  display: flex;
  align-items: center;
  color: #fff;
  padding: 56px 0;
  background: #171411;
  isolation: isolate;
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}
.hero-bg {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(14,10,8,.86) 0%, rgba(14,10,8,.66) 38%, rgba(14,10,8,.24) 72%, rgba(14,10,8,.44) 100%),
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.28));
}
.hero .container {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(220px, 320px);
  justify-content: space-between;
  align-items: end;
  gap: 32px;
}
.hero-content { max-width: 620px; }
.hero-badge {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.28);
  color: #ffd9bd;
  border-radius: 999px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
}
.hero-title {
  max-width: 620px;
  font-size: clamp(2.4rem, 6vw, 4.9rem);
  line-height: .98;
  letter-spacing: 0;
  margin-bottom: 18px;
}
.hero-desc {
  max-width: 520px;
  color: rgba(255,255,255,.84);
  font-size: clamp(16px, 2vw, 20px);
  margin-bottom: 28px;
}
.hero-actions {
  margin-bottom: 22px;
}
.hero-actions .btn-outline {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.42);
  backdrop-filter: blur(8px);
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-trust span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  font-size: 13px;
  color: rgba(255,255,255,.9);
}
.hero-offer {
  align-self: end;
  background: rgba(255,255,255,.92);
  color: #211713;
  border-radius: 8px;
  padding: 18px;
  max-width: 300px;
  box-shadow: 0 22px 70px rgba(0,0,0,.28);
}
.hero-offer-kicker {
  color: var(--primary);
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: 8px;
}
.hero-offer-title {
  font-size: 21px;
  font-weight: 850;
  line-height: 1.1;
}
.hero-offer-text {
  color: #6c5b51;
  margin-top: 8px;
  font-size: 13px;
}
.hero-image, .hero-fire-anim { display: none; }

.section { padding: 54px 0; }
.section-header {
  align-items: end;
  gap: 16px;
}
.section-title {
  font-size: clamp(24px, 4vw, 36px);
  color: #211713;
  letter-spacing: 0;
}
.section-sub { font-size: 15px; }

.cat-grid {
  grid-template-columns: repeat(5, minmax(140px, 1fr));
  gap: 12px;
}
.cat-card {
  min-height: 132px;
  border: 1px solid #f0dfd2;
  background: linear-gradient(180deg, #fff, #fff7f0);
  box-shadow: 0 12px 30px rgba(77,43,24,.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cat-card:hover {
  box-shadow: 0 18px 46px rgba(77,43,24,.16);
}
.cat-icon {
  width: 48px;
  height: 48px;
  background: #211713;
  color: #ffba78;
  border-radius: 999px;
}

.trust-strip {
  background: #211713;
  color: #fff;
}
.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}
.trust-item {
  padding: 20px 18px;
  background: rgba(255,255,255,.045);
}
.trust-item strong {
  display: block;
  color: #ffd6b3;
  font-size: 18px;
  margin-bottom: 3px;
}
.trust-item span {
  color: rgba(255,255,255,.68);
  font-size: 13px;
}

.products-grid {
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px;
}
.product-card {
  border: 1px solid #eee0d7;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(67,36,20,.08);
}
.product-card:hover {
  border-color: #edb18e;
  box-shadow: var(--soft-shadow);
  transform: translateY(-4px);
}
.product-img {
  aspect-ratio: 1 / 1;
  background: #f8f2ec;
}
.product-badges {
  top: 12px;
  left: 12px;
}
.badge {
  border-radius: 999px;
  padding: 5px 9px;
  letter-spacing: 0;
}
.product-actions { opacity: 1; }
.product-action-btn {
  border-radius: 999px;
  background: rgba(255,255,255,.92);
}
.product-info {
  padding: 14px;
}
.product-cat {
  letter-spacing: 0;
  text-transform: none;
  color: #a26a4f;
  font-weight: 700;
}
.product-name {
  min-height: 40px;
  font-size: 15px;
  line-height: 1.3;
}
.product-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: -2px 0 10px;
  color: #8a6a5b;
  font-size: 12px;
}
.product-rating {
  color: #f59e0b;
  white-space: nowrap;
  font-weight: 800;
}
.price-current {
  color: #211713;
  font-size: 22px;
}
.product-stock {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  background: #effaf2;
  margin-bottom: 12px;
}
.out-of-stock { background: #fff1f1; }
.product-add-btn {
  min-height: 42px;
}

.benefits-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.benefit-card {
  text-align: left;
  border: 1px solid #eee0d7;
  background: #fffaf5;
  box-shadow: 0 10px 26px rgba(67,36,20,.06);
}
.benefit-icon {
  margin: 0 0 14px;
  border-radius: 999px;
}

.promo-banner {
  background:
    linear-gradient(90deg, rgba(23,20,17,.94), rgba(109,43,18,.84)),
    url('/assets/biovohon-hero-fireplace.png') center / cover;
}
.promo-inner .btn-primary {
  color: #211713;
  box-shadow: none;
}

.cart-drawer {
  border-radius: 12px 0 0 12px;
}
.checkout-summary,
.form-section,
.filters-sidebar,
.contact-form,
.account-nav,
.order-card {
  border-color: #eee0d7;
  box-shadow: 0 12px 30px rgba(67,36,20,.06);
}

/* Mobile Shop/Warenkorb bar — fully removed by user request */
.mobile-shop-bar { display: none !important; }

@media (max-width: 900px) {
  .hero {
    min-height: 74svh;
    padding: 44px 0 34px;
  }
  .hero-photo img { object-position: 68% center; }
  .hero-bg {
    background:
      linear-gradient(180deg, rgba(14,10,8,.56) 0%, rgba(14,10,8,.58) 42%, rgba(14,10,8,.9) 100%),
      linear-gradient(90deg, rgba(14,10,8,.28), rgba(14,10,8,.28));
  }
  .hero .container {
    min-height: 64svh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 18px;
  }
  .hero-title {
    font-size: clamp(2.2rem, 11vw, 3.6rem);
  }
  .hero-desc {
    max-width: 92%;
    font-size: 16px;
  }
  .hero-offer {
    display: none;
  }
  .hero-trust {
    gap: 6px;
  }
  .hero-trust span {
    font-size: 12px;
    padding: 7px 10px;
  }
  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
  }
  .cat-card {
    min-width: 142px;
    min-height: 116px;
    scroll-snap-align: start;
    padding: 18px 12px;
  }
  .trust-strip .container,
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  body { padding-bottom: 76px; }
  .header-main-inner { gap: 10px; }
  .logo-icon { width: 38px; height: 38px; }
  .logo-name { font-size: 18px; }
  .hero-actions {
    width: 100%;
    flex-direction: row;
    gap: 8px;
  }
  .hero-actions .btn-lg {
    width: auto;
    flex: 1;
    padding: 12px 14px;
    font-size: 14px;
  }
  .section {
    padding: 36px 0;
  }
  .section-header {
    margin-bottom: 18px;
  }
  .product-card {
    border-radius: 8px;
  }
  .product-info {
    padding: 11px;
  }
  .product-name {
    min-height: 38px;
    font-size: 13px;
  }
  .product-card-meta {
    font-size: 11px;
  }
  .price-current {
    font-size: 18px;
  }
  .price-old {
    font-size: 12px;
  }
  .product-add-btn {
    min-height: 38px;
    font-size: 12px;
    padding: 8px 10px;
  }
  .chat-widget {
    bottom: 88px;       /* default: above mobile-shop-bar */
    right: 16px;
  }
  /* On product page the mobile-shop-bar is hidden — drop chat closer to bottom edge so it doesn't cover thumbnails */
  body.product-active .chat-widget {
    bottom: calc(env(safe-area-inset-bottom, 0px) + 4px) !important;
    right: 14px !important;
  }
  .mobile-shop-bar {
    display: none !important;       /* removed by user request */
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 10px;
    z-index: 260;
    grid-template-columns: 1fr 1.15fr;
    gap: 8px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 14px 44px rgba(23,20,17,.24);
    backdrop-filter: blur(14px);
  }
  .mobile-shop-bar button {
    border: none;
    min-height: 46px;
    border-radius: 999px;
    background: #fff3ea;
    color: #211713;
    font-weight: 800;
    font-family: inherit;
  }
  .mobile-shop-bar .mobile-shop-primary {
    background: linear-gradient(135deg, #f06b27, #c94617);
    color: #fff;
  }
  .mobile-shop-primary span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    margin-left: 4px;
    border-radius: 999px;
    background: rgba(255,255,255,.22);
  }

  body.home-active .mobile-shop-bar {
    display: none;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .hero {
    min-height: 78svh;
  }
  .hero-photo img {
    object-position: 70% center;
  }
  .hero-title {
    max-width: 360px;
  }
  .hero-badge {
    font-size: 12px;
  }
  .cat-grid {
    display: flex;
  }
  .cat-card {
    width: 42vw;
    flex: 0 0 42vw;
  }
  .trust-strip .container {
    grid-template-columns: 1fr 1fr;
  }
  .trust-item {
    padding: 16px 12px;
  }
  .trust-item strong {
    font-size: 15px;
  }
  .trust-item span {
    font-size: 11px;
  }
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .benefit-card {
    padding: 18px 12px;
  }
  .benefit-card p {
    font-size: 12px;
  }
  .promo-inner h2 {
    font-size: 22px;
  }
}

/* ===== CONVERSION SECTIONS ===== */
.shop-scenes {
  background:
    linear-gradient(180deg, #fff 0%, #fff7f0 100%);
}

.scene-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 16px;
}

.scene-card {
  min-height: 360px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  background: #211713;
  box-shadow: var(--soft-shadow);
}

.scene-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .45s ease;
}

.scene-card:hover::before { transform: scale(1.04); }

.scene-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17,12,9,.05) 0%, rgba(17,12,9,.78) 100%),
    linear-gradient(90deg, rgba(17,12,9,.42), rgba(17,12,9,.08));
}

.scene-wall::before { background-image: url('/assets/biovohon-hero-fireplace.png'); }
.scene-floor::before { background-image: url('/assets/biovohon-terrace-fireplace.png'); }
.scene-kit::before { background-image: url('/assets/biovohon-tabletop-kit.png'); }

.scene-content {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.scene-content span {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.24);
  color: #ffd7b4;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 10px;
}

.scene-content h3 {
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.05;
  margin-bottom: 10px;
}

.scene-content p {
  max-width: 360px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  margin-bottom: 18px;
}

.scene-content .btn {
  min-height: 40px;
  padding: 9px 16px;
}

.bundle-section {
  background: #211713;
  color: #fff;
}

.bundle-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
  gap: 28px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  padding: 28px;
}

.bundle-kicker {
  color: #ffd1a8;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 850;
  letter-spacing: .08em;
}

.bundle-copy h2 {
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1;
  margin: 10px 0 14px;
}

.bundle-copy p {
  max-width: 560px;
  color: rgba(255,255,255,.74);
  font-size: 16px;
  margin-bottom: 18px;
}

.bundle-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.bundle-points span {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.88);
  font-size: 13px;
}

.bundle-media {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
}

.bundle-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.safety-section {
  background: #fff8f2;
}

.safety-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.safety-step {
  position: relative;
  min-height: 210px;
  padding: 20px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #eee0d7;
  box-shadow: 0 12px 28px rgba(67,36,20,.07);
}

.safety-step strong {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #211713;
  color: #ffd1a8;
  margin-bottom: 18px;
}

.safety-step h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #211713;
}

.safety-step p {
  color: #7a6255;
  font-size: 14px;
}

@media (max-width: 900px) {
  .scene-grid,
  .bundle-card,
  .safety-steps {
    grid-template-columns: 1fr;
  }
  .scene-card {
    min-height: 310px;
  }
  .bundle-card {
    padding: 18px;
  }
  .bundle-media {
    order: -1;
  }
}

@media (max-width: 480px) {
  .scene-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
  }
  .scene-card {
    flex: 0 0 82vw;
    min-height: 360px;
    scroll-snap-align: start;
  }
  .scene-content {
    padding: 18px;
  }
  .scene-content p {
    font-size: 13px;
  }
  .bundle-card {
    margin: 0 -2px;
  }
  .bundle-copy h2 {
    font-size: 32px;
  }
  .bundle-copy p {
    font-size: 14px;
  }
  .safety-steps {
    gap: 10px;
  }
  .safety-step {
    min-height: auto;
    padding: 16px;
  }
}

/* ===== UNIFIED INNER PAGES THEME ===== */
#mainContent {
  background:
    radial-gradient(circle at 8% 4%, rgba(228,91,35,.08), transparent 280px),
    linear-gradient(180deg, #fffaf5 0, #fff 520px);
}

.page:not(#page-home) {
  padding-top: 28px;
}

.page:not(#page-home) > .container {
  position: relative;
}

.page-header {
  position: relative;
  padding: 28px;
  margin-bottom: 26px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(33,23,19,.94), rgba(105,43,20,.78)),
    url('/assets/biovohon-hero-fireplace.png') center / cover;
  color: #fff;
  box-shadow: var(--soft-shadow);
}

.page-header h1 {
  color: #fff;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1;
  margin-bottom: 12px;
}

.page-header .breadcrumb,
.page-header .breadcrumb span,
.page-header .breadcrumb a {
  color: rgba(255,255,255,.78);
}

.breadcrumb {
  flex-wrap: wrap;
}

.products-layout,
.checkout-layout,
.account-layout,
.contact-layout,
.product-detail {
  align-items: start;
}

.filters-sidebar,
.products-toolbar,
.product-card,
.product-carousel,
.product-thumb,
.product-meta,
.product-specs-section,
.product-faq-section,
.checkout-summary,
.form-section,
.account-nav,
.order-card,
.contact-form,
.modal,
.cart-drawer,
.auth-card,
.contact-item {
  border-color: #eee0d7;
  background: rgba(255,255,255,.94);
  box-shadow: 0 12px 30px rgba(67,36,20,.07);
}

.products-toolbar {
  padding: 12px;
  border: 1px solid #eee0d7;
  border-radius: 8px;
}

.filters-sidebar {
  background: linear-gradient(180deg, #fff, #fff8f2);
}

.filters-header h3,
.filter-group h4,
.checkout-summary h2,
.form-section h2,
.contact-form h3 {
  color: #211713;
}

.filter-group h4,
.product-detail-cat,
.product-cat {
  letter-spacing: 0;
}

.filter-cat-link,
.payment-opt,
.account-nav-link,
.summary-item,
.summary-row,
.product-meta-row,
.specs-table td,
.faq-item {
  border-color: #f0dfd2;
}

.filter-cat-link:hover,
.filter-cat-link.active,
.account-nav-link:hover,
.account-nav-link.active,
.payment-opt:has(input:checked),
.view-btn:hover,
.view-btn.active {
  background: #fff0e7;
  color: #d94f18;
}

input,
textarea,
select {
  border-color: #ead8cb;
  background: #fffdf9;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #e45b23;
  box-shadow: 0 0 0 4px rgba(228,91,35,.12);
}

.product-detail {
  padding: 22px;
  border-radius: 8px;
  background: rgba(255,255,255,.72);
  border: 1px solid #f0dfd2;
  box-shadow: var(--soft-shadow);
}

.product-carousel {
  background: linear-gradient(180deg, #fffaf5, #f5ebe2);
}

.carousel-slide img {
  padding: 10px;
}

.product-thumbs {
  padding: 8px;
  border-radius: 8px;
  background: #fff8f2;
  border: 1px solid #f0dfd2;
}

.product-info-detail {
  padding: 4px 0;
}

.product-detail-cat {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff0e7;
  color: #c94617;
  font-weight: 800;
  text-transform: none;
  margin-bottom: 14px;
}

.product-detail-name {
  color: #211713;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: 0;
  margin-bottom: 10px;
  line-height: 1.2;
}

.product-detail-price .price-current {
  color: #211713;
  font-size: clamp(30px, 5vw, 44px);
}

.product-desc {
  color: #6e584c;
  font-size: 16px;
}

.product-meta {
  background: #fff8f2;
  border: 1px solid #f0dfd2;
}

.qty-btn,
.qty-input,
.view-btn,
.page-btn,
.close-btn,
.qty-mini {
  border-color: #ead8cb;
  background: #fffdf9;
}

.section-title-sm {
  color: #211713;
  border-bottom-color: #f0dfd2;
}

.product-specs-section,
.product-faq-section {
  padding: 24px;
  border-radius: 8px;
}

.specs-table {
  overflow: hidden;
  border-radius: 10px;
}

.faq-question {
  color: #211713;
}

.checkout-summary,
.form-section,
.contact-form {
  background: linear-gradient(180deg, #fff, #fff8f2);
}

.summary-total {
  border-top-color: #ead8cb;
  color: #211713;
}

.cart-drawer {
  background: #fffaf5;
}

.cart-overlay {
  z-index: 11990 !important;
}

.cart-drawer {
  z-index: 12000 !important;
  background: #fffaf5 !important;
}

.cart-drawer-header,
.cart-drawer-body,
.cart-drawer-footer {
  background: #fffaf5 !important;
}

@media (max-width: 768px) {
  .cart-drawer {
    inset: 0 0 auto auto !important;
    width: 100vw !important;
    height: 100dvh !important;
    max-width: 100vw !important;
    border-radius: 0 !important;
  }

  .cart-drawer-header {
    min-height: 64px;
    padding: calc(env(safe-area-inset-top, 0px) + 14px) 18px 14px !important;
  }

  .cart-drawer-body {
    padding-top: 20px !important;
  }
}

.cart-drawer-header,
.cart-drawer-footer,
.cart-item {
  border-color: #ead8cb;
}

.cart-item-img {
  background: #f8efe7;
}

.modal {
  background: #fffaf5;
  border: 1px solid #eee0d7;
}

.success-page,
.auth-card,
.about-content,
.account-content {
  padding: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  border: 1px solid #eee0d7;
  box-shadow: var(--soft-shadow);
}

.about-text h2,
.about-text h3 {
  color: #211713;
}

.contact-item {
  padding: 18px;
  border: 1px solid #eee0d7;
  border-radius: 8px;
}

.contact-item svg {
  stroke: #e45b23;
}

.pagination {
  padding-bottom: 12px;
}

.page-btn:hover,
.page-btn.active {
  border-color: #e45b23;
  background: #e45b23;
}

@media (max-width: 768px) {
  .page:not(#page-home) {
    padding-top: 16px;
  }
  .page-header {
    padding: 22px 18px;
    margin-bottom: 18px;
  }
  .products-toolbar {
    position: sticky;
    top: 58px;
    z-index: 20;
    background: rgba(255,250,245,.95);
    backdrop-filter: blur(12px);
  }
  .product-detail {
    padding: 12px;
  }
  .product-specs-section,
  .product-faq-section,
  .success-page,
  .auth-card,
  .about-content,
  .account-content {
    padding: 18px;
  }
}

/* ===== MOBILE HEADER LIKE PREMIUM SHOP REFERENCES ===== */
@media (max-width: 768px) {
  .header {
    box-shadow: 0 1px 0 rgba(24,17,13,.08);
  }

  .mobile-promo-strip {
    display: grid;
    grid-template-columns: 34px 1fr 34px;
    align-items: center;
    min-height: 44px;
    padding: 0 8px;
    background: #fff;
    color: #171411;
    border-bottom: 1px solid #ead8cb;
  }

  .mobile-promo-strip strong {
    text-align: center;
    font-size: 14px;
    line-height: 1.1;
    font-weight: 850;
  }

  .mobile-promo-strip button {
    width: 34px;
    height: 34px;
    border: none;
    background: transparent;
    color: #171411;
    font-size: 28px;
    line-height: 1;
    font-family: inherit;
    cursor: pointer;
  }

  .header-main {
    padding: 0;
    background: rgba(255,255,255,.94);
  }

  .header-main-inner {
    position: relative;
    min-height: 64px;
    display: grid;
    grid-template-columns: 96px 1fr 96px;
    align-items: center;
    gap: 0;
  }

  .logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    gap: 7px;
  }

  .logo-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    box-shadow: none;
  }

  .logo-icon svg {
    width: 23px;
    height: 23px;
  }

  .logo-name {
    font-size: 18px;
    line-height: 1;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .logo-sub {
    display: none;
  }

  .header-actions {
    display: grid;
    grid-template-columns: 42px 42px 1fr 42px 42px;
    align-items: center;
    gap: 4px;
    position: absolute;
    inset: 0;
    pointer-events: none;
    margin: 0;
  }

  .mobile-menu-btn {
    display: flex;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    margin-left: 0;
  }

  #searchToggle {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
    margin-left: 0;
  }

  .account-mobile-btn {
    display: flex;
    grid-column: 4;
    grid-row: 1;
    justify-self: end;
    margin-right: 0;
  }

  #cartBtn {
    grid-column: 5;
    grid-row: 1;
    justify-self: end;
    margin-right: 0;
  }

  .header-btn {
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    color: #171411;
    pointer-events: auto;
  }

  .header-btn:hover {
    background: #fff0e7;
  }

  .header-btn svg {
    width: 24px;
    height: 24px;
  }

  .cart-badge {
    top: 2px;
    right: 0;
    width: 19px;
    height: 19px;
    background: #ffbd45;
    color: #171411;
    border: 2px solid #fff;
  }

  .search-bar {
    border-top: 1px solid #ead8cb;
    box-shadow: 0 10px 30px rgba(67,36,20,.08);
  }

  .mobile-menu {
    border-top: 1px solid #ead8cb;
    box-shadow: 0 18px 50px rgba(67,36,20,.12);
  }

  .hero {
    min-height: calc(78svh - 108px);
  }

  .products-toolbar {
    top: 108px;
  }
}

@media (max-width: 390px) {
  .mobile-promo-strip strong {
    font-size: 12px;
  }

  .logo-name {
    font-size: 15px;
    letter-spacing: .06em;
  }

  .header-btn {
    width: 38px;
  }

  #searchToggle {
    margin-left: 0;
  }

  .account-mobile-btn {
    margin-right: 0;
  }
}

/* ===== PREMIUM LUXURY FIREPLACE DIRECTION V2 ===== */
:root {
  --lux-black: #11100e;
  --lux-charcoal: #1b1815;
  --lux-ink: #25201c;
  --lux-warm: #fbf7f0;
  --lux-stone: #e8ded2;
  --lux-muted: #8a7d70;
  --lux-amber: #d78942;
  --lux-ember: #b95325;
  --lux-line: rgba(40, 30, 23, .12);
  --lux-shadow: 0 24px 80px rgba(37, 25, 17, .13);
}

body {
  background:
    linear-gradient(180deg, #fbf7f0 0%, #f5eee4 42%, #fbf7f0 100%);
  color: var(--lux-ink);
}

.header {
  background: rgba(251, 247, 240, .92);
  border-bottom: 1px solid rgba(40, 30, 23, .08);
  backdrop-filter: blur(18px);
}

.header-top {
  background: var(--lux-black);
  color: rgba(255,255,255,.72);
}

.header-main {
  background: rgba(251, 247, 240, .9);
}

.logo-icon,
.btn-primary,
.product-badge.sale,
.mobile-shop-link.primary {
  background: linear-gradient(135deg, #2c211a 0%, #9f4a22 54%, #df9b4d 100%);
}

.logo-name,
.nav-link,
.section-title,
.product-title,
.product-info h1 {
  color: var(--lux-ink);
}

.btn {
  border-radius: 999px;
  letter-spacing: .01em;
}

.btn-primary {
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  box-shadow: 0 18px 42px rgba(140, 63, 25, .28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 55px rgba(140, 63, 25, .34);
}

.btn-outline {
  background: rgba(255,255,255,.62);
  color: var(--lux-ink);
  border-color: rgba(37, 32, 28, .2);
  backdrop-filter: blur(12px);
}

.hero .btn-outline,
.bundle-section .btn-outline,
.promo-banner .btn-outline {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.42);
}

.section {
  padding: 104px 0;
}

.section-header {
  align-items: end;
  gap: 24px;
  margin-bottom: 38px;
}

.section-kicker,
.hero-badge,
.bundle-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--lux-amber);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section-title {
  max-width: 820px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: .96;
  font-weight: 800;
}

.section-sub {
  max-width: 620px;
  color: var(--lux-muted);
  font-size: 17px;
  line-height: 1.7;
}

.hero {
  min-height: calc(100svh - 116px);
  background: var(--lux-black);
  overflow: hidden;
}

.hero-photo img {
  filter: saturate(.96) contrast(1.04);
}

.hero-bg {
  background:
    radial-gradient(circle at 76% 55%, rgba(224, 135, 60, .26), transparent 28%),
    linear-gradient(90deg, rgba(13, 12, 10, .9) 0%, rgba(13, 12, 10, .62) 42%, rgba(13, 12, 10, .18) 100%),
    linear-gradient(180deg, rgba(13, 12, 10, .08), rgba(13, 12, 10, .64));
}

.hero-content {
  max-width: 760px;
  padding-top: 44px;
}

.hero-title {
  max-width: 900px;
  color: #fffaf2;
  font-size: clamp(44px, 7.4vw, 104px);
  line-height: .9;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-desc {
  max-width: 620px;
  color: rgba(255, 249, 239, .76);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.65;
}

.hero-trust {
  color: rgba(255,255,255,.74);
  gap: 10px;
}

.hero-trust span {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  padding: 10px 14px;
}

.hero-offer {
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 44px;
  width: min(360px, calc(100% - 48px));
  background: rgba(19, 17, 15, .48);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(22px);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0,0,0,.28);
}

.hero-offer-kicker {
  color: var(--lux-amber);
  letter-spacing: .14em;
}

.hero-offer-title {
  color: #fff8ee;
}

.hero-offer-text {
  color: rgba(255,255,255,.72);
}

.trust-strip {
  margin: 0;
  background: var(--lux-black);
  color: #fff;
  border: 0;
}

.trust-strip .container {
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.trust-item strong {
  color: #fff7ed;
}

.trust-item span {
  color: rgba(255,255,255,.62);
}

.luxury-story {
  background: var(--lux-black);
  color: #fff8ef;
  padding: 120px 0;
}

.luxury-story-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
}

.luxury-story-copy h2 {
  margin: 16px 0 22px;
  font-size: clamp(38px, 6vw, 78px);
  line-height: .94;
  text-wrap: balance;
}

.luxury-story-copy p {
  max-width: 560px;
  color: rgba(255, 249, 239, .68);
  font-size: 18px;
  line-height: 1.75;
}

.luxury-story-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.luxury-story-points span {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.78);
}

.luxury-story-media {
  position: relative;
  min-height: 520px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 34px 100px rgba(0,0,0,.42);
}

.luxury-story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(17,16,14,.58));
}

.luxury-story-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

.categories-section,
.bg-light,
.safety-section {
  background: #fbf7f0;
}

.cat-card,
.product-card,
.benefit-card,
.safety-step,
.filters-sidebar,
.product-info,
.product-specs-section,
.product-faq-section,
.cart-summary,
.checkout-form,
.modal {
  border-radius: 8px;
  border: 1px solid var(--lux-line);
  background: rgba(255, 252, 247, .82);
  box-shadow: 0 20px 70px rgba(47, 34, 24, .08);
}

.cat-card,
.product-card {
  overflow: hidden;
}

.cat-card:hover,
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--lux-shadow);
  border-color: rgba(181, 83, 38, .26);
}

.product-image {
  background:
    radial-gradient(circle at 50% 70%, rgba(214, 126, 55, .18), transparent 42%),
    #eee4d7;
}

.product-card .product-info {
  border: 0;
  box-shadow: none;
  background: transparent;
  border-radius: 0;
}

.product-price,
.current-price,
.cart-item-price,
.order-total {
  color: var(--lux-ember);
}

.bundle-section {
  background: linear-gradient(180deg, #fbf7f0 0%, #1a1714 0%);
  color: #fff9f0;
}

.bundle-card {
  border-radius: 8px;
  background:
    linear-gradient(105deg, rgba(18,16,14,.94) 0%, rgba(28,21,17,.86) 48%, rgba(88,45,24,.58) 100%),
    var(--lux-black);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 34px 100px rgba(37, 25, 17, .28);
}

.bundle-copy h2 {
  color: #fff6ea;
  font-size: clamp(34px, 5vw, 62px);
  line-height: .98;
}

.bundle-copy p,
.bundle-points span {
  color: rgba(255,255,255,.7);
}

.bundle-media {
  border-radius: 8px;
  overflow: hidden;
}

.benefits-grid {
  gap: 18px;
}

.benefit-card {
  padding: 28px;
}

.benefit-icon {
  background: rgba(215, 137, 66, .12);
  color: var(--lux-ember);
}

.safety-step strong {
  color: var(--lux-amber);
  font-size: 13px;
  letter-spacing: .12em;
}

.promo-banner {
  background: var(--lux-black);
}

.promo-inner {
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(20,18,16,.92), rgba(72,39,22,.72)),
    url('/assets/biovohon-fire-detail.png') center/cover;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 28px 90px rgba(0,0,0,.32);
}

.page:not(#page-home) {
  background:
    linear-gradient(180deg, rgba(17,16,14,.96) 0, rgba(17,16,14,.96) 260px, #fbf7f0 260px);
}

.page-header {
  color: #fff8ee;
  border: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(90deg, rgba(20,18,16,.8), rgba(70,39,22,.42)),
    url('/assets/biovohon-luxury-terrace-hero.png') center/cover;
  box-shadow: 0 24px 90px rgba(0,0,0,.18);
}

.page-header h1 {
  color: #fff8ee;
}

.breadcrumb,
.breadcrumb a {
  color: rgba(255,255,255,.72);
}

.products-toolbar,
.filters-sidebar,
.product-detail {
  color: var(--lux-ink);
}

.filter-checkbox input:checked + span,
.page-btn:hover,
.page-btn.active {
  border-color: var(--lux-amber);
  background: var(--lux-amber);
}

.product-detail {
  background: transparent;
}

.product-main-image {
  border-radius: 8px;
  background: #efe5d8;
  box-shadow: var(--lux-shadow);
}

.thumbnail.active {
  border-color: var(--lux-amber);
}

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

  .mobile-promo-strip {
    background: #fffaf3;
    border-bottom-color: rgba(40,30,23,.1);
  }

  .header-main {
    background: rgba(251, 247, 240, .96);
  }

  .hero {
    min-height: calc(92svh - 108px);
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(13,12,10,.18) 0%, rgba(13,12,10,.54) 42%, rgba(13,12,10,.92) 100%);
  }

  .hero-content {
    padding-top: 42svh;
  }

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

  .hero-actions {
    display: grid;
    gap: 10px;
  }

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

  .hero-offer {
    display: none;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .luxury-story-grid {
    grid-template-columns: 1fr;
  }

  .luxury-story-media,
  .luxury-story-media img {
    min-height: 360px;
  }

  .section-header {
    align-items: start;
  }

  .section-title {
    font-size: clamp(32px, 10vw, 48px);
  }

  .bundle-card {
    gap: 28px;
  }

  .page:not(#page-home) {
    background:
      linear-gradient(180deg, rgba(17,16,14,.96) 0, rgba(17,16,14,.96) 190px, #fbf7f0 190px);
  }

  .page-header {
    padding: 28px 20px;
  }
}

/* ===== PREMIUM CLOSING SECTIONS ===== */
.material-showcase {
  background: #f6efe5;
  padding-top: 118px;
}

.material-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
  gap: 56px;
  align-items: center;
}

.material-media {
  min-height: 620px;
  border-radius: 8px;
  overflow: hidden;
  background: #171411;
  box-shadow: 0 32px 90px rgba(44, 29, 18, .18);
}

.material-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  display: block;
}

.material-copy h2 {
  margin: 14px 0 20px;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: .94;
  color: var(--lux-ink);
  text-wrap: balance;
}

.material-copy p {
  color: var(--lux-muted);
  font-size: 18px;
  line-height: 1.72;
  max-width: 620px;
}

.material-list {
  margin-top: 34px;
  display: grid;
  gap: 12px;
}

.material-list div {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(37,32,28,.12);
}

.material-list strong {
  color: var(--lux-amber);
  font-size: 12px;
  letter-spacing: .14em;
}

.material-list span {
  color: var(--lux-ink);
  font-weight: 650;
}

.lifestyle-gallery {
  background: var(--lux-black);
  color: #fff8ef;
}

.lifestyle-gallery .section-title {
  color: #fff8ef;
}

.lifestyle-gallery .section-sub {
  color: rgba(255,255,255,.64);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  grid-template-rows: 290px 290px;
  gap: 18px;
}

.gallery-card {
  position: relative;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #211b17;
  box-shadow: 0 26px 80px rgba(0,0,0,.3);
}

.gallery-card-large {
  grid-row: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform .7s ease, filter .7s ease;
}

.gallery-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.05) contrast(1.03);
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(0,0,0,.62));
}

.gallery-card figcaption {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 1;
  color: #fff9f0;
  font-weight: 750;
  letter-spacing: .02em;
}

.social-proof-section {
  background: #fbf7f0;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 22px;
  align-items: stretch;
}

.testimonial-panel,
.home-faq-panel {
  border-radius: 8px;
  border: 1px solid var(--lux-line);
  background: rgba(255,252,247,.88);
  box-shadow: 0 22px 80px rgba(47,34,24,.09);
  padding: clamp(28px, 5vw, 56px);
}

.testimonial-panel {
  background:
    linear-gradient(180deg, rgba(17,16,14,.26), rgba(17,16,14,.86)),
    url('/assets/biovohon-rooftop-lounge.png') center/cover;
  color: #fff8ef;
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 520px;
}

.testimonial-panel blockquote {
  margin: 18px 0 22px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
  font-weight: 800;
  text-wrap: balance;
}

.testimonial-panel p {
  color: rgba(255,255,255,.72);
}

.home-faq-panel h2 {
  margin: 14px 0 24px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: .98;
}

.home-faq-panel details {
  border-top: 1px solid rgba(37,32,28,.12);
  padding: 18px 0;
}

.home-faq-panel details:last-child {
  border-bottom: 1px solid rgba(37,32,28,.12);
}

.home-faq-panel summary {
  cursor: pointer;
  color: var(--lux-ink);
  font-weight: 750;
  list-style: none;
}

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

.home-faq-panel p {
  margin-top: 10px;
  color: var(--lux-muted);
  line-height: 1.68;
}

.product-detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 18px;
}

.product-detail-badges span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(215,137,66,.12);
  border: 1px solid rgba(181,83,38,.18);
  color: #76401f;
  font-size: 12px;
  font-weight: 750;
}

.footer {
  background:
    linear-gradient(180deg, rgba(17,16,14,.92), rgba(17,16,14,.98)),
    url('/assets/biovohon-fire-detail.png') center/cover;
  margin-top: 0;
  padding-top: 72px;
}

.footer-grid {
  border-bottom-color: rgba(255,255,255,.12);
}

.footer-brand p,
.footer-col li a,
.footer-col p,
.footer-bottom p {
  color: rgba(255,255,255,.58);
}

.footer-col h4 {
  color: #fff8ef;
}

@media (max-width: 768px) {
  .material-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .material-media,
  .material-media img {
    min-height: 390px;
  }

  .material-grid {
    gap: 30px;
  }

  .material-list div {
    grid-template-columns: 42px 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 420px 260px 260px;
  }

  .gallery-card-large {
    grid-row: auto;
  }

  .testimonial-panel {
    min-height: 440px;
  }

  .product-detail-badges {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* ===== STABILITY FIX: PREMIUM BUT CONTROLLED SCALE ===== */
#page-home .section {
  padding: 72px 0;
}

#page-home .container {
  max-width: 1180px;
}

#page-home .section-title,
#page-home .material-copy h2,
#page-home .luxury-story-copy h2,
#page-home .bundle-copy h2,
#page-home .home-faq-panel h2 {
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
  max-width: 760px;
}

#page-home .section-sub,
#page-home .material-copy p,
#page-home .luxury-story-copy p,
#page-home .bundle-copy p {
  font-size: 16px;
  line-height: 1.62;
  max-width: 620px;
}

.hero {
  min-height: 720px;
  max-height: 860px;
}

.hero-content {
  max-width: 620px;
  padding-top: 20px;
}

.hero-title {
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: .98;
  max-width: 720px;
}

.hero-desc {
  font-size: clamp(16px, 1.55vw, 19px);
  line-height: 1.55;
  max-width: 560px;
}

.hero-actions {
  margin-bottom: 28px;
}

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

.hero-trust span {
  padding: 8px 12px;
  font-size: 13px;
}

.hero-offer {
  bottom: 32px;
  width: 330px;
  padding: 20px;
}

.luxury-story {
  padding: 78px 0;
}

.luxury-story-grid,
.material-grid {
  gap: 32px;
}

.luxury-story-media,
.luxury-story-media img {
  min-height: 420px;
  max-height: 520px;
}

.bundle-card {
  gap: 30px;
  padding: clamp(24px, 4vw, 44px);
}

.bundle-media img {
  max-height: 430px;
  object-fit: cover;
}

.material-showcase {
  padding-top: 72px;
}

.material-media,
.material-media img {
  min-height: 430px;
  max-height: 520px;
}

.material-list {
  margin-top: 22px;
  gap: 0;
}

.material-list div {
  padding: 13px 0;
}

.gallery-grid {
  grid-template-rows: 250px 250px;
  gap: 14px;
}

.proof-grid {
  gap: 16px;
}

.testimonial-panel,
.home-faq-panel {
  padding: 30px;
}

.testimonial-panel {
  min-height: 390px;
}

.testimonial-panel blockquote {
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.18;
}

.page-header h1 {
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.08;
}

.product-detail-name {
  font-size: clamp(26px, 3.2vw, 38px);
}

.product-detail {
  gap: 30px;
}

@media (max-width: 768px) {
  #page-home .section {
    padding: 46px 0;
  }

  #page-home .section-title,
  #page-home .material-copy h2,
  #page-home .luxury-story-copy h2,
  #page-home .bundle-copy h2,
  #page-home .home-faq-panel h2 {
    font-size: clamp(24px, 7vw, 34px);
    line-height: 1.12;
  }

  .hero {
    min-height: 660px;
    max-height: none;
  }

  .hero-photo img {
    object-position: center top;
  }

  .hero-content {
    padding-top: 310px;
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(34px, 9.5vw, 44px);
    line-height: 1.02;
    max-width: 100%;
  }

  .hero-desc {
    font-size: 15px;
    line-height: 1.52;
  }

  .hero-actions {
    margin-bottom: 14px;
  }

  .hero-trust {
    display: flex;
    flex-wrap: wrap;
  }

  .hero-trust span {
    font-size: 12px;
    padding: 7px 10px;
  }

  .luxury-story-grid,
  .material-grid,
  .proof-grid {
    gap: 22px;
  }

  .luxury-story-media,
  .luxury-story-media img,
  .material-media,
  .material-media img {
    min-height: 280px;
    max-height: 340px;
  }

  .gallery-grid {
    grid-template-rows: 280px 210px 210px;
    gap: 12px;
  }

  .testimonial-panel {
    min-height: 300px;
  }

  .testimonial-panel,
  .home-faq-panel {
    padding: 22px;
  }

  .products-grid {
    gap: 14px;
  }

  .product-card {
    min-width: 0;
  }
}

@media (max-width: 420px) {
  .hero-content {
    padding-top: 280px;
  }

  .hero {
    min-height: 640px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-desc {
    font-size: 14px;
  }
}

/* ===== MOBILE CATEGORY AND PRODUCT ACTION FIX ===== */
.categories-section {
  background: #fbf7f0;
}

.categories-section .section-header {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
  align-items: end;
  gap: 18px 34px;
}

.categories-section .section-kicker {
  grid-column: 1 / -1;
}

.categories-section .section-sub {
  margin: 0;
}

.cat-card {
  background: #fffdf8;
  border-color: rgba(37, 32, 28, .1);
  box-shadow: 0 10px 32px rgba(39, 28, 20, .06);
}

.cat-card h3 {
  color: #25201c;
}

.product-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}

.product-buy-now-btn,
.product-add-btn {
  min-height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(37, 32, 28, .12);
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.product-buy-now-btn {
  background: #25201c;
  color: #fffaf3;
}

.product-add-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #fffaf3;
  color: #25201c;
}

.product-add-btn svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
}

.product-buy-now-btn:hover,
.product-add-btn:hover {
  transform: translateY(-1px);
}

.product-buy-now-btn:hover {
  background: #11100e;
}

.product-add-btn:hover {
  border-color: rgba(181, 83, 38, .36);
  background: #fff4e8;
}

.product-buy-now-btn:disabled,
.product-add-btn:disabled {
  opacity: .5;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 768px) {
  .categories-section {
    padding: 34px 0 40px !important;
  }

  .categories-section .section-header {
    display: block;
    margin-bottom: 18px;
  }

  .categories-section .section-kicker {
    margin-bottom: 8px;
    font-size: 10px;
  }

  .categories-section .section-title {
    max-width: 300px;
    font-size: 26px !important;
    line-height: 1.12 !important;
    margin-bottom: 8px;
  }

  .categories-section .section-sub {
    max-width: 340px;
    font-size: 14px !important;
    line-height: 1.45 !important;
  }

  .categories-section .cat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .categories-section .cat-card {
    min-height: 88px;
    padding: 12px 10px;
    border-radius: 10px;
  }

  .categories-section .cat-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 8px;
  }

  .categories-section .cat-icon svg {
    width: 18px;
    height: 18px;
  }

  .categories-section .cat-card h3 {
    font-size: 12px;
    line-height: 1.25;
  }

  .product-card-actions {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .product-buy-now-btn,
  .product-add-btn {
    min-height: 38px;
    border-radius: 9px;
    font-size: 12px;
  }
}

@media (max-width: 380px) {
  .categories-section .cat-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== FIX SELECTED MOBILE BLOCKS ===== */
.cat-card-visual {
  position: relative;
  isolation: isolate;
  min-width: 0;
  min-height: 148px;
  align-items: flex-start;
  justify-content: flex-end;
  overflow: hidden;
  padding: 16px;
  text-align: left;
  background: #181512;
  color: #fffaf3;
}

.cat-card-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--cat-img);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform .45s ease;
}

.cat-card-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(14,12,10,.18) 0%, rgba(14,12,10,.48) 44%, rgba(14,12,10,.82) 100%);
}

.cat-card-visual:hover::before {
  transform: scale(1.07);
}

.cat-card-visual .cat-icon {
  width: 34px;
  height: 34px;
  margin: 0 0 auto;
  background: rgba(255,255,255,.92);
  color: #25201c;
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
}

.cat-card-visual .cat-name {
  margin-top: 44px;
  color: #fffaf3;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.12;
  text-shadow: 0 1px 12px rgba(0,0,0,.35);
}

.cat-open {
  margin-top: 8px;
  color: rgba(255,255,255,.78);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.trust-strip {
  background:
    linear-gradient(180deg, rgba(17,16,14,.94), rgba(17,16,14,.94)),
    url('/assets/biovohon-fire-detail.png') center/cover;
}

.trust-strip .container {
  gap: 10px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.trust-item {
  position: relative;
  padding: 18px 18px 18px 54px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.045);
  border-radius: 12px;
}

.trust-item::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 55%, #fff2d6 0 18%, #d78942 19% 47%, rgba(215,137,66,.18) 48% 100%);
  box-shadow: 0 0 20px rgba(215,137,66,.28);
}

.product-card-actions {
  align-items: stretch;
}

@media (max-width: 768px) {
  .categories-section .cat-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: 100% !important;
    overflow: visible !important;
    gap: 10px !important;
  }

  .categories-section .cat-card-visual,
  .categories-section .cat-card-visual:nth-child(n) {
    min-width: 0 !important;
    width: 100% !important;
    min-height: 124px !important;
    padding: 12px !important;
    border-radius: 12px !important;
  }

  .categories-section .cat-card-visual:nth-child(5) {
    grid-column: 1 / -1;
    min-height: 104px !important;
  }

  .categories-section .cat-card-visual .cat-icon {
    width: 30px !important;
    height: 30px !important;
    margin-bottom: 0 !important;
  }

  .categories-section .cat-card-visual .cat-name {
    margin-top: 34px;
    font-size: 14px;
  }

  .cat-open {
    font-size: 10px;
  }

  .trust-strip .container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 12px;
  }

  .trust-item {
    padding: 14px 12px 14px 42px;
    min-height: 82px;
    border-radius: 10px;
  }

  .trust-item::before {
    left: 12px;
    top: 16px;
    width: 20px;
    height: 20px;
  }

  .trust-item strong {
    font-size: 15px;
    line-height: 1.15;
  }

  .trust-item span {
    font-size: 11px;
    line-height: 1.25;
  }

  .product-card-actions {
    grid-template-columns: minmax(0, 1fr) 42px;
    gap: 8px;
  }

  .product-buy-now-btn {
    min-width: 0;
  }

  .product-add-btn {
    padding: 0;
  }

  .product-add-btn .product-add-label {
    display: none;
  }

  .product-add-btn svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 360px) {
  .categories-section .cat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* ===== TOP PROMO SLIDER ===== */
.top-promo-slider {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 36px;
  align-items: center;
  position: relative;
  min-height: 38px;
  background: #11100e;
  color: #fff7ed;
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 0 8px;
}

.top-promo-window {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  overflow: hidden;
}

.top-promo-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff7ed;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .01em;
  text-align: center;
  line-height: 1.15;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .28s ease, transform .28s ease;
  pointer-events: none;
}

.top-promo-item.active {
  opacity: 1;
  transform: translateY(0);
}

.top-promo-arrow {
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #fff7ed;
  font-size: 27px;
  line-height: 1;
  cursor: pointer;
  opacity: .9;
  transition: opacity .2s ease, transform .2s ease;
}

.top-promo-arrow:hover {
  opacity: 1;
  transform: scale(1.08);
}

@media (prefers-reduced-motion: reduce) {
  .top-promo-item {
    transition: none;
    transform: none;
  }
}

@media (max-width: 768px) {
  .top-promo-slider {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    min-height: 42px;
    padding: 0 6px;
  }

  .top-promo-window {
    min-height: 42px;
  }

  .top-promo-item {
    font-size: 14px;
    padding: 0 4px;
  }

  .top-promo-arrow {
    width: 32px;
    height: 36px;
    font-size: 30px;
  }
}

/* ===== HOME SLIDERS AND SERVICE REWORK ===== */
.top-promo-arrow {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff7ed !important;
  text-shadow: 0 1px 8px rgba(0,0,0,.65);
}

.top-promo-arrow:hover {
  background: rgba(255,255,255,.18);
}

.hero-product-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity .55s ease, transform 5.2s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slider-arrow {
  display: none !important;
}

.hero-slider-prev {
  left: max(14px, calc((100vw - 1220px) / 2));
}

.hero-slider-next {
  right: max(14px, calc((100vw - 1220px) / 2));
}

.hero-slider-dots {
  display: none !important;
}

.hero .hero-actions,
.hero .hero-trust {
  display: none !important;
}

.hero-content {
  padding-bottom: 42px;
}

.hero-slider-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  cursor: pointer;
}

.hero-slider-dots button.active {
  width: 22px;
  border-radius: 999px;
  background: #fff7ed;
}

.home-product-showcase {
  background: #11100e;
  color: #fff7ed;
}

.home-product-showcase .section-title {
  color: #fff7ed;
}

.home-product-showcase .section-sub {
  color: rgba(255,255,255,.62);
}

.home-product-tiles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.home-product-tile {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  background: #201b17;
  box-shadow: 0 22px 70px rgba(0,0,0,.26);
}

.home-product-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s ease;
}

.home-product-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.74));
}

.home-product-tile div {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
}

.home-product-tile span {
  color: #d78942;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
}

.home-product-tile h3 {
  margin: 8px 0 6px;
  color: #fff7ed;
  font-size: 20px;
  line-height: 1.1;
}

.home-product-tile p {
  color: rgba(255,255,255,.7);
  font-size: 13px;
  line-height: 1.45;
}

.home-product-tile:hover img {
  transform: scale(1.06);
}

.service-guarantees {
  background: #fbf7f0;
}

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

.service-card {
  min-height: 170px;
  padding: 24px;
  border: 1px solid rgba(37,32,28,.1);
  border-radius: 12px;
  background: #fffdf8;
  box-shadow: 0 16px 48px rgba(45,31,21,.07);
}

.service-card span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #25201c;
  color: #d78942;
  font-size: 12px;
  font-weight: 850;
}

.service-card h3 {
  margin-bottom: 8px;
  color: #25201c;
  font-size: 18px;
  line-height: 1.16;
}

.service-card p {
  color: #786d62;
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 768px) {
  .top-promo-slider {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
  }

  .top-promo-arrow {
    width: 34px !important;
    height: 34px !important;
    background: rgba(255,255,255,.14) !important;
    font-size: 28px !important;
  }

  .hero-slider-arrow {
    top: 42%;
    width: 36px;
    height: 36px;
    font-size: 34px;
  }

  .hero-slider-prev {
    left: 10px;
  }

  .hero-slider-next {
    right: 10px;
  }

  .home-product-tiles,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-product-tile {
    min-height: 220px;
  }

  .home-product-tile h3 {
    font-size: 16px;
  }

  .home-product-tile p {
    display: none;
  }

  .service-card {
    min-height: 150px;
    padding: 18px;
  }

  .service-card h3 {
    font-size: 15px;
  }

  .service-card p {
    font-size: 12px;
  }
}

/* ===== MOBILE UX FIXES: MENU, HERO TEXT, SERVICE SLIDER ===== */
.logo-icon {
  background: transparent !important;
  box-shadow: none !important;
}

.logo-icon img {
  border-radius: 50%;
}

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

.hero-badge {
  background: rgba(17,16,14,.72);
  color: #ff9f1c !important;
  border: 1px solid rgba(255,255,255,.26);
  box-shadow: 0 12px 34px rgba(0,0,0,.24);
  backdrop-filter: blur(14px);
}

.service-slider {
  position: relative;
  min-height: 310px;
  border-radius: 14px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(17,16,14,.92), rgba(70,37,20,.74)),
    url('/assets/biovohon-fire-detail.png') center/cover;
  box-shadow: 0 24px 80px rgba(42,27,18,.2);
}

.service-track {
  position: relative;
  min-height: 310px;
}

.service-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(28px, 5vw, 56px);
  color: #fff7ed;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity .35s ease, transform .35s ease;
}

.service-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.service-slide span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #ff9f1c;
  font-size: 13px;
  font-weight: 850;
}

.service-slide h3 {
  max-width: 720px;
  margin-bottom: 10px;
  color: #fff7ed;
  font-size: clamp(34px, 6vw, 64px);
  line-height: .98;
}

.service-slide p {
  max-width: 580px;
  color: rgba(255,255,255,.74);
  font-size: 17px;
  line-height: 1.6;
}

.service-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  background: rgba(17,16,14,.55);
  color: #fff7ed;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.service-prev {
  left: 16px;
}

.service-next {
  right: 16px;
}

.service-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 18px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.service-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
}

.service-dots button.active {
  width: 24px;
  border-radius: 999px;
  background: #fff7ed;
}

@media (max-width: 768px) {
  .logo {
    gap: 10px;
  }

  .logo-icon {
    width: 34px !important;
    height: 34px !important;
    border-radius: 50% !important;
  }

  .logo-name {
    font-size: 22px !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    font-weight: 850 !important;
  }

  .logo-sub {
    display: none !important;
  }

  .mobile-menu {
    position: fixed !important;
    top: 98px;
    left: 0;
    right: auto;
    width: min(82vw, 330px);
    max-height: calc(100svh - 110px);
    overflow-y: auto;
    z-index: 3000;
    transform: translateX(-104%);
    transition: transform .25s ease;
    border-top: 0 !important;
    border-radius: 0 14px 14px 0;
    box-shadow: 0 24px 80px rgba(0,0,0,.28) !important;
  }

  .mobile-menu.open {
    transform: translateX(0);
  }

  .mobile-menu-backdrop {
    position: fixed;
    inset: 98px 0 0;
    z-index: 2999;
    display: none;
    background: rgba(17,16,14,.38);
    backdrop-filter: blur(2px);
  }

  .mobile-menu-backdrop.open {
    display: block;
  }

  .mobile-menu-inner {
    background: #fffaf3;
  }

  .hero-badge {
    max-width: 100%;
    font-size: 11px;
    letter-spacing: .08em;
    white-space: normal;
    line-height: 1.25;
    text-align: left;
  }

  .service-guarantees .section-header {
    display: block;
  }

  .service-guarantees .section-title {
    max-width: 340px;
    margin: 8px 0 10px;
  }

  .service-guarantees .section-sub {
    max-width: 340px;
    font-size: 15px !important;
    line-height: 1.5 !important;
  }

  .service-slider,
  .service-track {
    min-height: 330px;
  }

  .service-slide {
    padding: 28px 54px 46px;
  }

  .service-slide h3 {
    font-size: 31px;
  }

  .service-slide p {
    font-size: 15px;
  }

  .service-arrow {
    width: 36px;
    height: 36px;
    font-size: 34px;
  }

  .service-prev {
    left: 10px;
  }

  .service-next {
    right: 10px;
  }
}

/* ===== FIRE-FLAME STYLE STRUCTURE SECTIONS ===== */
.fire-banners {
  background: #fbf7f0;
}

.fire-banner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.fire-banner {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  background: #171411;
  box-shadow: 0 24px 80px rgba(35,24,16,.16);
}

.fire-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.fire-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.72));
}

.fire-banner div {
  position: absolute;
  z-index: 1;
  left: 28px;
  right: 28px;
  bottom: 28px;
  color: #fff7ed;
}

.fire-banner span {
  color: #d78942;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.fire-banner h2 {
  margin: 8px 0 8px;
  color: #fff7ed;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
}

.fire-banner p {
  max-width: 420px;
  color: rgba(255,255,255,.75);
  line-height: 1.55;
}

.fire-banner button {
  margin-top: 18px;
  padding: 11px 18px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  color: #fff7ed;
  font: inherit;
  font-weight: 750;
}

.fire-banner:hover img {
  transform: scale(1.05);
}

.brand-story-section {
  background: #11100e;
  color: #fff7ed;
}

.brand-story {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.brand-story h2 {
  margin: 12px 0 18px;
  color: #fff7ed;
  font-size: clamp(34px, 5vw, 68px);
  line-height: .98;
}

.brand-story p {
  max-width: 720px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,.68);
  font-size: 17px;
  line-height: 1.7;
}

.newsletter-section {
  background: #fbf7f0;
}

.newsletter-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 12px;
  background: #fffdf8;
  border: 1px solid rgba(37,32,28,.1);
  box-shadow: 0 22px 70px rgba(45,31,21,.08);
}

.newsletter-box h2 {
  margin: 10px 0;
  color: #25201c;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.04;
}

.newsletter-box p {
  color: #786d62;
}

.newsletter-box form {
  display: flex;
  gap: 10px;
}

.newsletter-box input {
  min-width: 0;
  flex: 1;
  height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(37,32,28,.14);
  border-radius: 999px;
  background: #fbf7f0;
  font: inherit;
}

.newsletter-box button {
  height: 48px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .fire-banner-grid,
  .newsletter-box {
    grid-template-columns: 1fr;
  }

  .fire-banner {
    min-height: 300px;
  }

  .fire-banner div {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .newsletter-box form {
    flex-direction: column;
  }

  .newsletter-box button {
    width: 100%;
  }
}

/* ===== MOBILE HERO SLIDESHOW SIZE ===== */
@media (max-width: 768px) {
  #page-home .hero {
    min-height: min(118vw, 520px) !important;
    height: min(118vw, 520px);
    max-height: 560px;
    padding: 0 !important;
    align-items: stretch;
  }

  #page-home .hero .container {
    min-height: 100% !important;
    height: 100%;
    justify-content: flex-end !important;
    padding-top: 0;
    padding-bottom: 62px;
    pointer-events: none;
  }

  #page-home .hero-content {
    max-width: 100%;
    padding: 0 !important;
    pointer-events: auto;
  }

  #page-home .hero-badge {
    margin-bottom: 12px;
    background: rgba(17, 16, 14, .54);
  }

  #page-home .hero-title {
    max-width: 390px;
    font-size: clamp(30px, 9vw, 40px) !important;
    line-height: 1.02;
    margin-bottom: 12px;
    text-shadow: 0 3px 22px rgba(0,0,0,.62);
  }

  #page-home .hero-desc {
    max-width: 390px;
    font-size: 15px !important;
    line-height: 1.48;
    margin-bottom: 0;
    color: rgba(255,255,255,.86);
    text-shadow: 0 2px 16px rgba(0,0,0,.72);
  }

  #page-home .hero-photo img {
    object-position: center center !important;
  }

  #page-home .hero-product-slider {
    z-index: auto !important;
  }

  #page-home .hero-bg {
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(180deg, rgba(14,10,8,.06) 0%, rgba(14,10,8,.16) 35%, rgba(14,10,8,.86) 100%),
      linear-gradient(90deg, rgba(14,10,8,.24), rgba(14,10,8,.06));
  }

  #page-home .hero .container {
    position: relative;
    z-index: 2;
  }

  #page-home .hero-slider-arrow {
    display: grid !important;
    place-items: center;
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: rgba(17,16,14,.62);
    color: #fffaf3;
    font-size: 30px;
    line-height: 1;
    box-shadow: 0 8px 24px rgba(0,0,0,.24);
    backdrop-filter: blur(10px);
  }

  #page-home .hero-slider-prev {
    left: 14px !important;
  }

  #page-home .hero-slider-next {
    right: 14px !important;
  }

  #page-home .hero-slider-dots {
    display: flex !important;
    position: absolute;
    left: 50%;
    bottom: 18px;
    z-index: 5;
    transform: translateX(-50%);
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(17,16,14,.28);
    backdrop-filter: blur(10px);
  }

  #page-home .hero-slider-dots button {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 50%;
    padding: 0;
    background: rgba(255,255,255,.48);
  }

  #page-home .hero-slider-dots button.active {
    width: 22px;
    border-radius: 999px;
    background: #fffaf3;
  }
}

/* ===== REFERENCE DESIGN FINAL OVERRIDES ===== */
html,
body {
  /* overflow-x moved to html to avoid breaking position:sticky on .header */
  background: #fafaf7 !important;
  color: #0a0a0a;
  font-family: Manrope, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}
html { overflow-x: hidden; }

.container {
  max-width: 1180px;
}

/* Header — ALWAYS position:fixed; JS sets translateY based on scroll for buttery smooth motion */
.header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1000 !important;
  background: rgba(250, 250, 247, .45) !important;     /* very transparent — content shows through */
  border-bottom: 1px solid rgba(10, 10, 10, .06) !important;
  backdrop-filter: saturate(180%) blur(28px) !important;
  -webkit-backdrop-filter: saturate(180%) blur(28px) !important;
  will-change: transform;
  transition: background .25s, box-shadow .25s;
}
.header.is-stuck {
  background: rgba(250, 250, 247, .55) !important;     /* a bit more solid when stuck for readability */
  box-shadow: 0 6px 22px rgba(0,0,0,0.06);
}
.header-placeholder { display: block; }

.header-top {
  display: none !important;
}

/* Hide filter sidebar entirely — removed by user request */
.filters-sidebar, .filters-mobile-btn, .filters-mobile-close { display: none !important; }
/* Make products area span full width since sidebar is gone */
.products-layout { display: block !important; }
.products-area, .products-area-full { width: 100% !important; max-width: 100% !important; }

.mobile-promo-strip.top-promo-slider {
  height: 44px !important;
  border: 0 !important;
  background: #0a0a0a !important;
  color: #fafaf7 !important;
  font-weight: 800;
  letter-spacing: 0;
}

.top-promo-arrow {
  background: transparent !important;
  color: #fafaf7 !important;
  box-shadow: none !important;
}

.header-main {
  border: 0 !important;
  background: transparent !important;
}

.header-main-inner {
  min-height: 72px;
}

.logo-icon {
  width: 42px;
  height: 42px;
  overflow: hidden;
  border-radius: 50%;
  background: #0a0a0a !important;
  box-shadow: none !important;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.logo-name {
  color: #0a0a0a !important;
  font-size: 24px;
  font-weight: 850;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.logo-sub {
  display: none !important;
}

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: #0a0a0a !important;
  font-size: 14px;
  font-weight: 750;
}

.nav-link:hover,
.nav-link.active {
  background: #0a0a0a !important;
  color: #ffffff !important;
}

.header-btn {
  width: 42px;
  height: 42px;
  border: 1px solid transparent !important;
  background: transparent !important;
  color: #0a0a0a !important;
  box-shadow: none !important;
}

.header-btn:hover {
  border-color: rgba(10, 10, 10, .1) !important;
  background: #ffffff !important;
}

#page-home .hero {
  width: min(1180px, calc(100% - 48px)) !important;
  min-height: 620px !important;
  height: 620px !important;
  margin: 24px auto 0 !important;
  overflow: hidden;
  border-radius: 8px;
  background: #0a0a0a;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .1), 0 2px 6px rgba(0, 0, 0, .05);
}

#page-home .hero .container {
  position: relative;
  z-index: 2;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  height: 100% !important;
  min-height: 100% !important;
  padding: 56px !important;
  pointer-events: none;
}

#page-home .hero-photo,
#page-home .hero-product-slider {
  inset: 0;
  z-index: 30 !important;
  pointer-events: none !important;
}

#page-home .hero-bg {
  z-index: 1 !important;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, .74), rgba(10, 10, 10, .38) 45%, rgba(10, 10, 10, .08)),
    linear-gradient(180deg, rgba(10, 10, 10, .04), rgba(10, 10, 10, .66)) !important;
}

#page-home .hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px !important;
  padding: 0 !important;
  pointer-events: auto;
}

#page-home .hero-badge {
  max-width: max-content;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .14) !important;
  color: #fafaf7 !important;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
}

#page-home .hero-title {
  max-width: 760px;
  margin: 0 0 18px;
  color: #ffffff !important;
  font-size: clamp(56px, 7vw, 92px) !important;
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: .92 !important;
}

#page-home .hero-desc {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, .84) !important;
  font-size: 18px !important;
  line-height: 1.55;
}

#page-home .hero-offer {
  display: none !important;
}

#page-home .hero-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid !important;
  place-items: center;
  width: 42px !important;
  height: 56px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #ffffff !important;
  font-size: 58px !important;
  font-weight: 300;
  line-height: 1;
  text-shadow: 0 3px 16px rgba(0, 0, 0, .75), 0 0 2px rgba(0, 0, 0, .9);
  box-shadow: none !important;
  backdrop-filter: none !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  touch-action: manipulation;
}

#page-home .hero-slider-prev {
  left: 18px !important;
}

#page-home .hero-slider-next {
  right: 18px !important;
}

#page-home .hero-slider-dots {
  bottom: 24px !important;
  background: rgba(10, 10, 10, .28) !important;
  pointer-events: auto !important;
  z-index: 50 !important;
}

#page-home .hero-slider-dots button {
  pointer-events: auto !important;
}

#page-home .hero-slider-dots button.active {
  width: 24px;
  background: #ffffff !important;
}

.section,
.bg-light,
.fire-banners,
.social-proof-section,
.brand-story-section,
.newsletter-section {
  background: #fafaf7 !important;
}

.section {
  padding: 82px 0;
}

.section-header {
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 30px;
}

.section-kicker {
  color: #ff5a1f !important;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}

.section-title {
  color: #0a0a0a !important;
  font-size: clamp(34px, 5vw, 64px) !important;
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: .96 !important;
}

.section-sub {
  max-width: 460px;
  color: #5c5c5c !important;
  line-height: 1.65;
}

.home-product-showcase {
  background: #fafaf7 !important;
  color: #0a0a0a !important;
}

.home-product-showcase .section-title {
  color: #0a0a0a !important;
}

.home-product-showcase .section-sub {
  color: #5c5c5c !important;
}

.home-product-tiles,
.fire-banner-grid {
  gap: 14px;
}

.home-product-tile,
.fire-banner {
  overflow: hidden;
  border: 1px solid rgba(10, 10, 10, .1) !important;
  border-radius: 8px !important;
  box-shadow: none !important;
}

.home-product-tile {
  min-height: 360px;
  background: #0a0a0a;
}

.home-product-tile span {
  display: none !important;
}

.home-product-tile::after,
.fire-banner::after {
  background: linear-gradient(180deg, transparent 30%, rgba(10, 10, 10, .72)) !important;
}

.service-guarantees {
  background: #f0efea !important;
}

.service-slider,
.testimonial-panel,
.home-faq-panel,
.brand-story,
.newsletter-box,
.product-card {
  border: 1px solid rgba(10, 10, 10, .1) !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  box-shadow: none !important;
}

.service-slider {
  min-height: 360px !important;
  overflow: hidden;
}

.service-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 42px 52% 42px 54px !important;
  color: #0a0a0a;
}

.service-slide span {
  display: none !important;
}

.service-slide::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 48%;
  background-position: center;
  background-size: cover;
}

.service-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, .96) 48%, rgba(255, 255, 255, .2) 100%);
  pointer-events: none;
}

.service-slide:nth-child(1)::before {
  background-image: url("/assets/biovohon-tabletop-kit.png");
}

.service-slide:nth-child(2)::before {
  background-image: url("/assets/biovohon-rooftop-lounge.png");
}

.service-slide:nth-child(3)::before {
  background-image: url("/assets/biovohon-product-render.png");
}

.service-slide:nth-child(4)::before {
  background-image: url("/assets/biovohon-luxury-terrace-hero.png");
}

.service-slide > * {
  position: relative;
  z-index: 1;
}

.service-slide h3 {
  max-width: 420px;
  color: #0a0a0a !important;
  font-size: 34px;
  line-height: 1;
}

.service-slide p {
  max-width: 430px;
  color: #5c5c5c !important;
}

.service-arrow {
  border: 0 !important;
  background: #0a0a0a !important;
  color: #ffffff !important;
}

.product-card:hover {
  border-color: rgba(10, 10, 10, .18) !important;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .08) !important;
  transform: translateY(-3px);
}

.product-img {
  background: #f0efea !important;
}

.product-card .product-badges,
.product-card .product-stock {
  display: none !important;
}

.product-info {
  padding: 18px;
}

.product-cat {
  color: #5c5c5c !important;
  letter-spacing: 0;
  text-transform: none;
}

.product-name,
.price-current {
  color: #0a0a0a !important;
}

.product-name {
  font-weight: 850;
}

.btn-primary,
.product-buy-now {
  border-color: #0a0a0a !important;
  background: #0a0a0a !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

.product-add-btn,
.btn-outline {
  border-color: rgba(10, 10, 10, .1) !important;
  background: #ffffff !important;
  color: #0a0a0a !important;
}

.btn-primary:hover,
.product-card .btn-primary:hover {
  border-color: #ff5a1f !important;
  background: #ff5a1f !important;
}

.footer-brand .logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-brand .logo-icon {
  flex: 0 0 38px;
  width: 38px !important;
  height: 38px !important;
}

.footer-brand .logo-name {
  color: #ffffff !important;
  font-size: 24px !important;
}

.footer-brand p {
  max-width: 340px;
  margin-top: 0 !important;
}

.footer {
  background: #0a0a0a !important;
}

/* Service slider: vector icons, no photos, no round arrow backgrounds */
.service-slider .service-arrow {
  width: 54px !important;
  height: 72px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #0a0a0a !important;
  font-size: 48px !important;
  text-shadow: 0 2px 10px rgba(255, 255, 255, .9);
  box-shadow: none !important;
}

.service-slider .service-prev {
  left: 8px !important;
}

.service-slider .service-next {
  right: 8px !important;
}

.service-slide {
  align-items: flex-start !important;
  justify-content: center !important;
  padding: 44px 76px 54px !important;
  text-align: left;
}

.service-slide::before,
.service-slide::after {
  display: none !important;
  content: none !important;
  background-image: none !important;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: 22px;
  border: 1px solid rgba(10, 10, 10, .12);
  border-radius: 20px;
  background: #fafaf7;
}

.service-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: #ff5a1f;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-slide h3,
.service-slide p {
  max-width: 620px !important;
}

.home-faq-panel details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  list-style: none;
}

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

.home-faq-panel details summary::after {
  content: "+";
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(10, 10, 10, .12);
  border-radius: 50%;
  color: #ff5a1f;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.home-faq-panel details[open] summary::after {
  content: "-";
}

.brand-story-section {
  background: #fafaf7 !important;
}

.brand-story {
  background: #ffffff !important;
  color: #0a0a0a !important;
}

.brand-story .section-kicker {
  color: #ff5a1f !important;
}

.brand-story h2 {
  color: #0a0a0a !important;
  opacity: 1 !important;
}

.brand-story p {
  color: #5c5c5c !important;
  opacity: 1 !important;
}

@media (max-width: 768px) {
  .mobile-promo-strip.top-promo-slider {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    height: 44px !important;
    font-size: 14px;
  }

  .header-main-inner {
    min-height: 58px;
  }

  .logo-icon {
    width: 34px;
    height: 34px;
  }

  .logo-name {
    font-size: 23px !important;
  }

  .header-actions {
    gap: 10px;
  }

  .header-btn {
    width: 38px;
    height: 38px;
  }

  #page-home .hero {
    width: 100% !important;
    min-height: min(132vw, 520px) !important;
    height: min(132vw, 520px) !important;
    max-height: 540px;
    margin: 0 !important;
    border-radius: 0;
    box-shadow: none;
  }

  #page-home .hero .container {
    padding: 0 18px 64px !important;
  }

  #page-home .hero-bg {
    background: linear-gradient(180deg, rgba(10, 10, 10, .04) 0%, rgba(10, 10, 10, .22) 38%, rgba(10, 10, 10, .82) 100%) !important;
  }

  #page-home .hero-title {
    max-width: 350px;
    font-size: clamp(40px, 11vw, 48px) !important;
    line-height: .96 !important;
  }

  #page-home .hero-desc {
    max-width: 350px;
    font-size: 15px !important;
  }

  #page-home .hero-badge {
    max-width: 290px;
    padding: 7px 12px;
    font-size: 10px;
  }

  #page-home .hero-slider-arrow {
    top: 48%;
    width: 58px !important;
    height: 96px !important;
    font-size: 48px !important;
  }

  #page-home .hero-slider-prev {
    left: 0 !important;
  }

  #page-home .hero-slider-next {
    right: 0 !important;
  }

  #page-home .hero-slider-dots {
    bottom: 18px !important;
  }

  .section {
    padding: 56px 0;
  }

  .section-header {
    display: block;
    margin-bottom: 22px;
  }

  .section-title {
    margin-top: 8px;
    font-size: clamp(34px, 10vw, 46px) !important;
    line-height: .98 !important;
  }

  .section-sub {
    margin-top: 14px;
    font-size: 16px;
  }

  .home-product-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .fire-banner-grid {
    grid-template-columns: 1fr !important;
  }

  .home-product-tile {
    min-height: 220px !important;
  }

  .fire-banner {
    min-height: 300px !important;
  }

  .home-product-tile div {
    left: 14px !important;
    right: 14px !important;
    bottom: 14px !important;
  }

  .home-product-tile h3 {
    font-size: 19px !important;
    line-height: 1.05 !important;
  }

  .home-product-tile p {
    display: none !important;
  }

  .service-slider,
  .service-track {
    min-height: 390px !important;
  }

  .service-slide {
    justify-content: flex-end;
    padding: 190px 24px 56px !important;
  }

  .service-slide::before {
    inset: 0 0 auto 0;
    width: 100%;
    height: 190px;
  }

  .service-slide::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, .06) 0%, #ffffff 52%, #ffffff 100%);
  }

  .service-slide h3 {
    max-width: 100%;
    font-size: 30px !important;
  }

  .service-slide p {
    max-width: 100%;
  }

  .service-slider,
  .service-track {
    min-height: 360px !important;
  }

  .service-slide {
    justify-content: center !important;
    padding: 42px 58px 52px !important;
  }

  .service-slide::before,
  .service-slide::after {
    display: none !important;
    content: none !important;
    background-image: none !important;
  }

  .service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
    border-radius: 18px;
  }

  .service-icon svg {
    width: 36px;
    height: 36px;
  }

  .service-slider .service-arrow {
    width: 44px !important;
    height: 64px !important;
    font-size: 40px !important;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .product-info {
    padding: 13px;
  }
}

/* ===== FAQ ACCORDION FIX ===== */
.home-faq-panel details { border-bottom: 1px solid #e5e7eb; }
.home-faq-panel details:first-of-type { border-top: 1px solid #e5e7eb; }
.home-faq-panel details summary {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  padding: 14px 0 !important;
  cursor: pointer !important;
  list-style: none !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: #1a1a1a !important;
  user-select: none;
  border: none !important;
  background: none !important;
}
.home-faq-panel details summary::-webkit-details-marker { display: none !important; }
.home-faq-panel details summary::after {
  content: "" !important;
  display: inline-block !important;
  flex-shrink: 0 !important;
  width: 10px !important;
  height: 10px !important;
  border-right: 2px solid #374151 !important;
  border-bottom: 2px solid #374151 !important;
  border-top: none !important;
  border-left: none !important;
  border-radius: 0 !important;
  background: none !important;
  background-image: none !important;
  font-size: 0 !important;
  transform: rotate(45deg) translateY(-3px) !important;
  transition: transform .25s ease !important;
}
.home-faq-panel details[open] summary::after {
  transform: rotate(-135deg) translateY(3px) !important;
}
.home-faq-panel details p { padding: 0 0 14px !important; margin: 0 !important; font-size: 14px !important; line-height: 1.65 !important; color: #555 !important; }

/* ===== CHAT CLOSE BUTTON FIX ===== */
.chat-panel-close-inline { display: none !important; }

/* ===== PRODUCT CAROUSEL — NO FRAME ===== */
.product-carousel { background: #fff !important; border: none !important; box-shadow: none !important; }
.carousel-slide { background: #fff !important; }
.carousel-slide img { background: #fff !important; }

/* Swipe hint overlay — shown briefly on mobile only, fades out after first touch */
.carousel-swipe-hint {
  display: none; /* hidden on desktop */
}

@media (hover: none) and (pointer: coarse) {
  .carousel-swipe-hint {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,0,0,.45);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .3px;
    padding: 5px 12px;
    border-radius: 20px;
    pointer-events: none;
    z-index: 10;
    opacity: 1;
    transition: opacity .4s;
    white-space: nowrap;
  }
  .carousel-swipe-hint.hidden { opacity: 0; }
  .carousel-swipe-hint svg { width: 16px; height: 16px; flex-shrink: 0; }
}

@media (max-width: 768px) {
  /* Break product gallery out of container padding (container = 20px) */
  #page-product .product-gallery {
    margin-left: -20px !important;
    margin-right: -20px !important;
    width: calc(100% + 40px) !important;
  }
  #page-product .product-carousel {
    border-radius: 0 !important;
    width: 100% !important;
    margin-bottom: 0 !important;
  }
  #page-product .product-thumbs {
    padding: 8px 20px !important;
  }

  /* Hide arrows on mobile — swipe to navigate */
  #page-product .carousel-arrow { display: none !important; }

  /* Larger, more visible dots on mobile */
  #page-product .carousel-dots { bottom: 14px !important; gap: 8px !important; }
  #page-product .carousel-dot {
    width: 10px !important;
    height: 10px !important;
    background: rgba(255,255,255,.5) !important;
    border: 1.5px solid rgba(0,0,0,.18) !important;
  }
  #page-product .carousel-dot.active {
    width: 28px !important;
    border-radius: 5px !important;
    background: var(--primary, #e8531d) !important;
    border-color: transparent !important;
  }
}

@media (max-width: 480px) {
  /* Container shrinks to 14px padding at 480px */
  #page-product .product-gallery {
    margin-left: -14px !important;
    margin-right: -14px !important;
    width: calc(100% + 28px) !important;
  }
  #page-product .product-thumbs {
    padding: 8px 14px !important;
  }
}

/* ===== PRODUCT DETAIL REDESIGN ===== */
.product-key-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-key-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #374151;
  line-height: 1.4;
}
.product-key-features li::before {
  content: "✓";
  color: #e8531d;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.product-stock-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.product-stock-row.in-stock { background: #f0fdf4; color: #15803d; }
.product-stock-row.out-of-stock { background: #fef2f2; color: #dc2626; }
.product-trust-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  margin-top: 14px;
}
.product-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 10px 12px;
  border: 1.5px solid #e8531d;
  border-radius: 8px;
  background: #fff;
}
.product-trust-item:nth-child(even) { border-right: 1.5px solid #e8531d; }
.product-trust-item:nth-child(n+3) { border-bottom: 1.5px solid #e8531d; }
.trust-icon-wrap {
  width: 22px; height: 22px;
  border-radius: 0;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-text { display: flex; flex-direction: column; gap: 2px; }
.trust-text strong { font-size: 13px; font-weight: 700; color: #111827; line-height: 1.2; }
.trust-text span { font-size: 11px; color: #6b7280; line-height: 1.3; }
.product-desc-section {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.product-desc-text {
  font-size: 15px;
  line-height: 1.75;
  color: #4b5563;
  max-width: 720px;
}

/* ===== PRODUCT MARKETING SECTIONS ===== */
.product-marketing { margin-top: 0; }
.pd-section { padding: 40px 0; border-top: 1px solid #f0f0f0; }
.pd-section-bg { background: #fafafa; padding: 40px 32px; border-radius: 16px; border: none; margin: 8px 0; }
.pd-h2 { font-size: 24px; font-weight: 700; color: #111; margin: 0 0 24px; }
.pd-text { font-size: 15px; line-height: 1.75; color: #4b5563; }

/* Feature icon grid */
.pd-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 0 0 0; padding: 24px 0; border-top: 1px solid #f0f0f0; }
.pd-feature-card { display: flex; align-items: flex-start; gap: 12px; background: #fff; border: 1px solid #f0f0f0; border-radius: 12px; padding: 16px; }
.pd-feature-icon { flex-shrink: 0; width: 44px; height: 44px; }
.pd-feature-icon svg { width: 100%; height: 100%; }
.pd-feature-card strong { display: block; font-size: 13px; font-weight: 700; color: #111; margin-bottom: 2px; }
.pd-feature-card span { font-size: 12px; color: #6b7280; line-height: 1.4; }

/* Detail blocks */
.pd-detail-blocks { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 28px; }
.pd-detail-block { background: #fff; border: 1px solid #f0f0f0; border-radius: 12px; padding: 24px; text-align: center; }
.pd-detail-icon { width: 56px; height: 56px; margin: 0 auto 14px; }
.pd-detail-icon svg { width: 100%; height: 100%; }
.pd-detail-block strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 8px; color: #111; }
.pd-detail-block p { font-size: 13px; color: #6b7280; line-height: 1.6; margin: 0; }

/* Guarantee row */
.pd-guarantee-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center; }
.pd-guarantee-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.pd-big-num { font-size: 28px; font-weight: 800; color: #e8531d; line-height: 1; }
.pd-guarantee-item span:last-child { font-size: 13px; color: #6b7280; }

/* Who for grid */
.pd-whofor-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.pd-whofor-item { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid #f0f0f0; border-radius: 10px; padding: 14px 16px; font-size: 13px; font-weight: 500; color: #374151; }
.pd-whofor-item svg { width: 28px; height: 28px; flex-shrink: 0; }

/* Safety grid */
.pd-safety-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.pd-safety-item { text-align: center; padding: 20px 12px; background: #fff; border: 1px solid #f0f0f0; border-radius: 12px; }
.pd-safety-item svg { width: 40px; height: 40px; margin: 0 auto 12px; display: block; }
.pd-safety-item strong { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; color: #111; }
.pd-safety-item p { font-size: 12px; color: #6b7280; margin: 0; line-height: 1.5; }

/* FAQ accordion */
.pd-faq-list { display: flex; flex-direction: column; }
.pd-faq-item { border-bottom: 1px solid #f0f0f0; }
.pd-faq-item:first-child { border-top: 1px solid #f0f0f0; }
.pd-faq-summary { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 0; cursor: pointer; list-style: none; font-size: 15px; font-weight: 500; color: #111; user-select: none; }
.pd-faq-summary::-webkit-details-marker { display: none; }
.pd-faq-summary::after { content: ""; display: inline-block; flex-shrink: 0; width: 10px; height: 10px; border-right: 2px solid #374151; border-bottom: 2px solid #374151; border-top: none; border-left: none; transform: rotate(45deg) translateY(-3px); transition: transform .2s ease; }
.pd-faq-item[open] .pd-faq-summary::after { transform: rotate(-135deg) translateY(3px); }
.pd-faq-answer { padding: 0 0 16px; font-size: 14px; line-height: 1.7; color: #4b5563; }

/* Related products */
.pd-related-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }

/* Social */
.pd-social { text-align: center; }
.pd-social h3 { font-size: 20px; font-weight: 700; margin: 0 0 8px; }
.pd-social p { color: #6b7280; font-size: 14px; margin: 0 0 20px; }
.pd-social-btns { display: flex; gap: 12px; justify-content: center; }
.pd-social-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 8px; font-size: 14px; font-weight: 600; text-decoration: none; transition: opacity .15s; }
.pd-social-btn:hover { opacity: .85; }
.pd-social-fb { background: #1877f2; color: #fff; }
.pd-social-ig { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }

/* Mobile responsive */
@media (max-width: 768px) {
  .pd-feature-grid { grid-template-columns: 1fr 1fr; gap: 8px; padding: 14px 0; }
  .pd-detail-blocks { grid-template-columns: 1fr; gap: 10px; margin-top: 16px; }
  .pd-guarantee-row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .pd-whofor-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .pd-safety-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .pd-related-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .pd-section-bg { padding: 18px 14px; margin: 4px 0; }
  .pd-section { padding: 18px 0; }
  .pd-h2 { font-size: 18px; margin: 0 0 12px; }
  .pd-text { font-size: 14px; line-height: 1.55; }
  .pd-carousel-wrap { margin-top: 14px; }
  .pd-carousel-track { min-height: 220px; }
  .pd-detail-block { padding: 20px 16px; border-radius: 12px; }
  .pd-detail-icon { width: 44px; height: 44px; margin-bottom: 10px; }
  .pd-detail-block strong { font-size: 15px; margin-bottom: 6px; }
  .pd-detail-block p { font-size: 13px; line-height: 1.5; }
  .pd-carousel-dots { margin-top: 10px; }
  .product-desc-section { margin-top: 18px; padding-top: 16px; }
  .product-specs-section, .product-faq-section { padding: 16px; }
}

/* ===== PD DETAIL CAROUSEL ===== */
.pd-carousel-wrap { position: relative; margin-top: 28px; }
.pd-carousel-track { position: relative; min-height: 260px; }
.pd-detail-block {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  padding: 36px 28px;
  animation: pdFadeIn .4s ease;
}
.pd-detail-block--active { display: flex; }
@keyframes pdFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.pd-detail-icon { width: 64px; height: 64px; margin-bottom: 18px; }
.pd-detail-icon svg { width: 100%; height: 100%; }
.pd-detail-block strong { font-size: 17px; font-weight: 700; color: #111; margin-bottom: 12px; display: block; }
.pd-detail-block p { font-size: 14px; color: #4b5563; line-height: 1.7; margin: 0; max-width: 340px; }
.pd-carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 18px; }
.pd-dot { width: 8px; height: 8px; border-radius: 50%; border: none; background: #d1d5db; cursor: pointer; padding: 0; transition: background .2s, width .2s; }
.pd-dot.active { background: #e8531d; width: 24px; border-radius: 4px; }

/* ===== FINAL PRODUCT, CHAT AND REVIEW FIXES ===== */
#page-product {
  background: #fbf7f0 !important;
}

#page-product > .container {
  background: transparent !important;
}

#page-product .breadcrumb,
#page-product .breadcrumb a,
#page-product .breadcrumb span,
#productDetailBreadcrumb {
  color: #6e584c !important;
}

#page-product .product-detail {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

#page-product .product-detail::before,
#page-product .product-detail::after {
  display: none !important;
  content: none !important;
}

#chatEndBtnWrap {
  justify-content: center !important;
  padding: 6px 12px 10px !important;
  background: #fff !important;
}

#chatEndBtn {
  height: 32px !important;
  padding: 0 16px !important;
  border: 1px solid rgba(10,10,10,.15) !important;
  border-radius: 999px !important;
  background: transparent !important;
  color: #6b7280 !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  transition: background .15s, color .15s !important;
}

#chatEndBtn:hover {
  background: #fee2e2 !important;
  color: #dc2626 !important;
  border-color: #fca5a5 !important;
}

.chat-input-area {
  padding-left: 12px !important;
}

#rvStarPicker button {
  color: #d1d5db;
}

/* ===== PRODUCT LIST CLEANUP ===== */
#page-products .products-toolbar {
  display: none !important;
}

body.products-active .mobile-shop-bar {
  display: none !important;
}

#page-products {
  padding-top: 0 !important;
}

#page-products .products-hero-content .breadcrumb {
  display: none !important;
}

#page-products #productsGrid .product-cat,
#page-products #productsGrid .product-card-meta,
#page-products #productsGrid .product-stock,
#page-products #productsGrid .product-card-actions {
  display: none !important;
}

#page-products #productsGrid .product-info {
  aspect-ratio: auto;
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
  background: transparent !important;
}

#page-products #productsGrid .product-name {
  margin-bottom: 10px;
}

#page-products #productsGrid .product-price {
  margin-top: 0;
  margin-bottom: 0;
}

#page-products #productsGrid .product-card {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

#page-products #productsGrid .product-card:hover {
  border-color: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}

#page-products #productsGrid .product-card:hover .product-img img {
  transform: none !important;
}

#page-products .products-hero-slider {
  min-height: 230px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #111111;
}

.products-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.products-hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity .7s ease, transform 4.8s ease;
}

.products-hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.products-hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 10, 12, .76) 0%, rgba(6, 10, 12, .45) 48%, rgba(6, 10, 12, .24) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .08) 0%, rgba(0, 0, 0, .46) 100%);
}

.products-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}

.products-hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 16px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: #ffffff;
  box-shadow: 0 16px 38px rgba(0, 0, 0, .18);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 750;
}

.products-rating-row {
  position: relative;
  z-index: 3;
  margin: -22px 0 26px 24px;
  border-color: rgba(10, 10, 10, .08);
  background: #ffffff;
  color: #0a0a0a;
  box-shadow: 0 14px 34px rgba(67, 36, 20, .12);
}

.products-faq-block,
.products-reviews-block {
  margin-top: 54px;
  padding: 34px;
  border: 1px solid rgba(10, 10, 10, .08);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(67, 36, 20, .06);
}

.products-faq-block h2,
.products-reviews-block h2 {
  margin: 8px 0 24px;
  color: #0a0a0a;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.04;
}

.products-faq-block details {
  border-top: 1px solid #ece7e1;
  padding: 16px 0;
}

.products-faq-block details:last-child {
  border-bottom: 1px solid #ece7e1;
}

.products-faq-block summary {
  cursor: pointer;
  color: #0a0a0a;
  font-weight: 800;
  list-style: none;
}

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

.products-faq-block p {
  margin: 10px 0 0;
  color: #5c5c5c;
  line-height: 1.65;
}

.products-review-score {
  display: grid;
  gap: 6px;
  margin-bottom: 22px;
  padding: 22px;
  border-radius: 12px;
  background: #faf7f2;
  text-align: center;
}

.products-review-score strong {
  color: #0a0a0a;
  font-size: 42px;
  line-height: 1;
}

.products-review-score span {
  color: #5c5c5c;
}

.products-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.products-hero-stars {
  color: #ffb52e;
  letter-spacing: 1px;
  white-space: nowrap;
}

.products-hero-rating strong,
.products-hero-rating span {
  white-space: nowrap;
}

/* ===== FINAL PRODUCT MOBILE LAYOUT ===== */
.product-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 14px;
}

.product-benefit-card {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 10px 12px;
  border: 1.5px solid #e8531d;
  border-radius: 8px;
  background: #fff;
}

.product-benefit-card svg {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #e8531d;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-benefit-card strong {
  display: block;
  color: #1a1a1a;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
}

.product-benefit-card small {
  display: block;
  margin-top: 2px;
  color: #6b7280;
  font-size: 10.5px;
  line-height: 1.2;
}

.product-info-copy {
  margin: 2px 0 14px;
  padding: 12px 0 0;
  border-top: 1px solid rgba(10, 10, 10, .08);
}

.product-info-copy h3 {
  margin: 0 0 6px;
  color: #0a0a0a;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 850;
}

.product-info-copy p {
  margin: 0;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.5;
}

/* ===== PRODUCT INFO ACCORDION ===== */
.product-info-accordion {
  margin: 0 0 14px;
  border-top: 1px solid #e5e7eb;
}
.info-accordion-item {
  border-bottom: 1px solid #e5e7eb;
}
.info-accordion-item summary { list-style: none; }
.info-accordion-item summary::-webkit-details-marker { display: none; }
.info-accordion-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  user-select: none;
  gap: 10px;
}
.info-accordion-title:hover { color: #111; }
.info-accordion-icon-wrap {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .15s;
}
.info-accordion-item[open] .info-accordion-icon-wrap {
  background: #e5e7eb;
}
.info-accordion-icon {
  width: 12px;
  height: 12px;
  color: #374151;
  transition: transform .2s;
}
.info-accordion-item[open] .info-accordion-icon {
  transform: rotate(180deg);
}
.info-accordion-body {
  padding: 0 0 12px;
  font-size: 13px;
  line-height: 1.55;
  color: #4b5563;
}

.product-highlight-block {
  margin: 0 0 14px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 13px;
  line-height: 1.5;
  color: #374151;
  white-space: pre-line;
}

.product-buy-box {
  margin: 14px 0;
  padding: 14px;
  border: 1px solid rgba(10, 10, 10, .08);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(67, 36, 20, .07);
}

.product-buy-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 6px;
  margin-bottom: 12px;
}

.product-buy-price span {
  display: block;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.25;
}

.product-buy-price strong {
  display: block;
  color: #0a0a0a;
  font-size: clamp(26px, 3.5vw, 36px);
  line-height: 1;
  font-weight: 900;
}

.product-buy-price em {
  display: block;
  margin-top: 4px;
  color: #9ca3af;
  font-size: 12px;
  font-style: normal;
}

.product-price-benefits {
  margin: 0;
  color: #6a625c;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 650;
}

.product-buy-qty {
  display: grid !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px !important;
}

.product-buy-qty span {
  color: #17120f;
  font-size: 15px;
  font-weight: 800;
  margin-right: 0;
}

.product-buy-qty .qty-stepper {
  display: inline-grid;
  grid-template-columns: 38px 56px 38px;
  justify-self: start;
  overflow: hidden;
  border: 1px solid #e9ddd2;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 6px 14px rgba(67, 36, 20, .05);
}

.product-buy-qty .qty-btn {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 0;
  background: #fff8f1;
  color: #0a0a0a;
  font-size: 18px;
  font-weight: 900;
}

.product-buy-qty .qty-btn:hover {
  background: #0a0a0a;
  color: #fff;
}

.product-buy-qty .qty-input {
  width: 56px !important;
  height: 38px;
  border: 0;
  border-left: 1px solid #e9ddd2;
  border-right: 1px solid #e9ddd2;
  border-radius: 0;
  background: #fff;
  color: #0a0a0a;
  font-size: 15px;
  font-weight: 850;
  text-align: center;
}

.product-buy-qty .qty-input::-webkit-outer-spin-button,
.product-buy-qty .qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}


.pd-related-grid {
  width: 100%;
}

.pd-related-grid > .product-card {
  min-width: 0;
}

@media (max-width: 768px) {
  #page-products .page-header.products-hero-slider {
    width: 100vw;
    min-height: 260px;
    margin: 0 calc(50% - 50vw) 26px !important;
    border-radius: 0;
    box-shadow: none;
  }

  #page-products .products-hero-content {
    min-height: 260px;
    padding: 24px 18px 26px;
  }

  #page-products .products-hero-content h1 {
    font-size: 34px;
  }

  .products-hero-rating {
    flex-wrap: wrap;
    max-width: 100%;
    border-radius: 14px;
    font-size: 13px;
  }

  .products-rating-row {
    width: calc(100% - 36px);
    margin: -20px 18px 24px;
  }

  #page-products #productsGrid .product-info {
    min-height: 132px;
    padding-bottom: 14px;
  }

  .products-faq-block,
  .products-reviews-block {
    margin: 42px 18px 0;
    padding: 24px 18px;
    border-radius: 12px;
  }

  .products-review-grid {
    grid-template-columns: 1fr;
  }

  #page-product {
    padding-top: 0 !important;
  }

  #page-product > .container {
    width: 100% !important;
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  #productDetailBreadcrumb {
    display: none !important;
  }

  #page-product .product-detail {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
  }

  #page-product .product-gallery {
    width: 100vw !important;
    margin: 0 calc(50% - 50vw) !important;
    padding: 0 !important;
  }

  #page-product .product-carousel {
    width: 100vw !important;
    height: clamp(340px, 52vh, 520px) !important;
    aspect-ratio: auto !important;
    border-radius: 0 !important;
    margin: 0 !important;
  }

  #page-product .carousel-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    padding: 0 !important;
  }

  #page-product .product-thumbs {
    width: 100vw !important;
    margin: 0 !important;
    padding: 10px 18px !important;
    border-radius: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    background: #fbf7f0 !important;
  }

  #page-product .product-info-detail {
    padding: 34px 24px 0 !important;
  }

  #page-product .product-marketing .pd-section,
  #page-product .product-marketing > .pd-section,
  #page-product .product-marketing .pd-section-bg {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  #page-product .product-marketing .pd-section {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .product-benefit-grid {
    gap: 8px;
    margin-bottom: 24px;
  }

  .product-info-copy {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }

  .product-buy-box {
    margin: 22px 0 24px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .product-buy-price {
    align-items: flex-start;
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(67, 36, 20, .07);
  }

  .product-buy-price strong {
    font-size: 34px;
  }

  .product-benefit-card {
    min-height: 64px;
    padding: 12px 10px;
    gap: 8px;
  }

  .product-benefit-card svg {
    flex-basis: 27px;
    width: 27px;
    height: 27px;
  }

  .product-benefit-card strong {
    font-size: 12px;
  }

  .product-benefit-card small {
    font-size: 10px;
  }

  .product-trust-item {
    padding: 14px 16px;
    gap: 12px;
  }
  .trust-icon-wrap { width: 28px; height: 28px; border-radius: 0; }
  .trust-text strong { font-size: 13px; }
  .trust-text span { font-size: 11px; }

  .pd-related-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
    width: 100% !important;
  }

  #pdRelatedGrid {
    width: 100% !important;
  }

  body.product-active .mobile-shop-bar {
    display: none !important;
  }

  body.product-active.product-sticky-visible .mobile-shop-bar {
    display: none !important;     /* removed by user request */
  }
}

/* ── Review Form — mobile fixes ── */
/* Overlay scrolls so button is always reachable */
#reviewFormOverlay {
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 520px) {
  /* Less outer padding on small phones */
  #reviewFormOverlay {
    padding: 8px !important;
  }
  /* Shrink the white card */
  #reviewFormOverlay > div {
    padding: 20px 16px 18px !important;
    border-radius: 12px !important;
  }
  /* Smaller star buttons */
  #rvStarPicker button {
    font-size: 28px !important;
  }
  /* Fewer textarea rows */
  #rvText {
    rows: 3;
    min-height: 72px;
    max-height: 120px;
    resize: vertical;
  }
  /* Stack submit/cancel buttons */
  #reviewFormEl > div:last-child {
    flex-direction: column !important;
    gap: 8px !important;
  }
  #reviewFormEl > div:last-child button {
    width: 100% !important;
  }
  /* Smaller media dropzone */
  #rvMediaDropzone {
    padding: 10px 8px !important;
  }
  #rvMediaDropzone > div:first-child {
    font-size: 20px !important;
    margin-bottom: 2px !important;
  }
}
