/* ============================================================
   EXPLORE SERIES — Theme Stylesheet
   ============================================================ */

:root {
  --orange: #f5821f;
  --orange-deep: #d9690f;
  --purple: #7c5cd6;
  --pink: #e94057;
  --green: #1a9e5c;
  --blue: #2f7fd1;
  --gold: #c9a227;
  --ink: #211a13;
  --smoke: #6f6a63;
  --paper: #ffffff;
  --cream: #fbf6ec;
  --peach-bg: #fdeee0;
  --line: #ece4d6;
  --ease: cubic-bezier(0.16, 0.8, 0.28, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: "Inter", sans-serif;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

.wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

section { position: relative; }

@media (max-width: 720px) {
  .wrap { padding: 0 20px; }
}

/* ---- BUTTONS ---- */
.btn {
  font-family: "Baloo 2", sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  padding: 13px 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange::before {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease);
}
.btn-orange:hover::before { left: 130%; }
.btn-orange:hover { background: var(--orange-deep); transform: translateY(-2px); box-shadow: 0 14px 26px rgba(245,130,31,0.35); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: #000; transform: translateY(-2px); box-shadow: 0 12px 22px rgba(0,0,0,0.25); }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0,0,0,0.18); }
.btn-outline { border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-sm { padding: 9px 18px; font-size: 12.5px; }

/* ---- REVEAL ANIMATIONS ---- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* ---- EYEBROW / SEC HEAD ---- */
.eyebrow {
  font-family: "Baloo 2", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
}

.sec-head { text-align: center; max-width: 680px; margin: 0 auto 44px; }
.sec-head h2 { font-size: clamp(26px, 3.2vw, 40px); margin-top: 8px; position: relative; display: inline-block; }
.sec-head h2::after {
  content: "";
  position: absolute;
  left: 50%; transform: translateX(-50%);
  bottom: -10px; height: 4px; width: 0;
  background: linear-gradient(90deg, var(--orange), var(--pink));
  border-radius: 4px;
  transition: width 0.9s var(--ease) 0.15s;
}
.sec-head.reveal.is-visible h2::after { width: 64px; }
.sec-head p { color: var(--smoke); margin-top: 12px; font-size: 14.5px; line-height: 1.65; }

/* ---- SCROLL PROGRESS ---- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--pink));
  z-index: 999; width: 0%; transition: width 0.1s linear;
}

/* ---- TICKER / TOPBAR ---- */
.topbar { background: var(--peach-bg); padding: 9px 0; }
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange-deep);
  justify-content: center;
  flex-wrap: wrap;
}
.ticker-item { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.ticker-sep { color: var(--orange); opacity: 0.5; }

/* ---- HEADER ---- */
header { position: sticky; top: 0; z-index: 200; background: #fff; box-shadow: 0 1px 0 var(--line); }
.head-row { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 20px; }
.search-box {
  flex: 1; max-width: 220px;
  display: flex; align-items: center;
  border: 1.5px solid var(--line); border-radius: 999px;
  padding: 9px 16px; gap: 8px;
  margin-left: 20px;
}
.search-box input { border: none; background: none; outline: none; font-size: 13px; width: 100%; }
.search-box svg { width: 15px; height: 15px; color: var(--smoke); flex-shrink: 0; }
.logo-lock { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.logo-lock img { height: 42px; width: auto; display: block; }
.logo-lock .logo-text { font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: 20px; color: var(--ink); }
.logo-lock .logo-text span { color: var(--orange); }

.head-icons { display: flex; align-items: center; gap: 20px; flex-shrink: 0; margin-right: 20px; }
.head-icons svg { width: 21px; height: 21px; cursor: pointer; color: var(--ink); transition: color 0.3s; }
.head-icons svg:hover { color: var(--orange); }
.head-icons a { position: relative; display: flex; align-items: center; }
.cart-icon-wrap { position: relative; cursor: pointer; }
.cart-icon-wrap > a { 
  display: flex; 
  align-items: center; 
  color: var(--ink);
  transition: color 0.3s;
}
.cart-icon-wrap > a:hover { color: var(--orange); }
.cart-icon-wrap > a svg { width: 21px; height: 21px; color: inherit; }
.head-icons .cart-count {
  position: absolute; top: -8px; right: -8px;
  background: var(--orange); color: #fff;
  font-size: 9px; font-weight: 700;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: "Baloo 2", sans-serif;
  min-width: 16px;
}

/* ---- NOTIFICATIONS ---- */
.notification-container {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.notification {
  background: #f8d7c0;
  color: #211a13;
  padding: 12px 18px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideIn 0.3s var(--ease), fadeOut 0.3s var(--ease) 1.7s forwards;
  position: relative;
}

.notification::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #211a13;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.notification.remove {
  background: #e8e0d4;
}

.notification-icon {
  font-size: 18px;
  font-weight: 700;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}

@media (max-width: 768px) {
  .notification-container {
    top: 70px;
    right: 10px;
    left: 10px;
  }
  
  .notification {
    font-size: 13px;
    padding: 10px 14px;
  }
}

/* ---- MINI CART ---- */
.mini-cart {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 320px;
  max-height: 500px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s var(--ease);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.mini-cart.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mini-cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.mini-cart-header h4 {
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin: 0;
}

.mini-cart-close {
  background: none;
  border: none;
  font-size: 28px;
  color: var(--smoke);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
  line-height: 1;
}

.mini-cart-close:hover {
  background: var(--line);
  color: var(--ink);
}

.mini-cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 0;
  min-height: 0;
}

.mini-cart-body::-webkit-scrollbar {
  width: 6px;
}

.mini-cart-body::-webkit-scrollbar-track {
  background: var(--cream);
}

.mini-cart-body::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 3px;
}

.mini-cart-body::-webkit-scrollbar-thumb:hover {
  background: var(--smoke);
}

.mini-cart-loading {
  padding: 40px 20px;
  text-align: center;
  color: var(--smoke);
  font-size: 13px;
}

.mini-cart-empty {
  padding: 40px 20px;
  text-align: center;
}

.mini-cart-empty p {
  color: var(--smoke);
  font-size: 14px;
  margin-bottom: 16px;
}

.mini-cart-items {
  display: flex;
  flex-direction: column;
}

.mini-cart-item {
  display: flex;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s;
}

.mini-cart-item:hover {
  background: var(--cream);
}

.mini-cart-item-img {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  background: var(--cream);
}

.mini-cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.mini-cart-item-details a {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.mini-cart-item-details a:hover {
  color: var(--orange);
}

.mini-cart-item-qty {
  font-size: 12px;
  color: var(--smoke);
}

.mini-cart-item-remove {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  padding-top: 4px;
}

.mini-cart-remove {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: 50%;
  color: var(--smoke);
  font-size: 18px;
  transition: all 0.3s;
  line-height: 1;
}

.mini-cart-remove:hover {
  background: var(--pink);
  color: #fff;
}

.mini-cart-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.mini-cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-family: "Baloo 2", sans-serif;
  font-weight: 600;
  font-size: 14px;
}

.mini-cart-total {
  color: var(--orange);
  font-weight: 700;
  font-size: 16px;
}

.mini-cart-actions {
  display: flex;
  gap: 10px;
}

.mini-cart-actions .btn {
  flex: 1;
  justify-content: center;
  font-size: 13px;
  padding: 11px 16px;
}

/* ---- NAV STRIP ---- */
.nav-strip { background: var(--ink); }
.nav-strip ul { list-style: none; display: flex; gap: 32px; justify-content: center; padding: 13px 0; flex-wrap: wrap; }
.nav-strip > ul > li { position: relative; }
.nav-strip li { list-style: none; }
.nav-strip a { font-size: 12.5px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: #fff; opacity: 0.85; }
.nav-strip a:hover { opacity: 1; color: var(--orange); }

/* Desktop Dropdown */
.nav-strip .menu-item-has-children { position: relative; }
.nav-strip .dropdown-btn { display: none; }

.nav-strip .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--ink);
  min-width: 200px;
  padding: 12px 0;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
  z-index: 100;
}

.nav-strip .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-strip .sub-menu li {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  list-style: none;
}
.nav-strip .sub-menu li:last-child { border-bottom: none; }
.nav-strip .sub-menu a {
  color: rgba(255,255,255,0.85);
  padding: 10px 20px;
  font-size: 13px;
  white-space: nowrap;
  text-transform: none;
  letter-spacing: normal;
}
.nav-strip .sub-menu a:hover { color: var(--orange); background: rgba(255,255,255,0.1); }

/* ---- BURGER ---- */
.burger { display: none; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; width: 26px; height: 20px; position: relative; z-index: 210; flex-shrink: 0; }
.burger span { width: 100%; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.25s var(--ease); }
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay { position: fixed; inset: 0; background: rgba(33,26,19,0.5); opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease); z-index: 190; }
.nav-overlay.active { opacity: 1; pointer-events: auto; }

/* Mobile Panel - Hidden on desktop */
.mobile-panel { display: none; }

@media (max-width: 920px) {
  .search-box { display: none; }
  .burger { display: flex; }
  .nav-strip { display: none; }
  .mobile-panel {
    display: flex;
    flex-direction: column;
    position: fixed; top: 0; right: 0; height: 100vh; width: min(80vw, 340px);
    background: #fff; z-index: 205; padding: 100px 30px 40px;
    transform: translateX(100%); transition: transform 0.45s var(--ease);
    box-shadow: -10px 0 40px rgba(0,0,0,0.14);
    overflow-y: auto;
  }
  .mobile-panel.active { transform: translateX(0); }
  .mobile-panel ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
  .mobile-panel ul li { border-bottom: 1px solid var(--line); }
  .mobile-panel a { display: block; padding: 16px 4px; font-size: 15px; color: var(--ink); font-weight: 600; }

  /* Mobile Mini Cart */
  .mini-cart {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    border-radius: 0;
    max-width: none;
    transform: translateX(100%);
    z-index: 310;
    max-height: 100vh;
  }
  .mini-cart.active {
    transform: translateX(0);
  }
  .mini-cart-header {
    padding: 20px;
    background: var(--cream);
    flex-shrink: 0;
  }
  .mini-cart-body {
    flex: 1;
    overflow-y: auto;
    min-height: 0;
  }
  .mini-cart-footer {
    background: #fff;
    border-top: 1px solid var(--line);
    flex-shrink: 0;
  }

  /* Mobile Accordion Submenu */
  .mobile-panel .menu-item-has-children {
    position: relative;
  }
  .mobile-panel .menu-item-has-children > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 40px;
  }
  .mobile-panel .menu-item-has-children .dropdown-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: var(--cream);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
  }
  .mobile-panel .menu-item-has-children .dropdown-btn::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid var(--ink);
    transition: transform 0.3s var(--ease);
  }
  .mobile-panel .menu-item-has-children.active .dropdown-btn {
    background: var(--orange);
    border-color: var(--orange);
  }
  .mobile-panel .menu-item-has-children.active .dropdown-btn::before {
    border-top-color: #fff;
    transform: rotate(180deg);
  }

  .mobile-panel .sub-menu {
    display: none;
    background: #fff;
    padding: 0;
    border-bottom: 1px solid var(--line);
  }
  .mobile-panel .menu-item-has-children.active .sub-menu { display: block; }
  .mobile-panel .sub-menu li {
    border-bottom: 1px solid var(--line);
    border-left: none;
    list-style: none;
  }
  .mobile-panel .sub-menu li:last-child { border-bottom: none; }
  .mobile-panel .sub-menu a {
    padding: 16px 4px;
    font-size: 15px;
    color: var(--ink);
    font-weight: 600;
  }
  .mobile-panel .sub-menu a:hover { color: var(--orange); }
}

/* ---- HERO SLIDER ---- */
.hero { background: var(--ink); }
.hero-slider { position: relative; width: 100%; overflow: hidden; }
.hero-track { display: flex; transition: transform 0.7s var(--ease); }
.hero-slide { flex: 0 0 100%; position: relative; overflow: hidden; height: clamp(340px, 60vw, 1280px); }
.hero-slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1); transition: transform 6s linear; }
.hero-slide.zoom img { transform: scale(1.08); }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 10px 24px rgba(0,0,0,0.25); z-index: 5;
  transition: transform 0.3s var(--ease), background 0.3s; color: var(--ink);
}
.hero-arrow:hover { background: var(--orange); color: #fff; transform: translateY(-50%) scale(1.08); }
.hero-arrow.prev { left: 20px; }
.hero-arrow.next { right: 20px; }
.hero-dots { position: absolute; bottom: 22px; left: 0; right: 0; display: flex; justify-content: center; gap: 9px; z-index: 5; }
.hero-dots i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; display: block; transition: all 0.3s; }
.hero-dots i.active { background: var(--orange); width: 26px; border-radius: 5px; }
@media (max-width: 720px) {
  .hero-arrow { width: 38px; height: 38px; }
  .hero-arrow svg { width: 14px; height: 14px; }
}

/* ---- TRUST STRIP ---- */
.trust-strip { background: var(--ink); padding: 7px 0; overflow: hidden; }
.trust-ticker-wrap { width: 100%; overflow: hidden; display: flex; align-items: center; }
.trust-ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  flex-wrap: nowrap;
  flex-shrink: 0;
  animation: trust-scroll 32s linear infinite;
}
.trust-ticker-track:hover { animation-play-state: paused; }
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  white-space: nowrap;
  color: rgba(255,255,255,0.85);
}
.trust-item b { font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: 13px; color: var(--orange); }
.trust-item span { font-size: 11px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.04em; }
.trust-sep { color: var(--orange); opacity: 0.5; flex-shrink: 0; font-size: 11px; line-height: 1; padding: 0 4px; }
@keyframes trust-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- CATEGORY BAND ---- */
.cat-band { background: var(--cream); padding: 44px 0; }
.cat-icons { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.cat-icon-item { display: flex; flex-direction: column; align-items: center; gap: 12px; flex: 1; min-width: 100px; cursor: pointer; }
.cat-icon-circle { width: 150px; height: 150px; border-radius: 50%; overflow: hidden; box-shadow: 0 8px 18px rgba(0,0,0,0.08); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); background: #fff; border: 3px solid #fff; }
.cat-icon-item:hover .cat-icon-circle { transform: translateY(-8px) scale(1.06); box-shadow: 0 18px 30px rgba(0,0,0,0.14); }
.cat-icon-circle img { width: 100%; height: 100%; object-fit: cover; }
.cat-icon-item span { font-family: "Baloo 2", sans-serif; font-weight: 600; font-size: 12.5px; text-align: center; }

/* ---- SPOTLIGHT BANNER ---- */
.spotlight-section { padding: 84px 0 0; }
.spotlight-frame { position: relative; border-radius: 26px; overflow: hidden; box-shadow: 0 30px 60px -20px rgba(0,0,0,0.35); }
.spotlight-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.55) 100%); pointer-events: none; }
.spotlight-frame img { width: 100%; height: auto; display: block; transition: transform 0.7s var(--ease); }
.spotlight-frame:hover img { transform: scale(1.035); }
.spotlight-badge { position: absolute; top: 20px; left: 20px; background: rgba(255,255,255,0.95); color: var(--ink); font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 12px; padding: 8px 16px; border-radius: 999px; z-index: 2; box-shadow: 0 8px 18px rgba(0,0,0,0.18); }
.spotlight-cta-float { position: relative; display: flex; justify-content: center; margin-top: -28px; z-index: 3; }
.spotlight-cta-float .btn { box-shadow: 0 16px 34px rgba(0,0,0,0.3); font-size: 15px; padding: 16px 34px; }
section.spotlight-section.reveal.is-visible { padding-bottom: 84px; }
@media (max-width: 720px) {
  .spotlight-frame { border-radius: 18px; }
  .spotlight-cta-float { margin-top: -22px; }
  .spotlight-cta-float .btn { font-size: 13px; padding: 13px 24px; }
}

/* ---- BEST SELLERS ---- */
.bs-section { padding: 0 0 84px; }
.bs-outer { position: relative; }
.bs-arrow { position: absolute; top: 40%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: var(--ink); display: flex; align-items: center; justify-content: center; cursor: pointer; color: #fff; z-index: 5; box-shadow: 0 10px 20px rgba(0,0,0,0.2); transition: transform 0.3s var(--ease), background 0.3s; }
.bs-arrow:hover { background: var(--orange); transform: translateY(-50%) scale(1.08); }
.bs-arrow.prev { left: 20px; }
.bs-arrow.next { right: 20px; }
.bs-scroller { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 6px 4px 12px; scroll-behavior: smooth; }
.bs-scroller::-webkit-scrollbar { display: none; }
.bs-card { scroll-snap-align: start; flex: 0 0 333px; position: relative; transition: transform 0.35s var(--ease); border: 1px solid #ddd; padding: 22px; border-radius: 20px; background: #fff; }
.bs-card:hover { transform: translateY(-6px); }
section#bestsellers .wrap, section#new-arrivals .wrap { width: 100%; max-width: 100%; padding: 0 20px; }
.bs-ribbon { position: absolute; top: 10px; left: 10px; color: #fff; font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 10.5px; padding: 5px 12px; border-radius: 999px; text-transform: uppercase; z-index: 2; }
.bs-media { aspect-ratio: 1/1; border-radius: 16px; overflow: hidden; background: var(--cream); margin-bottom: 14px; box-shadow: 0 10px 24px rgba(0,0,0,0.06); }
.bs-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.bs-card:hover .bs-media img { transform: scale(1.07); }
.bs-card h3 { font-family: "Inter", sans-serif; font-weight: 700; font-size: 14.5px; margin-bottom: 6px; line-height: 1.4; }
.bs-card .item-no { font-family: "Baloo 2", sans-serif; font-weight: 700; color: var(--orange-deep); font-size: 13px; margin-bottom: 12px; }
.bs-actions { display: flex; gap: 8px; }
.bs-actions .btn { flex: 1; justify-content: center; padding: 9px 8px; font-size: 12px; }

/* ---- WHY EXPLORE SERIES ---- */
.why-section { background: var(--cream); padding: 84px 0; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.why-card { background: #fff; border-radius: 20px; padding: 34px 26px; text-align: center; box-shadow: 0 8px 22px rgba(0,0,0,0.05); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.why-card:hover { transform: translateY(-8px); box-shadow: 0 20px 36px rgba(0,0,0,0.1); }
.why-circle { width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; transition: transform 0.4s var(--ease); }
.why-card:hover .why-circle { transform: scale(1.12) rotate(-6deg); }
.why-card h3 { font-size: 15.5px; margin-bottom: 8px; }
.why-card p { font-size: 12.5px; color: var(--smoke); line-height: 1.6; }
@media (max-width: 820px) { .why-grid { grid-template-columns: 1fr 1fr; } }

/* ---- QUALITY / SAFETY ---- */
.quality-section { padding: 0 0 84px; text-align: center; }
.quality-icons { display: flex; justify-content: center; gap: 50px; flex-wrap: wrap; margin-top: 40px; }
.quality-item { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.quality-item svg { width: 44px; height: 44px; color: var(--ink); opacity: 0.75; }
.quality-item b { font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 13px; }
.quality-item span { font-size: 11px; color: var(--smoke); }

/* ---- NEW LINE / DIY SECTION ---- */
.newline-section { background: linear-gradient(150deg, #fdeef6 0%, #eef1fd 55%, #eaf7fb 100%); padding: 80px 0; overflow: hidden; position: relative; }
.newline-section::before, .newline-section::after { content: "✦"; position: absolute; font-size: 28px; color: rgba(233,64,87,0.25); }
.newline-section::before { top: 40px; left: 6%; }
.newline-section::after { bottom: 60px; right: 8%; font-size: 20px; color: rgba(124,92,214,0.3); }
.newline-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 56px; align-items: center; }
.newline-visual { position: relative; }
.newline-visual .card-tilt { border-radius: 24px; overflow: hidden; transform: rotate(-3deg); box-shadow: 0 30px 60px -18px rgba(120,60,140,0.35); transition: transform 0.5s var(--ease); border: 6px solid #fff; }
.newline-visual:hover .card-tilt { transform: rotate(0deg) scale(1.02); }
.newline-visual .float-chip { position: absolute; background: #fff; border-radius: 16px; padding: 10px 16px; box-shadow: 0 14px 30px rgba(0,0,0,0.14); font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 12.5px; display: flex; align-items: center; gap: 8px; }
.newline-visual .chip-1 { top: -16px; right: 6%; color: var(--pink); animation: bob 3.4s ease-in-out infinite; }
.newline-visual .chip-2 { bottom: -14px; left: 2%; color: var(--purple); animation: bob 4s ease-in-out infinite 0.4s; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.newline-copy .eyebrow { color: var(--pink); }
.newline-copy h2 { font-size: clamp(26px, 3.2vw, 38px); margin: 10px 0 16px; }
.newline-copy h2 i { font-style: italic; background: linear-gradient(90deg, var(--pink), var(--purple)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.newline-copy p { color: var(--smoke); font-size: 14.5px; line-height: 1.75; max-width: 46ch; margin-bottom: 26px; }
.newline-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 30px; }
.newline-feat { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.7); border-radius: 12px; padding: 10px 14px; font-size: 12.5px; font-weight: 600; }
.newline-feat .dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
@media (max-width: 820px) { .newline-grid { grid-template-columns: 1fr; } .newline-visual { order: -1; } }

/* ---- HOW IT WORKS (zigzag timeline) ---- */
.how-section { background: #fff; padding: 84px 0; }
.how-line { position: relative; }
.how-line::before { content: ""; position: absolute; left: 50%; top: 26px; bottom: 26px; width: 2px; background: repeating-linear-gradient(180deg, var(--line) 0 10px, transparent 10px 20px); transform: translateX(-50%); }
.how-row { display: flex; align-items: center; gap: 30px; margin-bottom: 50px; position: relative; }
.how-row:last-child { margin-bottom: 0; }
.how-row.reverse { flex-direction: row-reverse; }
.how-row .how-card, .how-row .empty-side { flex: 1; min-width: 0; }
.how-num { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: 20px; color: #fff; position: relative; z-index: 2; box-shadow: 0 10px 22px rgba(0,0,0,0.16); }
.how-card { background: var(--cream); border-radius: 18px; padding: 26px 28px; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.how-card:hover { transform: translateY(-6px); box-shadow: 0 18px 32px rgba(0,0,0,0.08); }
.how-row:not(.reverse) .how-card { text-align: right; }
.how-card h3 { font-size: 17px; margin-bottom: 8px; }
.how-card p { font-size: 13px; color: var(--smoke); line-height: 1.6; }
@media (max-width: 820px) {
  .how-line::before { left: 26px; }
  .how-row, .how-row.reverse { flex-direction: row; }
  .how-row .empty-side { display: none; }
  .how-row .how-card { text-align: left !important; order: 2; }
  .how-row .how-num { order: 1; }
}

/* ---- TESTIMONIALS ---- */
.testi-section { background: var(--ink); padding: 84px 0; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 32px 28px; }
.testi-card .stars { color: var(--orange); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card q { color: #fff; font-size: 14.5px; line-height: 1.7; display: block; margin-bottom: 20px; font-style: italic; }
.testi-card .who { font-family: "Baloo 2", sans-serif; font-weight: 600; font-size: 13px; color: var(--orange); }
.testi-card .who span { display: block; font-family: "Inter", sans-serif; font-weight: 400; color: rgba(255,255,255,0.5); font-size: 11.5px; margin-top: 2px; }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }

/* ---- NEWSLETTER CTA ---- */
.news-section { padding: 60px 0; }
.news-band { background: linear-gradient(135deg, var(--orange), var(--orange-deep)); color: #fff; border-radius: 26px; padding: 52px 46px; display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; }
.news-band h3 { font-size: 24px; margin-bottom: 6px; }
.news-band p { color: rgba(255,255,255,0.85); font-size: 13.5px; }
.news-form { display: flex; background: #fff; border-radius: 999px; padding: 6px; gap: 6px; min-width: 320px; }
.news-form input { flex: 1; border: none; outline: none; padding: 10px 16px; font-size: 13.5px; border-radius: 999px; }
.news-form button { background: var(--ink); color: #fff; border: none; padding: 10px 22px; border-radius: 999px; font-family: "Baloo 2", sans-serif; font-weight: 600; font-size: 13px; cursor: pointer; transition: background 0.3s; }
.news-form button:hover { background: #000; }
@media (max-width: 820px) { .news-band { flex-direction: column; text-align: center; } .news-form { min-width: 0; width: 100%; } }

/* ---- FOOTER ---- */
footer { background: #f7f1e6; padding: 70px 0 26px; color: var(--smoke); }
.foot-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid var(--line); }
.foot-brand p { font-size: 13px; line-height: 1.7; max-width: 30ch; margin-top: 14px; }
.foot-col h4 { font-family: "Baloo 2", sans-serif; font-weight: 600; font-size: 13.5px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink); margin-bottom: 18px; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.foot-col a { font-size: 13px; transition: color 0.3s; }
.foot-col a:hover { color: var(--orange); }
.foot-bottom { padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: 12px; }
.foot-social { display: flex; gap: 16px; }
.foot-socialC a { width: 36px; height: 36px; border-radius: 50%; background: rgba(0,0,0,0.07); display: flex; align-items: center; justify-content: center; transition: background 0.3s, color 0.3s; color: var(--ink); }
.foot-socialC a:hover { background: var(--orange); color: #fff; }
.foot-social svg { width: 16px; height: 16px; }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; row-gap: 34px; } }

/* ---- FLOATING BUTTONS ---- */
.float-stack { position: fixed; left: 24px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; align-items: center; gap: 12px; z-index: 9999; }
.fab { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 8px 20px rgba(0,0,0,0.2); transition: transform 0.3s var(--ease); position: relative; }
.fab:hover { transform: scale(1.08); }

/* Social media buttons - original brand colors */
.fab-instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.fab-instagram svg { width: 20px; height: 20px; fill: #fff; }
.fab-instagram .fab-tooltip { left: 55px; }
.fab-instagram:hover .fab-tooltip { opacity: 1; transform: translateY(-50%) translateX(0); }

.fab-tiktok { background: #000; }
.fab-tiktok svg { width: 20px; height: 20px; fill: #fff; }
.fab-tiktok .fab-tooltip { left: 55px; }
.fab-tiktok:hover .fab-tooltip { opacity: 1; transform: translateY(-50%) translateX(0); }

.fab-facebook { background: #1877f2; }
.fab-facebook svg { width: 20px; height: 20px; fill: #fff; }
.fab-facebook .fab-tooltip { left: 55px; }
.fab-facebook:hover .fab-tooltip { opacity: 1; transform: translateY(-50%) translateX(0); }

.fab-whatsapp { background: #25d366; }
.fab-whatsapp svg { width: 20px; height: 20px; fill: #fff; }
.fab-whatsapp .ring { position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25d366; animation: ringpulse 2.2s ease-out infinite; }
@keyframes ringpulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.6); opacity: 0; } }
.fab-whatsapp .fab-tooltip { left: 55px; }
.fab-whatsapp:hover .fab-tooltip { opacity: 1; transform: translateY(-50%) translateX(0); }

.fab-tooltip { position: absolute; left: 55px; top: 50%; transform: translateY(-50%) translateX(-6px); background: var(--ink); color: #fff; padding: 6px 12px; border-radius: 6px; font-size: 11px; white-space: nowrap; opacity: 0; pointer-events: none; transition: all 0.3s var(--ease); font-weight: 500; }

/* Back to top button - separate on right */
.fab-top { 
  position: fixed; 
  right: 24px; 
  bottom: 24px; 
  width: 42px; 
  height: 42px; 
  background: #fff; 
  border: 1.5px solid var(--line); 
  color: var(--ink); 
  opacity: 0; 
  pointer-events: none; 
  transform: translateY(10px); 
  z-index: 9999;
  transition: all 0.3s var(--ease);
}
.fab-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.fab-top:hover { background: var(--ink); color: #fff; }


@media (max-width: 768px) {
  .float-stack { 
    left: 12px; 
    top: 50%;
    transform: translateY(-50%);
    gap: 10px;
  }
  
  .fab { 
    width: 38px; 
    height: 38px; 
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }
  .fab svg { width: 18px; height: 18px; }
  .fab-top { 
    width: 36px; 
    height: 36px; 
    right: 16px;
    bottom: 16px;
  }
  .fab-tooltip { 
    display: none; 
  }
}

@media (max-width: 480px) {
  .float-stack { 
    left: 10px; 
    top: 50%;
    transform: translateY(-50%);
    gap: 8px;
  }
  .fab { 
    width: 34px; 
    height: 34px; 
  }
  .fab svg { width: 16px; height: 16px; }
  .fab-top { 
    width: 32px; 
    height: 32px; 
    right: 12px;
    bottom: 12px;
  }
}

/* ---- WooCommerce integration overrides ---- */
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-family: "Inter", sans-serif; font-size: 14px; font-weight: 700; }
.woocommerce ul.products li.product .price { color: var(--orange-deep); font-family: "Baloo 2", sans-serif; font-weight: 700; }
.woocommerce a.button, .woocommerce button.button { background: var(--orange); color: #fff; border-radius: 999px; font-family: "Baloo 2", sans-serif; font-weight: 600; transition: background 0.3s; }
.woocommerce a.button:hover, .woocommerce button.button:hover { background: var(--orange-deep); color: #fff; }
.woocommerce-message { border-top-color: var(--orange); }
.woocommerce-message a.button { background: var(--ink); }

/* ---- WooCommerce Checkout Page ---- */
.woocommerce-checkout .woocommerce {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.woocommerce-checkout .col2-set {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-shipping-fields {
  margin-bottom: 30px;
}

.woocommerce-checkout h3 {
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 20px;
}

.woocommerce-checkout label {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--ink);
}

.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout select,
.woocommerce-checkout textarea {
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.woocommerce-checkout input:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245, 130, 31, 0.1);
}

.woocommerce-checkout #order_review_heading {
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 20px;
}

.woocommerce-checkout #order_review {
  background: var(--cream);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--line);
}

.woocommerce-checkout .woocommerce-checkout-review-order-table {
  border: none;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table th {
  font-family: "Baloo 2", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  border: none;
  padding: 12px 0;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table td {
  border: none;
  padding: 12px 0;
  font-size: 14px;
}

.woocommerce-checkout .cart-subtotal th,
.woocommerce-checkout .order-total th {
  font-weight: 700;
}

.woocommerce-checkout .order-total {
  border-top: 2px solid var(--line);
  margin-top: 12px;
  padding-top: 12px;
}

.woocommerce-checkout .order-total th,
.woocommerce-checkout .order-total td {
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--orange);
}

.woocommerce-checkout .payment_methods {
  border: none;
  padding: 0;
  margin: 20px 0;
}

.woocommerce-checkout .payment_box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  margin-top: 12px;
}

.woocommerce-checkout .payment_methods li {
  margin-bottom: 12px;
}

.woocommerce-checkout .payment_methods input[type="radio"] {
  accent-color: var(--orange);
}

.woocommerce-checkout .button {
  background: var(--orange);
  color: #fff;
  border-radius: 999px;
  font-family: "Baloo 2", sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  width: 100%;
  transition: background 0.3s, transform 0.3s;
}

.woocommerce-checkout .button:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 130, 31, 0.3);
}

/* ---- WooCommerce Order Confirmation/Thank You Page ---- */
.woocommerce-order-received .woocommerce {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.woocommerce-order-received .woocommerce-thankyou-order-received {
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--ink);
  margin-bottom: 16px;
}

.woocommerce-order-received .woocommerce-thankyou-order-received::before {
  content: "✓";
  display: block;
  width: 80px;
  height: 80px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  font-size: 40px;
  line-height: 80px;
  margin: 0 auto 24px;
  box-shadow: 0 12px 30px rgba(26, 158, 92, 0.3);
}

.woocommerce-order-received .woocommerce-thankyou-details {
  background: var(--cream);
  border-radius: 16px;
  padding: 30px;
  margin: 30px 0;
  text-align: left;
  border: 1px solid var(--line);
}

.woocommerce-order-received .woocommerce-thankyou-details strong {
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  color: var(--ink);
}

.woocommerce-order-received .woocommerce-order-details {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  margin: 30px 0;
  border: 1px solid var(--line);
}

.woocommerce-order-received .woocommerce-order-details h2 {
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 20px;
}

.woocommerce-order-received .woocommerce-table-order-details {
  border: none;
}

.woocommerce-order-received .woocommerce-table-order-details th {
  font-family: "Baloo 2", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  border: none;
  padding: 12px 0;
  background: none;
}

.woocommerce-order-received .woocommerce-table-order-details td {
  border: none;
  padding: 12px 0;
  font-size: 14px;
}

.woocommerce-order-received .woocommerce-table-order-details tfoot th {
  font-weight: 700;
  border-top: 2px solid var(--line);
  padding-top: 16px;
}

.woocommerce-order-received .woocommerce-table-order-details tfoot td {
  border-top: 2px solid var(--line);
  padding-top: 16px;
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  color: var(--orange);
}

.woocommerce-order-received .woocommerce-customer-details {
  background: var(--cream);
  border-radius: 16px;
  padding: 30px;
  margin: 30px 0;
  border: 1px solid var(--line);
}

.woocommerce-order-received .woocommerce-customer-details h2 {
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 20px;
}

.woocommerce-order-received .woocommerce-customer-details address {
  font-size: 14px;
  color: var(--smoke);
  line-height: 1.8;
}

.woocommerce-order-received .wc-bacs-bank-details-account-name {
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}

/* ---- WooCommerce Cart Page ---- */
.woocommerce-cart .woocommerce {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

.woocommerce-cart .cart-collaterals {
  margin-top: 40px;
}

.woocommerce-cart .cart_totals {
  background: var(--cream);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--line);
}

.woocommerce-cart .cart_totals h2 {
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 20px;
}

.woocommerce-cart table.shop_table {
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.woocommerce-cart table.shop_table th {
  background: var(--cream);
  font-family: "Baloo 2", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  padding: 16px;
  border: none;
}

.woocommerce-cart table.shop_table td {
  padding: 16px;
  border: none;
  border-bottom: 1px solid var(--line);
  font-family: "Inter", sans-serif;
  font-size: 14px;
}

.woocommerce-cart table.shop_table td:last-child {
  border-bottom: none;
}

.woocommerce-cart .product-remove a {
  color: var(--smoke);
  font-size: 20px;
  transition: color 0.3s;
}

.woocommerce-cart .product-remove a:hover {
  color: var(--pink);
}

.woocommerce-cart .product-name a {
  color: var(--ink);
  font-weight: 600;
  transition: color 0.3s;
}

.woocommerce-cart .product-name a:hover {
  color: var(--orange);
}

.woocommerce-cart .product-price,
.woocommerce-cart .product-subtotal {
  font-weight: 600;
  color: var(--ink);
}

.woocommerce-cart .quantity input[type="number"] {
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 8px 12px;
  width: 80px;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 14px;
}

.woocommerce-cart .wc-proceed-to-checkout a.button {
  background: var(--orange);
  color: white;
  border-radius: 999px;
  font-family: "Baloo 2", sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  width: 100%;
  transition: background 0.3s, transform 0.3s;
  margin-top: 16px;
}

.woocommerce-cart .wc-proceed-to-checkout a.button:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 130, 31, 0.3);
}

.woocommerce-cart .coupon input[type="text"] {
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 12px 16px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
}

.woocommerce-cart .coupon button.button {
  background: var(--ink);
  color: white;
  border-radius: 999px;
  font-family: "Baloo 2", sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
}

.woocommerce-cart .coupon button.button:hover {
  background: #000;
}

/* Add padding to checkout page container */
.woocommerce-checkout .woocommerce {
  padding: 40px 0;
}

/* ---- WooCommerce Button Styling ---- */
.woocommerce-cart .wc-proceed-to-checkout a.button,
.woocommerce-checkout #place_order,
.woocommerce-cart button.button,
.woocommerce-checkout button.button {
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 999px;
  font-family: "Baloo 2", sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  width: 100%;
  transition: background 0.3s, transform 0.3s;
  box-shadow: none;
}

.woocommerce-cart .wc-proceed-to-checkout a.button:hover,
.woocommerce-checkout #place_order:hover,
.woocommerce-cart button.button:hover,
.woocommerce-checkout button.button:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 130, 31, 0.3);
  color: white;
}

/* Mobile responsiveness for cart/checkout */
@media (max-width: 768px) {
  .woocommerce-cart .woocommerce,
  .woocommerce-checkout .woocommerce {
    padding: 20px;
  }
  
  .woocommerce-cart table.shop_table {
    font-size: 13px;
  }
}

/* ---- Product Detail Page ---- */
.es-single-product { padding: 60px 0; }
.es-product-gallery { border-radius: 20px; overflow: hidden; }
.es-product-info h1 { font-size: clamp(24px, 3vw, 36px); margin-bottom: 12px; }
.es-product-price { font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: 28px; color: var(--orange); margin-bottom: 20px; }
.es-product-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.es-badge { background: var(--cream); border-radius: 999px; padding: 6px 14px; font-size: 12px; font-weight: 600; color: var(--ink); }
.es-badge-age { background: var(--peach-bg); color: var(--orange-deep); }
.es-add-to-cart .btn { width: 100%; justify-content: center; font-size: 16px; padding: 16px 32px; margin-bottom: 12px; }
.es-buy-now .btn { width: 100%; justify-content: center; font-size: 16px; padding: 16px 32px; background: var(--ink); color: #fff; border-radius: 999px; }
.es-product-features { margin-top: 30px; }
.es-product-features ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.es-product-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; }
.es-product-features li::before { content: "✓"; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* ---- FAQ Section ---- */
.es-faq { padding: 60px 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; cursor: pointer; font-family: "Baloo 2", sans-serif; font-weight: 600; font-size: 16px; transition: color 0.3s; }
.faq-q:hover { color: var(--orange); }
.faq-q svg { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.3s var(--ease); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 20px; font-size: 14px; color: var(--smoke); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ---- Product Reviews ---- */
.es-reviews { padding: 60px 0; background: var(--cream); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: #fff; border-radius: 18px; padding: 28px; box-shadow: 0 6px 18px rgba(0,0,0,0.05); }
.review-stars { color: var(--orange); font-size: 14px; margin-bottom: 12px; }
.review-card p { font-size: 13.5px; color: var(--smoke); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.reviewer-info { font-family: "Baloo 2", sans-serif; font-weight: 600; font-size: 13px; }
.reviewer-info span { display: block; font-family: "Inter", sans-serif; font-weight: 400; font-size: 11px; color: var(--smoke); margin-top: 2px; }
@media (max-width: 820px) { .review-grid { grid-template-columns: 1fr; } }

@media (max-width: 900px) {
  .head-row { padding-left: 20px; padding-right: 20px; }
  .cat-icon-circle { width: 100px; height: 100px; }
}


@media(max-width:480px)
{
  nav.mobile-panel {
    display: block;
  }
}

.topbar .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--orange-deep);
    gap: 10px;
    flex-wrap: wrap;
}

/* =========================================================
   User Account Dropdown — header
   ========================================================= */

.es-user-menu {
  position: relative;
  display: flex;
  align-items: center;
}

/* Guest (logged-out) icon */
.es-user-menu__guest {
  display: flex;
  align-items: center;
  color: var(--ink);
  transition: color 0.25s;
}
.es-user-menu__guest:hover { color: var(--orange); }

/* Logged-in trigger button */
.es-user-menu__trigger {
  display: flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 999px;
  color: var(--ink);
  transition: background 0.22s;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
}
.es-user-menu__trigger:hover { background: var(--cream); }

.es-user-menu__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--line);
  flex-shrink: 0;
}

.es-user-menu__name {
  max-width: 90px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 11.5px;
}

.es-user-menu__caret {
  color: var(--smoke);
  flex-shrink: 0;
  transition: transform 0.25s;
  width: 8px !important;
}
.es-user-menu__trigger[aria-expanded="true"] .es-user-menu__caret {
  transform: rotate(180deg);
}

/* Dropdown panel */
.es-user-menu__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  z-index: 300;
  overflow: hidden;
  animation: esDropIn 0.18s ease;
}
.es-user-menu__dropdown[hidden] { display: none; }

@keyframes esDropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* User info block */
.es-user-menu__info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}
.es-user-menu__dropdown-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--line);
  flex-shrink: 0;
}
.es-user-menu__info-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.es-user-menu__info-text strong {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.es-user-menu__info-text span {
  font-size: 11.5px;
  color: var(--smoke);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Menu links */
.es-user-menu__dropdown ul {
  list-style: none;
  padding: 6px 0;
  margin: 0;
}
.es-user-menu__dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
}
.es-user-menu__dropdown li a:hover {
  background: var(--cream);
  color: var(--orange);
}
.es-user-menu__dropdown li a svg { flex-shrink: 0; color: var(--smoke); }
.es-user-menu__dropdown li a:hover svg { color: var(--orange); }

/* Separator */
.es-user-menu__sep {
  height: 1px;
  background: var(--line);
  margin: 4px 0;
}

/* Logout — red tint */
.es-user-menu__logout { color: #c62828 !important; }
.es-user-menu__logout svg { color: #c62828 !important; }
.es-user-menu__dropdown li:has(.es-user-menu__logout):hover a {
  background: #fdf0f0 !important;
}

/* Mobile: hide name, keep dropdown behaviour identical to desktop */
@media (max-width: 920px) {
  .es-user-menu__name  { display: none; }
  .es-user-menu__caret { display: none; }

  /* Same drop-down positioning as desktop — no bottom sheet */
  .es-user-menu__dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    bottom: auto;
    left: auto;
    width: 220px;
    min-width: 220px;
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    animation: esDropIn 0.18s ease;
  }
}

/* =========================================================
   Language Switcher — Google Translate compact dropdown
   ========================================================= */

/* Topbar needs flex to push switcher to the right */
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: nowrap;
}
.topbar .wrap span {
  flex: 1;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange-deep);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Wrap sits at the right end */
.es-gt-wrap {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: auto;
  z-index: 999999;
}

/* Trigger button */
.es-gt-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 999px;
  padding: 3px 9px;
  font-family: "Baloo 2", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--orange-deep);
  cursor: pointer;
  white-space: nowrap;
  transition: border-color .2s, background .2s;
  letter-spacing: 0.04em;
}
.es-gt-btn:hover { border-color: var(--orange-deep); background: rgba(0,0,0,0.05); }
.es-gt-btn[aria-expanded="true"] svg:last-child { transform: rotate(180deg); }
.es-gt-btn svg { flex-shrink: 0; transition: transform .22s; }

/* Dropdown — opens downward from topbar */
.es-gt-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  left: auto;
  min-width: 140px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0,0,0,.12);
  z-index: 999999;
  overflow: hidden;
  list-style: none;
  padding: 5px 0;
  margin: 0;
  animation: esDropIn .18s ease;
}
.es-gt-dropdown[hidden] { display: none; }

/* Options */
.es-gt-option {
  display: block;
  width: 100%;
  padding: 9px 16px;
  background: none;
  border: none;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  cursor: pointer;
  transition: background .18s, color .18s;
}
.es-gt-option:hover { background: var(--cream); color: var(--orange); }
.es-gt-option.es-gt-active { color: var(--orange); background: var(--peach-bg); }

/* Hide Google's floating toolbar */
.goog-te-banner-frame,
.skiptranslate { display: none !important; }
body { top: 0 !important; }

/* Mobile — adjust topbar for smaller screens */
@media (max-width: 720px) {
  .topbar .wrap span { 
    font-size: 10px; 
    white-space: normal;
    text-align: left;
  }
  .es-gt-wrap { margin-left: 0; }
  .topbar .wrap { 
    justify-content: space-between;
    gap: 8px;
  }
  .es-gt-label { display: inline; }
}
