/* ===== VARIABLES ===== */
:root {
  /* Light Green — primary actions, nav active, buttons */
  --primary:       #4aaa72;
  --primary-light: #6dc98f;
  --primary-pale:  #eaf8f0;

  /* Light Pink — accent, badges, highlights */
  --accent:        #e8799e;
  --accent-light:  #fdedf3;

  /* Light Blue — info icons, secondary highlights */
  --blue:          #5aaee0;
  --blue-light:    #e4f3fd;

  --dark:          #2c2c3a;
  --muted:         #7a7a90;
  --border:        #ede8f4;
  --light-bg:      #faf7fc;
  --white:         #ffffff;
  --radius:        12px;
  --radius-sm:     8px;
  --shadow:        0 4px 20px rgba(100,80,140,0.08);
  --shadow-hover:  0 10px 35px rgba(100,80,140,0.16);
  --transition:    0.28s ease;
}

/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; }
body { font-family: 'DM Sans', sans-serif; color: var(--dark); background: var(--white); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
input, button, select, textarea { font-family: inherit; }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: linear-gradient(90deg, #e8799e 0%, #a78bde 50%, #5aaee0 100%);
  color: #fff;
  padding: 9px 0;
  overflow: hidden;
  position: relative;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}
.announcement-bar .marquee-track {
  display: flex;
  gap: 0;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-track span { padding: 0 2.5rem; }

/* ===== NAVBAR ===== */
.navbar-main {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.navbar-main.scrolled { box-shadow: 0 3px 18px rgba(0,0,0,0.1); }
.navbar-brand { display: flex; align-items: center; gap: 10px; padding: 0.6rem 0; }
.brand-logo-mark {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem; font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 3px 12px rgba(232,121,158,0.35);
}
.brand-name-text { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--primary); line-height: 1.1; }
.brand-tagline    { font-size: 0.6rem; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; }
.navbar-main .nav-link {
  color: var(--dark) !important;
  font-weight: 500;
  font-size: 0.88rem;
  padding: 1.3rem 0.85rem !important;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.navbar-main .nav-link:hover,
.navbar-main .nav-link.active { color: var(--primary) !important; border-bottom-color: var(--primary); }
.navbar-main .dropdown-menu { border: 1px solid var(--border); border-radius: var(--radius-sm); box-shadow: var(--shadow); padding: 0.4rem; min-width: 170px; }
.navbar-main .dropdown-item { border-radius: 6px; font-size: 0.86rem; padding: 0.5rem 0.9rem; transition: background var(--transition); }
.navbar-main .dropdown-item:hover { background: var(--primary-pale); color: var(--primary); }

.nav-icon-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: transparent; border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.15rem; color: var(--dark);
  transition: background var(--transition), color var(--transition);
  position: relative;
}
.nav-icon-btn:hover { background: var(--primary-pale); color: var(--primary); }
.cart-badge {
  position: absolute; top: 4px; right: 4px;
  background: var(--accent); color: #fff;
  font-size: 0.58rem; font-weight: 700;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.search-overlay {
  display: none;
  position: absolute; top: 100%; left: 0; right: 0;
  background: #fff; padding: 1.1rem 0;
  border-top: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  z-index: 999;
}
.search-overlay.show { display: block; }
.search-overlay .form-control {
  border: 2px solid var(--primary);
  border-radius: 50px 0 0 50px !important;
  padding: 0.6rem 1.2rem;
  font-size: 0.88rem;
  outline: none;
  box-shadow: none;
}
.search-overlay .form-control:focus { box-shadow: none; }
.search-overlay .btn-search {
  background: var(--primary); color: #fff;
  border: 2px solid var(--primary);
  border-radius: 0 50px 50px 0 !important;
  padding: 0 1.2rem;
  cursor: pointer;
}

/* ===== SECTION COMMONS ===== */
.section-pad { padding: 80px 0; }
.section-label {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700;
  color: var(--accent); text-transform: uppercase; letter-spacing: 0.15em;
  background: var(--accent-light); padding: 0.3rem 1rem;
  border-radius: 50px; margin-bottom: 0.7rem;
  border: 1px solid rgba(232,121,158,0.25);
}
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; color: var(--dark); line-height: 1.2; }
.section-sub { color: var(--muted); font-size: 0.93rem; line-height: 1.75; max-width: 520px; margin: 0 auto; }

/* ===== HERO ===== */
.hero-section {
  min-height: 90vh;
  background: linear-gradient(135deg, #fdedf3 0%, #faf7fc 40%, #eaf8f0 70%, #e4f3fd 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute; top: -15%; right: -8%;
  width: 55vw; height: 55vw;
  background: radial-gradient(circle, rgba(232,121,158,0.12) 0%, rgba(90,174,224,0.1) 50%, transparent 72%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute; bottom: -10%; left: -5%;
  width: 40vw; height: 40vw;
  background: radial-gradient(circle, rgba(74,170,114,0.1), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--blue-light); color: var(--blue);
  font-size: 0.78rem; font-weight: 600;
  padding: 0.35rem 1rem; border-radius: 50px;
  border: 1px solid rgba(90,174,224,0.35); margin-bottom: 1.2rem;
}
.hero-section h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700; color: var(--dark); line-height: 1.15;
  margin-bottom: 1.2rem;
}
.hero-section h1 em { color: var(--primary); font-style: normal; }
.hero-lead { font-size: 1rem; color: var(--muted); line-height: 1.75; max-width: 460px; margin-bottom: 2rem; }
.hero-stats { display: flex; gap: 2rem; margin-top: 2.5rem; flex-wrap: wrap; }
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 700; background: linear-gradient(135deg, var(--accent), var(--primary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.hero-stat-label { font-size: 0.73rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }
.hero-prod-showcase { position: relative; display: flex; gap: 1.2rem; align-items: flex-end; justify-content: center; padding: 2rem 1rem; }
.hero-prod-card {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 1.4rem 1rem 1.2rem;
  text-align: center; transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer; min-width: 130px;
}
.hero-prod-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.hero-prod-card.featured { transform: scale(1.07) translateY(-14px); box-shadow: var(--shadow-hover); }
.hero-prod-emoji { font-size: 3.2rem; margin-bottom: 0.7rem; }
.hero-prod-name { font-weight: 600; font-size: 0.78rem; color: var(--dark); line-height: 1.3; margin-bottom: 0.3rem; }
.hero-prod-price { color: var(--primary); font-weight: 700; font-size: 0.95rem; }
.hero-trust-strip { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 2.5rem; align-items: center; }
.trust-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; color: var(--muted); font-weight: 500; }
.trust-item i { color: var(--primary); font-size: 0.95rem; }

/* ===== CATEGORY STRIP ===== */
.category-strip { padding: 50px 0; background: var(--light-bg); border-bottom: 1px solid var(--border); }
.cat-pill { display: flex; flex-direction: column; align-items: center; gap: 0.55rem; cursor: pointer; transition: transform var(--transition); text-decoration: none; }
.cat-pill:hover { transform: translateY(-4px); }
.cat-icon-wrap {
  width: 72px; height: 72px; border-radius: 50%; background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem; box-shadow: 0 3px 14px rgba(0,0,0,0.08);
  transition: border-color var(--transition), background var(--transition);
  border: 2px solid transparent;
}
.cat-pill:hover .cat-icon-wrap { border-color: var(--primary); background: var(--primary-pale); }
.cat-label { font-size: 0.77rem; font-weight: 600; color: var(--muted); text-align: center; transition: color var(--transition); }
.cat-pill:hover .cat-label { color: var(--primary); }

/* ===== PRODUCT CARDS ===== */
.product-card {
  background: #fff; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.product-badge { position: absolute; top: 12px; left: 12px; z-index: 2; }
.badge-bestseller { background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: #fff; font-size: 0.68rem; font-weight: 700; padding: 0.22rem 0.65rem; border-radius: 50px; }
.badge-new  { background: linear-gradient(135deg, var(--accent), #f4a6c2); color: #fff; font-size: 0.68rem; font-weight: 700; padding: 0.22rem 0.65rem; border-radius: 50px; }
.badge-sale { background: linear-gradient(135deg, var(--blue), #80c4f0); color: #fff; font-size: 0.68rem; font-weight: 700; padding: 0.22rem 0.65rem; border-radius: 50px; }
.product-wishlist {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.92); border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: color var(--transition); color: var(--muted); font-size: 0.88rem;
}
.product-wishlist:hover, .product-wishlist.active { color: #e63946; }
.prod-img-wrap {
  aspect-ratio: 1; overflow: hidden;
  background: linear-gradient(135deg, #fdedf3 0%, #eaf8f0 50%, #e4f3fd 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.prod-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.product-card:hover .prod-img-wrap img { transform: scale(1.06); }
.prod-img-placeholder { font-size: 4rem; opacity: 0.65; }
.card-body { padding: 1rem 1.2rem 1.3rem; }
.prod-category { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.25rem; }
.prod-name { font-weight: 600; font-size: 0.9rem; color: var(--dark); line-height: 1.4; margin-bottom: 0.4rem; }
.prod-rating { display: flex; align-items: center; gap: 0.35rem; margin-bottom: 0.45rem; }
.prod-stars { color: #f5a623; font-size: 0.72rem; letter-spacing: 1px; }
.prod-review-count { font-size: 0.7rem; color: var(--muted); }
.prod-price { display: flex; align-items: center; gap: 0.45rem; margin-bottom: 0.85rem; flex-wrap: wrap; }
.price-current { font-weight: 700; font-size: 1rem; color: var(--dark); }
.price-original { font-size: 0.82rem; color: var(--muted); text-decoration: line-through; }
.price-discount { font-size: 0.7rem; font-weight: 700; color: var(--primary); background: var(--primary-pale); padding: 0.1rem 0.45rem; border-radius: 4px; }
.btn-add-cart {
  width: 100%; background: var(--primary); color: #fff;
  border: 2px solid var(--primary); border-radius: 50px;
  padding: 0.5rem; font-size: 0.82rem; font-weight: 600;
  cursor: pointer; transition: background var(--transition), transform 0.15s;
}
.btn-add-cart:hover { background: var(--primary-light); }
.btn-add-cart.btn-pulse { transform: scale(0.94); }

/* ===== BUTTONS ===== */
.btn-brand {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: var(--primary); color: #fff;
  border: 2px solid var(--primary); border-radius: 50px;
  padding: 0.72rem 1.8rem; font-weight: 600; font-size: 0.88rem;
  cursor: pointer; transition: background var(--transition), transform 0.15s;
}
.btn-brand:hover { background: var(--primary-light); border-color: var(--primary-light); color: #fff; transform: translateY(-1px); }
.btn-outline-brand {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary); border-radius: 50px;
  padding: 0.72rem 1.8rem; font-weight: 600; font-size: 0.88rem;
  cursor: pointer; transition: background var(--transition), color var(--transition), transform 0.15s;
}
.btn-outline-brand:hover { background: var(--primary); color: #fff; transform: translateY(-1px); }
.btn-accent {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: var(--accent); color: #fff;
  border: 2px solid var(--accent); border-radius: 50px;
  padding: 0.72rem 1.8rem; font-weight: 600; font-size: 0.88rem;
  cursor: pointer; transition: background var(--transition);
}
.btn-accent:hover { background: #b8911e; border-color: #b8911e; color: #fff; }

/* ===== WHY ZEE EARTH ===== */
.why-section { background: linear-gradient(180deg, #fdedf3 0%, var(--light-bg) 100%); }
.why-card {
  background: #fff; border-radius: var(--radius); padding: 2rem 1.5rem;
  text-align: center; border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.why-icon {
  width: 66px; height: 66px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem; font-size: 1.6rem;
}
.ic-green  { background: var(--primary-pale); color: var(--primary); }
.ic-pink   { background: var(--accent-light); color: var(--accent); }
.ic-blue   { background: var(--blue-light); color: var(--blue); }
.ic-rose   { background: var(--accent-light); color: var(--accent); }
.ic-gold   { background: #fff8e6; color: #d4940a; }
.why-card h5 { font-weight: 700; font-size: 0.97rem; color: var(--dark); margin-bottom: 0.5rem; }
.why-card p  { font-size: 0.84rem; color: var(--muted); line-height: 1.68; margin: 0; }

/* ===== HOW IT WORKS ===== */
.step-card { text-align: center; padding: 1.5rem 1rem; position: relative; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #a78bde, var(--blue));
  color: #fff; font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem; box-shadow: 0 4px 14px rgba(232,121,158,0.35);
}
.step-card h5 { font-weight: 700; font-size: 0.97rem; margin-bottom: 0.45rem; }
.step-card p  { font-size: 0.84rem; color: var(--muted); line-height: 1.65; }
.step-connector {
  position: absolute; top: 3rem; left: calc(50% + 30px);
  width: calc(100% - 60px); height: 2px;
  background: linear-gradient(to right, var(--primary-pale), transparent);
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: #fff; border-radius: var(--radius);
  padding: 1.8rem; border: 1px solid var(--border); height: 100%;
}
.testimonial-stars { color: #f5a623; font-size: 0.82rem; margin-bottom: 0.8rem; }
.testimonial-text { font-size: 0.88rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.2rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--primary-pale); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.88rem; flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.86rem; color: var(--dark); }
.author-skin { font-size: 0.73rem; color: var(--muted); }
.verified-badge { margin-left: auto; font-size: 0.7rem; color: var(--primary); display: flex; align-items: center; gap: 0.2rem; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #e8779c 0%, #a78bde 50%, #5aaee0 100%);
  color: #fff; padding: 80px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -40%; right: -10%;
  width: 60vw; height: 60vw;
  background: rgba(255,255,255,0.07); border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute; bottom: -30%; left: -5%;
  width: 45vw; height: 45vw;
  background: rgba(255,255,255,0.05); border-radius: 50%;
}
.cta-banner h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.cta-banner p  { font-size: 0.97rem; opacity: 0.82; max-width: 420px; margin: 0 auto 2rem; line-height: 1.7; }

/* ===== NEWSLETTER ===== */
.newsletter-section { background: var(--light-bg); padding: 60px 0; border-top: 1px solid var(--border); }
.newsletter-form .form-control {
  border-radius: 50px 0 0 50px !important; border: 1.5px solid var(--border);
  padding: 0.7rem 1.3rem; font-size: 0.88rem; background: #fff; box-shadow: none;
}
.newsletter-form .form-control:focus { box-shadow: none; border-color: var(--primary); }
.newsletter-form .btn-sub {
  border-radius: 0 50px 50px 0 !important;
  background: var(--primary); border: 1.5px solid var(--primary);
  color: #fff; font-weight: 600; padding: 0 1.4rem; cursor: pointer;
}
.newsletter-form .btn-sub:hover { background: var(--primary-light); }

/* ===== FOOTER ===== */
.site-footer { background: #111; color: rgba(255,255,255,0.7); padding: 70px 0 0; }
.footer-brand-name { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #fff; }
.footer-brand-tag  { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.footer-about { font-size: 0.83rem; line-height: 1.75; max-width: 270px; }
.footer-socials { display: flex; gap: 0.7rem; margin-top: 1.5rem; }
.social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65); font-size: 0.92rem;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.social-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.footer-heading { color: #fff; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { font-size: 0.83rem; color: rgba(255,255,255,0.58); transition: color var(--transition), padding-left var(--transition); }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 0.65rem; margin-bottom: 0.8rem; align-items: flex-start; font-size: 0.83rem; }
.footer-contact-item i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }
.footer-newsletter .form-control {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14);
  color: #fff; font-size: 0.82rem; padding: 0.5rem 1rem;
  border-radius: 50px 0 0 50px !important;
}
.footer-newsletter .form-control::placeholder { color: rgba(255,255,255,0.35); }
.footer-newsletter .form-control:focus { box-shadow: none; background: rgba(255,255,255,0.1); }
.footer-newsletter .btn-go {
  background: var(--accent); border: 1px solid var(--accent); color: #fff;
  border-radius: 0 50px 50px 0 !important; padding: 0 1.1rem; font-weight: 600; font-size: 0.82rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 3rem; padding: 1.4rem 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.35);
}
.payment-icons { display: flex; gap: 0.45rem; }
.payment-icon {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px; padding: 0.18rem 0.55rem; font-size: 0.68rem; color: rgba(255,255,255,0.48);
  font-weight: 600;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-wrap { background: var(--light-bg); border-bottom: 1px solid var(--border); padding: 0.75rem 0; }
.breadcrumb { margin: 0; font-size: 0.8rem; }
.breadcrumb-item a { color: var(--primary); }
.breadcrumb-item.active { color: var(--muted); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--muted); }

/* ===== SHOP PAGE ===== */
.shop-banner { background: linear-gradient(135deg, var(--accent-light) 0%, var(--light-bg) 50%, var(--blue-light) 100%); padding: 55px 0; }
.filter-sidebar {
  background: #fff; border-radius: var(--radius);
  border: 1px solid var(--border); padding: 1.5rem;
  position: sticky; top: 80px;
}
.filter-group { margin-bottom: 1.4rem; padding-bottom: 1.4rem; border-bottom: 1px solid var(--border); }
.filter-group:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.filter-label { font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--dark); margin-bottom: 0.7rem; }
.filter-chip {
  display: inline-flex; align-items: center;
  background: var(--light-bg); border: 1px solid var(--border);
  border-radius: 50px; padding: 0.28rem 0.8rem; font-size: 0.78rem;
  font-weight: 500; cursor: pointer; transition: background var(--transition), border-color var(--transition), color var(--transition);
  margin: 0.2rem; color: var(--muted);
}
.filter-chip:hover, .filter-chip.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.sort-bar {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 0.75rem 1.2rem; display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 1.2rem; gap: 1rem; flex-wrap: wrap;
}
.product-count { font-size: 0.83rem; color: var(--muted); }
.sort-select {
  border: 1px solid var(--border); border-radius: 6px;
  padding: 0.3rem 0.75rem; font-size: 0.83rem; color: var(--dark);
  background: #fff; cursor: pointer;
}
.sort-select:focus { outline: none; border-color: var(--primary); }

/* ===== PRODUCT DETAIL ===== */
.gallery-thumbs { display: flex; flex-direction: column; gap: 0.5rem; }
.gallery-thumb {
  border-radius: 8px; overflow: hidden; cursor: pointer;
  border: 2px solid transparent; aspect-ratio: 1;
  background: var(--light-bg); display: flex; align-items: center; justify-content: center;
  transition: border-color var(--transition);
}
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--primary); }
.gallery-thumb-icon { font-size: 1.8rem; }
.gallery-main {
  border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--primary-pale) 50%, var(--blue-light) 100%);
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.gallery-main-icon { font-size: 7rem; opacity: 0.6; transition: transform 0.35s ease; }
.prod-detail-price { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 700; color: var(--dark); }
.prod-detail-original { font-size: 1rem; color: var(--muted); text-decoration: line-through; margin-left: 0.4rem; }
.prod-detail-discount { background: var(--primary-pale); color: var(--primary); font-size: 0.8rem; font-weight: 700; padding: 0.18rem 0.55rem; border-radius: 4px; margin-left: 0.4rem; }
.qty-selector {
  display: flex; align-items: center; gap: 0;
  border: 1.5px solid var(--border); border-radius: 50px;
  overflow: hidden; width: fit-content; background: #fff;
}
.qty-btn {
  width: 40px; height: 40px; border: none; background: transparent;
  font-size: 1.15rem; cursor: pointer; transition: background var(--transition);
  color: var(--dark); font-weight: 600;
}
.qty-btn:hover { background: var(--primary-pale); color: var(--primary); }
.qty-input { width: 48px; text-align: center; border: none; outline: none; font-size: 0.92rem; font-weight: 600; background: transparent; }
.product-tabs .nav-link {
  color: var(--muted); font-weight: 500; font-size: 0.88rem;
  border-radius: 0; border-bottom: 2px solid transparent;
  padding: 0.75rem 1.1rem; background: transparent;
}
.product-tabs .nav-link.active { color: var(--primary); border-bottom-color: var(--primary); }
.ingredient-tag {
  display: inline-block; background: var(--primary-pale); color: var(--primary);
  border-radius: 50px; padding: 0.28rem 0.85rem; font-size: 0.78rem;
  font-weight: 500; margin: 0.2rem;
}
.review-item { padding: 1.2rem 0; border-bottom: 1px solid var(--border); }
.review-item:last-child { border-bottom: none; }
.review-stars { color: #f5a623; font-size: 0.75rem; }
.review-title { font-weight: 600; font-size: 0.9rem; margin-bottom: 0.3rem; }
.review-text  { font-size: 0.84rem; color: var(--muted); line-height: 1.65; }
.review-meta  { font-size: 0.73rem; color: var(--muted); margin-top: 0.4rem; }
.benefit-item { display: flex; gap: 0.8rem; padding: 0.75rem 0; border-bottom: 1px solid var(--border); }
.benefit-item:last-child { border-bottom: none; }
.benefit-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--primary-pale); color: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.95rem; }

/* ===== CART PAGE ===== */
.cart-table th { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-weight: 700; padding: 0.75rem 1rem; border-color: var(--border); }
.cart-table td { padding: 1rem; vertical-align: middle; border-color: var(--border); }
.cart-img-cell { width: 80px; height: 80px; border-radius: 8px; overflow: hidden; background: linear-gradient(135deg, var(--accent-light), var(--primary-pale)); display: flex; align-items: center; justify-content: center; font-size: 2rem; flex-shrink: 0; }
.cart-product-name { font-weight: 600; font-size: 0.88rem; color: var(--dark); }
.cart-product-variant { font-size: 0.75rem; color: var(--muted); }
.btn-cart-remove { color: var(--muted); cursor: pointer; border: none; background: none; font-size: 0.8rem; transition: color var(--transition); padding: 0.2rem 0; }
.btn-cart-remove:hover { color: #e63946; }
.order-summary-card { background: var(--light-bg); border-radius: var(--radius); padding: 1.5rem; border: 1px solid var(--border); }
.summary-row { display: flex; justify-content: space-between; align-items: center; padding: 0.45rem 0; font-size: 0.88rem; }
.summary-divider { border-top: 2px solid var(--border); margin: 0.5rem 0; }
.summary-total-row { display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: 1rem; }
.coupon-input-group .form-control { border-radius: 50px 0 0 50px !important; border: 1.5px solid var(--border); border-right: none; padding: 0.55rem 1.1rem; font-size: 0.85rem; }
.coupon-input-group .btn-coupon { border-radius: 0 50px 50px 0 !important; background: var(--primary); border: 1.5px solid var(--primary); color: #fff; font-weight: 600; font-size: 0.83rem; padding: 0 1.1rem; cursor: pointer; }
.coupon-msg { font-size: 0.8rem; color: #1e9e54; margin-top: 0.4rem; display: none; }
.free-ship-msg { background: var(--primary-pale); color: var(--primary); font-size: 0.8rem; font-weight: 600; padding: 0.45rem 0.85rem; border-radius: 6px; text-align: center; }

/* ===== CHECKOUT PAGE ===== */
.checkout-section { background: linear-gradient(180deg, var(--accent-light) 0%, var(--light-bg) 30%); min-height: 80vh; padding: 50px 0; }
.checkout-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); padding: 1.6rem; margin-bottom: 1.4rem; }
.checkout-card-title { font-weight: 700; font-size: 0.97rem; color: var(--dark); margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.6rem; }
.checkout-step-badge { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--primary)); color: #fff; font-size: 0.78rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.form-label-brand { font-size: 0.8rem; font-weight: 600; color: var(--muted); margin-bottom: 0.35rem; }
.form-control-brand { border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 0.6rem 0.9rem; font-size: 0.88rem; transition: border-color var(--transition); width: 100%; }
.form-control-brand:focus { outline: none; border-color: var(--primary); box-shadow: none; }
.payment-option {
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem; cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.8rem;
}
.payment-option.selected { border-color: var(--primary); background: var(--primary-pale); }
.payment-option label { cursor: pointer; font-size: 0.88rem; font-weight: 500; margin: 0; }
.checkout-summary { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.4rem; position: sticky; top: 80px; }

/* ===== ABOUT PAGE ===== */
.about-hero { background: linear-gradient(135deg, var(--accent-light) 0%, var(--primary-pale) 50%, var(--blue-light) 100%); padding: 80px 0; }
.about-story { padding: 80px 0; }
.value-card { text-align: center; padding: 2rem 1.5rem; border-radius: var(--radius); border: 1px solid var(--border); background: #fff; transition: transform var(--transition), box-shadow var(--transition); }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-icon { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.5rem; }
.cert-strip { background: linear-gradient(135deg, var(--primary-pale) 0%, var(--light-bg) 50%, var(--blue-light) 100%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 40px 0; }
.cert-badge { display: inline-flex; align-items: center; gap: 0.55rem; background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 0.75rem 1.3rem; font-size: 0.82rem; font-weight: 600; color: var(--dark); transition: border-color var(--transition); }
.cert-badge:hover { border-color: var(--primary); color: var(--primary); }
.cert-badge i { color: var(--primary); font-size: 1.1rem; }

/* ===== CONTACT PAGE ===== */
.contact-info-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); padding: 1.5rem; display: flex; gap: 1rem; align-items: flex-start; transition: box-shadow var(--transition); }
.contact-info-card:hover { box-shadow: var(--shadow); }
.contact-info-icon { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; }
.contact-info-card:nth-child(1) .contact-info-icon { background: var(--accent-light); color: var(--accent); }
.contact-info-card:nth-child(2) .contact-info-icon { background: var(--primary-pale); color: var(--primary); }
.contact-info-card:nth-child(3) .contact-info-icon { background: var(--blue-light); color: var(--blue); }
.contact-info-label { font-weight: 700; font-size: 0.82rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.25rem; }
.contact-info-value { font-size: 0.88rem; color: var(--dark); font-weight: 500; line-height: 1.6; }
.contact-form-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); padding: 2rem; }

/* ===== TOAST ===== */
.cart-toast {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  background: linear-gradient(135deg, var(--accent), #a878d8); color: #fff;
  padding: 0.85rem 1.5rem; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-hover); font-size: 0.85rem; font-weight: 500;
  z-index: 9999; display: none; align-items: center; gap: 0.55rem;
  max-width: 320px;
}
.cart-toast.show { display: flex; animation: toastIn 0.3s ease; }
@keyframes toastIn { from { transform: translateY(16px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== EMPTY CART ===== */
.empty-cart-wrap { text-align: center; padding: 80px 0; }
.empty-cart-wrap i { font-size: 5rem; color: var(--border); display: block; margin-bottom: 1.5rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero-section { min-height: auto; padding: 60px 0; }
  .hero-prod-showcase { margin-top: 2.5rem; }
  .step-connector { display: none; }
  .filter-sidebar { position: static; }
}
@media (max-width: 767px) {
  .section-pad { padding: 55px 0; }
  .hero-prod-showcase { flex-wrap: wrap; gap: 0.8rem; }
  .hero-prod-card { min-width: 110px; }
  .hero-prod-card.featured { transform: none; }
  .gallery-thumbs { flex-direction: row; flex-wrap: wrap; }
  .gallery-thumb { width: 70px; height: 70px; }
  .cart-table { font-size: 0.85rem; }
}
@media (max-width: 575px) {
  .hero-stats { gap: 1.2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
