/* ===== DESIGN TOKENS ===== */
:root {
  --brand:        #0099ff;
  --brand-dark:   #007acc;
  --brand-light:  #33aaff;
  --accent:       #163029;
  --accent-mid:   #1e4035;
  --bg:           #ffffff;
  --bg-dark:      #f4f4f2;
  --bg-blue-soft: #e8f4ff;
  --text:         #163029;
  --text-light:   rgba(22,48,41,0.65);
  --radius:       8px;
  --font:         'Plus Jakarta Sans', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--bg); font-size: 14px; line-height: 1.6; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font); cursor: pointer; border: none; }
textarea { font-family: var(--font); }

/* ===== SEARCH OVERLAY ===== */
.search-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(22,48,41,0.92);
  display: flex; flex-direction: column;
  align-items: center; padding-top: 120px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s;
}
.search-overlay.open { opacity: 1; pointer-events: all; }
.search-box { display: flex; gap: 0; width: 100%; max-width: 600px; padding: 0 24px; }
.search-box input {
  flex: 1; padding: 14px 18px;
  border: none; border-radius: 6px 0 0 6px;
  font-size: 16px; font-family: var(--font); outline: none;
}
.search-close {
  background: var(--brand); color: #fff;
  border: none; padding: 14px 18px;
  border-radius: 0 6px 6px 0;
  font-size: 16px; cursor: pointer;
}
.search-results {
  width: 100%; max-width: 600px;
  margin-top: 12px; padding: 0 24px;
}
.search-result-item {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 10px 14px; margin-bottom: 6px;
  color: #fff; cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
}
.search-result-item:hover { background: rgba(255,255,255,0.15); }
.search-result-item img { width: 44px; height: 44px; border-radius: 4px; flex-shrink: 0; }
.search-result-name { font-size: 13px; font-weight: 600; }
.search-result-price { font-size: 12px; color: var(--brand-light); }

/* ===== CART TOAST ===== */
.cart-toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 300;
  background: var(--accent); color: #fff;
  padding: 12px 20px; border-radius: var(--radius);
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transform: translateY(80px); opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
  pointer-events: none;
}
.cart-toast.show { transform: translateY(0); opacity: 1; }

/* ===== ANNOUNCEMENT TICKER ===== */
.announce-bar {
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.5px;
  height: 34px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}
.announce-bar::before,
.announce-bar::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.announce-bar::before {
  left: 0;
  background: linear-gradient(to right, var(--accent), transparent);
}
.announce-bar::after {
  right: 0;
  background: linear-gradient(to left, var(--accent), transparent);
}
.ticker-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  will-change: transform;
  animation: ticker-scroll 32s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: 0 48px;
  flex-shrink: 0;
}
.ticker-item .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== HEADER ===== */
header {
  position: sticky; top: 0; z-index: 100;
  background: var(--accent); color: #fff;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; padding: 0 32px; height: 64px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.header-left { display: flex; gap: 24px; align-items: center; }
.header-left a {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.8); transition: color 0.2s; white-space: nowrap;
}
.header-left a:hover, .header-left a.active { color: var(--brand); }
.logo {
  text-align: center; font-weight: 700; font-size: 15px;
  letter-spacing: 1px; line-height: 1.2; color: #fff;
  text-transform: uppercase; white-space: nowrap;
}
.logo span { display: block; color: var(--brand); font-size: 10px; letter-spacing: 2px; font-weight: 500; }
.header-right { display: flex; gap: 16px; align-items: center; justify-content: flex-end; }
.header-right a {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.8); transition: color 0.2s; white-space: nowrap;
}
.header-right a:hover { color: var(--brand); }
.icon-btn {
  background: none; border: none; color: rgba(255,255,255,0.8);
  cursor: pointer; padding: 4px; display: flex; align-items: center;
  transition: color 0.2s;
}
.icon-btn:hover { color: var(--brand); }
.mobile-menu-btn { display: none; }
.cart-btn {
  background: var(--brand); color: #fff;
  padding: 6px 16px; border-radius: 20px;
  font-size: 11px; letter-spacing: 1px;
  text-transform: uppercase; font-weight: 600;
  transition: background 0.2s; white-space: nowrap;
}
.cart-btn:hover { background: var(--brand-dark); color: #fff; }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none; flex-direction: column;
  background: var(--accent-mid); padding: 16px 24px; gap: 12px;
  position: sticky; top: 64px; z-index: 99;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { color: rgba(255,255,255,0.85); font-size: 13px; letter-spacing: 0.5px; }
.mobile-nav a:hover { color: var(--brand); }

/* ===== HERO ===== */
.hero-grid {
  display: grid; grid-template-columns: 1fr 260px;
  background: var(--accent); min-height: 360px;
}

/* hero-main is now the full-area link */
.hero-main {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: block;
  text-decoration: none;
  /* 3D perspective context for the circle tilt */
  perspective: 900px;
  perspective-origin: 50% 45%;
  cursor: pointer;
}

/* Background image — slow Ken Burns */
.hero-main > img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transform-origin: center center;
  animation: hero-kenburns 16s ease-in-out infinite alternate;
  will-change: transform;
  transition: filter 0.5s ease;
}
.hero-main:hover > img {
  filter: brightness(0.88) saturate(1.1);
}
@keyframes hero-kenburns {
  0%   { transform: scale(1.00); }
  100% { transform: scale(1.05); }
}

/* ── 3D CIRCLE LAYER ──────────────────────────────────
   Positioned to exactly overlay the badge in the image.
   The badge circle center is at ~50% x, ~44% y of the image.
   Its diameter is ~72% of the image height.
   We use an aspect-ratio box + border-radius:50% to match it.
*/
.hero-circle-layer {
  position: absolute;
  /* Horizontal: centered */
  left: 50%;
  /* Vertical center of badge */
  top: 44%;
  /* Size — badge diameter ≈ 72% of the element height.
     Image is wider than tall so we key off height. */
  width: min(72%, 70vh);
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
  pointer-events: none;
  z-index: 2;
}

/* On hover: the circle tilts toward the viewer (3D pop) */
.hero-main:hover .hero-circle-layer {
  transform: translate(-50%, -50%) rotateX(6deg) rotateY(-3deg) scale(1.04);
}

/* Outer glow ring — pink halo that pulses on hover */
.hero-circle-glow {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
  box-shadow:
    0  0  40px 10px rgba(57, 255, 20, 0.45),
    0  0  90px 20px rgba(0, 220, 50, 0.25),
    0  0 160px 40px rgba(0, 180, 30, 0.12);
}
.hero-main:hover .hero-circle-glow {
  opacity: 1;
  animation: circle-pulse 2.4s ease-in-out infinite;
}
@keyframes circle-pulse {
  0%, 100% {
    box-shadow:
      0  0  40px 10px rgba(57, 255, 20, 0.40),
      0  0  90px 20px rgba(0, 220, 50, 0.22),
      0  0 160px 40px rgba(0, 180, 30, 0.10);
  }
  50% {
    box-shadow:
      0  0  55px 16px rgba(80, 255, 40, 0.65),
      0  0 110px 28px rgba(20, 240, 60, 0.38),
      0  0 200px 55px rgba(0, 200, 40, 0.20);
  }
}

/* Specular shine — light catching the edge of the circle as it tilts */
.hero-circle-shine {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at 30% 25%,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0.06) 35%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}
.hero-main:hover .hero-circle-shine {
  opacity: 1;
}

/* ── PINK MIST ─────────────────────────────────────────
   Originates from the bottom third of the circle
   and drifts upward, using screen blend for natural look.
*/
.hero-mist-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.mist-layer {
  position: absolute;
  left: 50%;
  border-radius: 50%;
  filter: blur(40px);
  mix-blend-mode: screen;
  will-change: transform, opacity;
}

.mist-1 {
  background: radial-gradient(ellipse at center bottom,
    rgba(57, 255, 20, 0.55) 0%,
    rgba(0, 200, 40, 0.20) 50%,
    transparent 75%
  );
  top: 56%;
  width: 60%;
  height: 55%;
  animation: mist-rise-1 6s ease-in-out infinite;
}
.mist-2 {
  background: radial-gradient(ellipse at center bottom,
    rgba(80, 255, 50, 0.44) 0%,
    rgba(0, 180, 30, 0.14) 55%,
    transparent 75%
  );
  top: 62%;
  width: 78%;
  height: 48%;
  animation: mist-rise-2 8s ease-in-out infinite;
  animation-delay: -2s;
}
.mist-3 {
  background: radial-gradient(ellipse at 45% bottom,
    rgba(40, 255, 80, 0.35) 0%,
    rgba(0, 160, 30, 0.12) 50%,
    transparent 72%
  );
  top: 59%;
  width: 50%;
  height: 44%;
  animation: mist-rise-3 7s ease-in-out infinite;
  animation-delay: -4s;
}
.mist-4 {
  background: radial-gradient(ellipse at 55% bottom,
    rgba(100, 255, 60, 0.30) 0%,
    rgba(20, 190, 40, 0.10) 48%,
    transparent 70%
  );
  top: 64%;
  width: 68%;
  height: 50%;
  animation: mist-rise-4 9s ease-in-out infinite;
  animation-delay: -6s;
}

@keyframes mist-rise-1 {
  0%   { transform: translateX(-50%) translateY(0)    scaleX(1.00); opacity: 0.75; }
  40%  { transform: translateX(-50%) translateY(-14%) scaleX(1.08); opacity: 1;    }
  100% { transform: translateX(-50%) translateY(-32%) scaleX(0.90); opacity: 0;    }
}
@keyframes mist-rise-2 {
  0%   { transform: translateX(-50%) translateY(0)    scaleX(1.00); opacity: 0.55; }
  45%  { transform: translateX(-50%) translateY(-12%) scaleX(1.12); opacity: 0.88; }
  100% { transform: translateX(-50%) translateY(-34%) scaleX(0.86); opacity: 0;    }
}
@keyframes mist-rise-3 {
  0%   { transform: translateX(-50%) translateY(5%)   scaleX(0.94); opacity: 0.65; }
  50%  { transform: translateX(-50%) translateY(-10%) scaleX(1.06); opacity: 0.92; }
  100% { transform: translateX(-50%) translateY(-28%) scaleX(0.84); opacity: 0;    }
}
@keyframes mist-rise-4 {
  0%   { transform: translateX(-50%) translateY(2%)   scaleX(1.02); opacity: 0.42; }
  40%  { transform: translateX(-50%) translateY(-18%) scaleX(1.10); opacity: 0.78; }
  100% { transform: translateX(-50%) translateY(-36%) scaleX(0.88); opacity: 0;    }
}
.hero-sidebar { display: flex; flex-direction: column; }
.featured-card { position: relative; flex: 1; overflow: hidden; cursor: pointer; min-height: 180px; display: block; }
.featured-card img { transition: transform 0.4s ease; }
.featured-card:hover img { transform: scale(1.05); }
.featured-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 14px;
}
.featured-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--brand); color: #fff;
  font-size: 9px; letter-spacing: 1px; text-transform: uppercase;
  font-weight: 700; padding: 3px 8px; border-radius: 4px;
}
.featured-card-name { color: #fff; font-size: 13px; font-weight: 600; line-height: 1.3; }
.featured-card-price { color: var(--brand-light); font-size: 15px; font-weight: 700; margin-top: 3px; }

/* ===== CATEGORY BUBBLES ===== */
.categories {
  padding: 24px 32px; display: flex; gap: 20px;
  align-items: center; justify-content: center;
  border-bottom: 1px solid rgba(22,48,41,0.1); overflow-x: auto;
}
.bubble { display: flex; flex-direction: column; align-items: center; gap: 6px; cursor: pointer; flex-shrink: 0; }
.bubble-img {
  width: 64px; height: 64px; border-radius: 50%; overflow: hidden;
  border: 2px solid transparent; transition: border-color 0.2s;
}
.bubble-img img { width: 100%; height: 100%; object-fit: cover; }
.bubble:hover .bubble-img { border-color: var(--brand); }
.bubble-label {
  font-size: 11px; letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--text-light); font-weight: 600; white-space: nowrap;
}
.bubble.active .bubble-img  { border-color: var(--brand); }
.bubble.active .bubble-label { color: var(--brand); }

/* ===== PRODUCT SECTIONS ===== */
.section { padding: 36px 32px; }
.section-alt { background: var(--bg-dark); }
.section-header {
  display: flex; align-items: baseline;
  justify-content: space-between; margin-bottom: 20px;
}
.section-title { font-size: 22px; font-weight: 700; color: var(--text); }
.section-sub    { font-size: 12px; color: var(--text-light); margin-left: 10px; }
.section-link   { font-size: 12px; color: var(--brand); letter-spacing: 0.5px; text-transform: uppercase; font-weight: 600; flex-shrink: 0; }
.section-link:hover { color: var(--brand-dark); }
.page-title { font-size: 28px; font-weight: 700; margin-bottom: 24px; }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.product-grid-shop { grid-template-columns: repeat(4, 1fr); }
.product-card {
  background: var(--bg); border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
  border: 1px solid rgba(22,48,41,0.07);
  transition: box-shadow 0.2s, transform 0.2s;
}
.product-card:hover { box-shadow: 0 8px 24px rgba(22,48,41,0.12); transform: translateY(-2px); }
.product-img-wrap { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: #f0ede8; }
.product-img-wrap img { transition: transform 0.4s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-label {
  position: absolute; top: 8px; left: 8px;
  background: var(--brand); color: #fff;
  font-size: 9px; letter-spacing: 1px; text-transform: uppercase;
  font-weight: 700; padding: 3px 7px; border-radius: 4px;
}
.product-label.sale { background: #c00000; }
.product-wish {
  position: absolute; bottom: 8px; right: 8px;
  width: 30px; height: 30px;
  background: rgba(255,255,255,0.92); border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; opacity: 0; transition: opacity 0.2s;
  cursor: pointer; color: var(--text);
}
.product-wish.wished { opacity: 1; color: var(--brand); }
.product-card:hover .product-wish { opacity: 1; }
.product-info { padding: 12px; }
.product-info a { color: inherit; }
.product-name  { font-size: 12px; font-weight: 600; line-height: 1.35; color: var(--text); margin-bottom: 6px; }
.product-price { font-size: 14px; font-weight: 700; color: var(--text); }
.product-price .old { text-decoration: line-through; color: var(--text-light); font-weight: 400; font-size: 12px; margin-right: 4px; }
.product-price .sale-price { color: var(--brand); }
.product-atc {
  display: block; width: 100%; margin-top: 8px;
  background: var(--accent); color: #fff; padding: 8px;
  border-radius: 20px; font-size: 11px; letter-spacing: 1px;
  text-transform: uppercase; font-weight: 600; text-align: center;
  opacity: 0; transform: translateY(4px);
  transition: opacity 0.2s, transform 0.2s, background 0.2s;
}
.product-card:hover .product-atc { opacity: 1; transform: translateY(0); }
.product-atc:hover { background: var(--accent-mid); }
.product-atc.loading { opacity: 0.7; pointer-events: none; }

/* ===== COUNTDOWN ===== */
.countdown-section {
  background: var(--accent); color: #fff; padding: 36px 32px;
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
}
.countdown-eyebrow { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--brand); font-weight: 600; margin-bottom: 8px; }
.countdown-title { font-size: 28px; font-weight: 700; margin-bottom: 4px; }
.countdown-sub   { font-size: 13px; color: rgba(255,255,255,0.65); }
.countdown-timer { display: flex; gap: 14px; align-items: center; }
.timer-unit { text-align: center; }
.timer-num {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px; padding: 12px 18px; font-size: 32px; font-weight: 700;
  line-height: 1; min-width: 72px; font-variant-numeric: tabular-nums; color: #fff; text-align: center;
}
.timer-label { font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 5px; }
.timer-sep   { font-size: 28px; font-weight: 300; color: rgba(255,255,255,0.35); margin-bottom: 18px; }

/* ===== STORY ===== */
.story-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 400px; }
.story-img { position: relative; overflow: hidden; min-height: 340px; }
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-content {
  background: var(--bg-blue-soft); padding: 56px 48px;
  display: flex; flex-direction: column; justify-content: center;
}
.story-eyebrow { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--brand); font-weight: 700; margin-bottom: 12px; }
.story-title { font-size: 30px; font-weight: 700; line-height: 1.2; margin-bottom: 16px; }
.story-body  { font-size: 14px; color: var(--text-light); line-height: 1.8; margin-bottom: 24px; }
.story-sig   { font-style: italic; font-size: 13px; color: var(--text); }
.story-sig strong { display: block; font-style: normal; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-light); font-weight: 600; margin-top: 4px; }

/* ===== REVIEWS ===== */
.reviews-section { padding: 36px 32px; background: var(--bg-dark); }
.reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 20px; }
.review-card { background: #fff; border-radius: var(--radius); padding: 20px; border: 1px solid rgba(22,48,41,0.07); }
.review-stars  { color: var(--brand); font-size: 13px; margin-bottom: 8px; }
.review-text   { font-size: 13px; color: var(--text-light); line-height: 1.6; margin-bottom: 12px; }
.review-author { font-size: 12px; font-weight: 700; color: var(--text); }
.review-date   { font-size: 11px; color: var(--text-light); }

/* ===== FOOTER ===== */
footer { background: var(--accent); color: rgba(255,255,255,0.7); padding: 48px 32px 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand-name { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.footer-brand-desc { font-size: 13px; line-height: 1.7; max-width: 260px; }
.footer-email-form { display: flex; margin-top: 16px; }
.footer-email-input {
  flex: 1; min-width: 0; padding: 9px 12px;
  border-radius: 4px 0 0 4px; border: none;
  font-size: 13px; font-family: var(--font);
  background: rgba(255,255,255,0.1); color: #fff; outline: none;
}
.footer-email-input::placeholder { color: rgba(255,255,255,0.4); }
.footer-email-btn {
  background: var(--brand); color: #fff; padding: 9px 14px;
  border-radius: 0 4px 4px 0; font-size: 12px; font-weight: 600;
  letter-spacing: 0.5px; white-space: nowrap; border: none;
  cursor: pointer; font-family: var(--font); transition: background 0.2s;
}
.footer-email-btn:hover { background: var(--brand-dark); }
.newsletter-msg { font-size: 12px; color: var(--brand-light); margin-top: 8px; min-height: 18px; }
.footer-col-title { color: #fff; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; margin-bottom: 14px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: rgba(255,255,255,0.4);
}
.footer-social { display: flex; gap: 12px; }
.footer-social a { color: rgba(255,255,255,0.5); transition: color 0.2s; font-size: 13px; }
.footer-social a:hover { color: var(--brand); }

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--accent); color: #fff;
  padding: 48px 32px 36px;
}
.page-hero-text h1 { font-size: 36px; font-weight: 700; margin-bottom: 4px; }
.page-hero-text p  { font-size: 13px; color: rgba(255,255,255,0.6); }

/* ===== SHOP FILTER BAR ===== */
.shop-filter-bar {
  padding: 16px 32px; display: flex; gap: 8px; flex-wrap: wrap;
  border-bottom: 1px solid rgba(22,48,41,0.1);
  background: var(--bg);
}
.filter-pill {
  padding: 6px 16px; border-radius: 20px;
  border: 1px solid rgba(22,48,41,0.15);
  font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
  color: var(--text-light); transition: all 0.2s;
}
.filter-pill:hover { border-color: var(--brand); color: var(--brand); }
.filter-pill.active { background: var(--brand); border-color: var(--brand); color: #fff; }
.empty-msg { color: var(--text-light); font-size: 14px; }
.empty-msg a { color: var(--brand); }

/* ===== BREADCRUMB ===== */
.breadcrumb { font-size: 12px; color: var(--text-light); margin-bottom: 24px; }
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb span { color: var(--text); }

/* ===== PRODUCT DETAIL ===== */
.product-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
.product-detail-img {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 1; background: #f0ede8;
}
.product-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-name  { font-size: 24px; font-weight: 700; line-height: 1.25; margin-bottom: 12px; }
.product-detail-price { font-size: 22px; font-weight: 700; margin-bottom: 20px; }
.product-detail-price .old { text-decoration: line-through; color: var(--text-light); font-size: 16px; margin-right: 6px; font-weight: 400; }
.product-detail-price .sale-price { color: var(--brand); }
.product-detail-desc { font-size: 14px; color: var(--text-light); line-height: 1.8; margin-bottom: 20px; }
.product-detail-meta { display: flex; flex-direction: column; gap: 6px; margin-bottom: 24px; }
.meta-item { font-size: 13px; color: var(--text); display: flex; gap: 8px; }
.meta-item span { color: var(--brand); font-weight: 700; }
.product-detail-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

/* Qty stepper */
.qty-control {
  display: flex; align-items: center;
  border: 1px solid rgba(22,48,41,0.2); border-radius: 6px; overflow: hidden;
}
.qty-btn {
  width: 36px; height: 40px;
  background: var(--bg-dark); border: none; font-size: 18px;
  cursor: pointer; color: var(--text); transition: background 0.15s;
}
.qty-btn:hover { background: rgba(22,48,41,0.1); }
#qtyInput {
  width: 48px; height: 40px; border: none; text-align: center;
  font-size: 14px; font-family: var(--font); outline: none;
  -moz-appearance: textfield;
}
#qtyInput::-webkit-outer-spin-button,
#qtyInput::-webkit-inner-spin-button { -webkit-appearance: none; }

/* Buttons */
.btn-primary {
  display: inline-block; background: var(--brand); color: #fff;
  padding: 11px 24px; border-radius: 24px; font-size: 13px;
  font-weight: 600; letter-spacing: 0.5px; border: none;
  cursor: pointer; font-family: var(--font); transition: background 0.2s;
  text-align: center;
}
.btn-primary:hover { background: var(--brand-dark); color: #fff; }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }

.product-wish-detail {
  background: none; border: 1px solid rgba(22,48,41,0.2);
  border-radius: 24px; padding: 11px 20px;
  font-size: 13px; cursor: pointer; color: var(--text);
  transition: all 0.2s; font-family: var(--font);
}
.product-wish-detail.wished { color: var(--brand); border-color: var(--brand); }
.product-wish-detail:hover { border-color: var(--brand); color: var(--brand); }

/* ===== CART PAGE ===== */
.cart-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.cart-empty { text-align: center; padding: 60px 0; }
.cart-empty p { font-size: 18px; color: var(--text-light); margin-bottom: 20px; }
.cart-row {
  display: grid; grid-template-columns: 80px 1fr auto auto auto;
  gap: 16px; align-items: center; padding: 16px 0;
  border-bottom: 1px solid rgba(22,48,41,0.08);
}
.cart-row-img { width: 80px; height: 80px; border-radius: var(--radius); overflow: hidden; flex-shrink: 0; }
.cart-row-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-row-name { font-size: 13px; font-weight: 600; color: var(--text); display: block; margin-bottom: 4px; }
.cart-row-name:hover { color: var(--brand); }
.cart-row-unit { font-size: 12px; color: var(--text-light); }
.cart-row-qty { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; }
.cart-row-qty .qty-btn { width: 28px; height: 28px; font-size: 14px; border-radius: 50%; }
.cart-row-price { font-size: 14px; font-weight: 700; white-space: nowrap; }
.cart-row-remove {
  background: none; border: none; font-size: 14px;
  color: var(--text-light); cursor: pointer; padding: 4px;
  transition: color 0.15s;
}
.cart-row-remove:hover { color: #c00000; }
.cart-summary {
  background: var(--bg-dark); border-radius: var(--radius);
  padding: 24px; position: sticky; top: 88px;
}
.cart-summary-title { font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.cart-summary-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 10px; }
.cart-summary-row.muted { color: var(--text-light); }
.cart-summary-row.total { font-size: 16px; font-weight: 700; }
.cart-summary-divider { border-top: 1px solid rgba(22,48,41,0.1); margin: 12px 0; }
.cart-checkout-btn { display: block; width: 100%; text-align: center; margin-top: 16px; }
.cart-continue-link { display: block; text-align: center; margin-top: 12px; font-size: 12px; color: var(--text-light); }
.cart-continue-link:hover { color: var(--brand); }

/* ===== CHECKOUT ===== */
.checkout-section { max-width: 1100px; margin: 0 auto; }
.checkout-layout { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; }
.checkout-form { display: flex; flex-direction: column; gap: 0; }
.form-section-title { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-light); margin: 20px 0 12px; border-bottom: 1px solid rgba(22,48,41,0.1); padding-bottom: 8px; }
.form-section-title:first-child { margin-top: 0; }
.form-row { display: flex; gap: 16px; }
.form-row.two-col > * { flex: 1; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 12px; font-weight: 600; color: var(--text); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 10px 14px; border: 1px solid rgba(22,48,41,0.2);
  border-radius: 6px; font-size: 14px; font-family: var(--font);
  outline: none; transition: border-color 0.2s; background: var(--bg);
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--brand); }
.form-group input:disabled { background: var(--bg-dark); color: var(--text-light); cursor: not-allowed; }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-errors { background: #fff5f5; border: 1px solid #fed7d7; border-radius: var(--radius); padding: 12px 16px; margin-bottom: 20px; }
.form-error { font-size: 13px; color: #c00000; padding: 2px 0; }
.payment-placeholder { background: var(--bg-dark); border-radius: var(--radius); padding: 16px; margin-bottom: 20px; }
.payment-notice { font-size: 12px; color: var(--text-light); margin-bottom: 16px; }
.payment-notice code { background: rgba(22,48,41,0.08); padding: 1px 5px; border-radius: 3px; font-size: 11px; }
.checkout-submit { width: 100%; justify-content: center; font-size: 15px; padding: 14px; }
.checkout-summary { background: var(--bg-dark); border-radius: var(--radius); padding: 24px; position: sticky; top: 88px; }
.checkout-summary-item { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.checkout-summary-item img { width: 56px; height: 56px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.checkout-summary-name { font-size: 12px; font-weight: 600; line-height: 1.3; }
.checkout-summary-qty  { font-size: 11px; color: var(--text-light); }
.checkout-summary-price { font-size: 13px; font-weight: 700; margin-left: auto; white-space: nowrap; }

/* Success state */
.checkout-success { text-align: center; padding: 60px 0; }
.success-icon { font-size: 48px; margin-bottom: 16px; }
.checkout-success h2 { font-size: 28px; font-weight: 700; margin-bottom: 10px; }
.checkout-success p  { font-size: 14px; color: var(--text-light); margin-bottom: 24px; }

/* ===== CONTACT ===== */
.contact-section { max-width: 1100px; margin: 0 auto; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-details { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.contact-detail-item { font-size: 14px; color: var(--text-light); }
.contact-form-wrap { padding-top: 8px; }

/* ===== ABOUT ===== */
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: var(--bg-dark); border-radius: var(--radius); padding: 28px; }
.value-icon { font-size: 32px; margin-bottom: 12px; }
.value-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.value-card p  { font-size: 13px; color: var(--text-light); line-height: 1.7; }
.greenhouse-gallery { display: grid; grid-template-columns: 2fr 1fr; gap: 16px; border-radius: var(--radius); overflow: hidden; }
.greenhouse-gallery img { height: 360px; object-fit: cover; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  header { padding: 0 20px; }
  .header-left { display: none; }
  .mobile-menu-btn { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-sidebar { display: none; }
  /* Always show button on mobile — no hover on touch */
  .hero-cta-btn { opacity: 1; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .story-section { grid-template-columns: 1fr; }
  .story-img { min-height: 260px; }
  .countdown-section { grid-template-columns: 1fr; gap: 20px; }
  .cart-layout { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .greenhouse-gallery { grid-template-columns: 1fr; }
  .greenhouse-gallery img { height: 220px; }
}

@media (max-width: 560px) {
  .product-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .announce-bar { gap: 16px; font-size: 10px; }
  .form-row.two-col { flex-direction: column; }
}
