/* =============================================
   ZADA MASALA – زادہ مصالحہ
   WordPress-Compatible Homepage Stylesheet
   ============================================= */

/* --- CSS Variables --- */
:root {
  --gold:    #f7b638;
  --maroon:  #780115;
  --olive:   #C5C957;
  --cream:   #FDF6EC;
  --dark:    #1a1008;
  --text:    #3d2b1f;
  --text-lt: #7a6055;
  --white:   #ffffff;
  --border:  rgba(120,1,21,.12);
  --shadow:  0 8px 32px rgba(120,1,21,.10);
  --radius:  12px;
  --radius-sm: 6px;
  --trans:   .35s cubic-bezier(.4,0,.2,1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  transition: var(--trans);
  white-space: nowrap;
}
.btn-primary {
  background: var(--maroon);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(120,1,21,.25);
}
.btn-primary:hover {
  background: #a00120;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(120,1,21,.35);
}
.btn-outline {
  border: 2px solid rgba(255,255,255,.7);
  color: var(--white);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,.25);
  border-color: var(--white);
}
.btn-outline-dark {
  border: 2px solid var(--maroon);
  color: var(--maroon);
  padding: 11px 24px;
}
.btn-outline-dark:hover {
  background: var(--maroon);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--maroon);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--gold);
  color: var(--dark);
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin: 8px 0 14px;
}
.section-header h2 em {
  font-style: italic;
  color: var(--maroon);
}
.section-header.light h2,
.section-header.light p { color: var(--white); }
.section-header p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-lt);
  font-size: 1rem;
}
.section-tag {
  display: inline-block;
  background: rgba(247,182,56,.18);
  color: var(--maroon);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  border: 1px solid rgba(247,182,56,.4);
}
.section-tag.light {
  background: rgba(255,255,255,.15);
  color: var(--gold);
  border-color: rgba(247,182,56,.4);
}

/* --- Reveal Animations --- */
.reveal-section { opacity: 0; transform: translateY(40px); transition: opacity .7s ease, transform .7s ease; }
.reveal-section.in-view { opacity: 1; transform: none; }

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
  background: var(--maroon);
  color: rgba(255,255,255,.9);
  font-size: .8rem;
  padding: 8px 0;
  position: relative;
  z-index: 200;
}
.top-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.top-bar a { color: rgba(255,255,255,.85); transition: color .2s; }
.top-bar a:hover { color: var(--gold); }
.top-bar .sep { opacity: .4; margin: 0 8px; }
.top-bar-center { font-weight: 600; letter-spacing: .03em; }
.flame { font-size: .9rem; margin: 0 6px; }
.top-bar-left, .top-bar-right { flex-shrink: 0; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  transition: box-shadow var(--trans);
}
.site-header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.12); }

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon svg { display: block; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-en {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--maroon);
}
.logo-ur {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: .8rem;
  color: var(--text-lt);
  direction: rtl;
}
.logo-footer .logo-en { color: var(--cream); }
.logo-footer .logo-ur { color: rgba(253,246,236,.6); }

/* Navigation */
.main-nav { flex: 1; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav ul li { position: relative; }
.main-nav ul li a {
  display: block;
  padding: 8px 14px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: color var(--trans), background var(--trans);
  white-space: nowrap;
}
.main-nav ul li a:hover { color: var(--maroon); background: rgba(120,1,21,.06); }
.nav-sale { color: var(--maroon) !important; font-weight: 700 !important; }
.chevron { font-size: .7rem; }

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: -20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
  display: grid;
  grid-template-columns: repeat(4, 180px);
  gap: 0;
  padding: 28px 24px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .25s, transform .25s;
  border-top: 3px solid var(--gold);
}
.has-mega:hover .mega-menu {
  opacity: 1;
  pointer-events: all;
  transform: none;
}
.mega-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: .85rem;
  font-weight: 700;
  color: var(--maroon);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.mega-col a {
  display: block;
  padding: 5px 0;
  font-size: .85rem;
  color: var(--text-lt);
  transition: color .2s, padding-left .2s;
}
.mega-col a:hover { color: var(--maroon); padding-left: 6px; }

/* Header Utils */
.header-utils {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.util-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text);
  transition: var(--trans);
  position: relative;
}
.util-btn:hover { background: rgba(120,1,21,.08); color: var(--maroon); }
.cart-btn { background: var(--maroon); color: var(--white) !important; }
.cart-btn:hover { background: #a00120; }
.cart-count {
  position: absolute;
  top: -3px;
  right: -3px;
  background: var(--gold);
  color: var(--dark);
  font-size: .65rem;
  font-weight: 700;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--trans);
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,16,8,.8);
  backdrop-filter: blur(4px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.search-overlay.active { opacity: 1; pointer-events: all; }
.search-box {
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 600px;
  padding: 0 24px;
}
.search-box input {
  flex: 1;
  padding: 16px 24px;
  border-radius: 50px;
  border: none;
  font-size: 1rem;
  outline: none;
  background: var(--white);
}
.search-box button {
  padding: 14px 28px;
  border-radius: 50px;
  background: var(--maroon);
  color: var(--white);
  font-weight: 600;
}
.close-search {
  background: rgba(255,255,255,.15) !important;
  width: 50px;
  padding: 0 !important;
  font-size: 1.1rem;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0808 0%, #3d0a0a 35%, #780115 70%, #4a0d0d 100%);
  display: flex;
  align-items: stretch;
}

#particleCanvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-slides { position: relative; z-index: 2; width: 100%; display: flex; }

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 80px 80px;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .8s ease, transform .8s ease;
  pointer-events: none;
  min-height: 100vh;
}
.hero-slide.active {
  opacity: 1;
  transform: none;
  pointer-events: all;
  position: relative;
  min-height: 100vh;
}

.hero-bg-shape {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 60% 50%, rgba(247,182,56,.08) 0%, transparent 70%);
  pointer-events: none;
}
.shape2 { background: radial-gradient(ellipse 80% 80% at 70% 40%, rgba(197,201,87,.07) 0%, transparent 70%); }

.hero-content {
  max-width: 580px;
  flex-shrink: 0;
}
.hero-badge {
  display: inline-block;
  background: rgba(247,182,56,.2);
  color: var(--gold);
  border: 1px solid rgba(247,182,56,.4);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--olive);
  letter-spacing: .05em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.hero-desc {
  color: rgba(255,255,255,.75);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 32px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 18px 24px;
  backdrop-filter: blur(8px);
  width: fit-content;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
}
.stat strong {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat span { font-size: .75rem; color: rgba(255,255,255,.6); margin-top: 4px; }
.stat-div { width: 1px; height: 40px; background: rgba(255,255,255,.2); }

/* Hero Visual — decorative spice circles */
.hero-visual {
  flex-shrink: 0;
  width: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spice-circle-wrap {
  position: relative;
  width: 400px;
  height: 400px;
}
.spice-circle {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(247,182,56,.4);
  box-shadow: 0 0 40px rgba(0,0,0,.4);
}
.sc1 { width: 200px; height: 200px; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 3; }
.sc2 { width: 130px; height: 130px; top: 0; right: 30px; z-index: 2; animation: floatA 4s ease-in-out infinite; }
.sc3 { width: 110px; height: 110px; bottom: 20px; right: 10px; z-index: 2; animation: floatB 5s ease-in-out infinite; }

/* Spice image backgrounds */
.spice-img { width: 100%; height: 100%; background-size: cover; background-position: center; }
.turmeric  { background: radial-gradient(circle at 40% 40%, #f0a500, #d4820a, #8B5500); }
.chili     { background: radial-gradient(circle at 40% 40%, #d40000, #8b0000, #4a0000); }
.cardamom  { background: radial-gradient(circle at 40% 40%, #4a7c4e, #2d5a31, #1a3a1d); }
.saffron   { background: radial-gradient(circle at 40% 40%, #ffd700, #ff8c00, #cc5500); }
.cinnamon  { background: radial-gradient(circle at 40% 40%, #8b4513, #5c2e0a, #3d1c05); }
.pepper    { background: radial-gradient(circle at 40% 40%, #2d2d2d, #1a1a1a, #0a0a0a); }

.hero-bowl {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 80px;
  background: radial-gradient(ellipse at 50% 30%, rgba(247,182,56,.3), rgba(120,1,21,.5));
  border-radius: 0 0 80px 80px;
  border: 2px solid rgba(247,182,56,.3);
  overflow: hidden;
}
.bowl-spice {
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, #f0a500, #d4820a);
  border-radius: 0 0 80px 80px;
}
.bowl-saffron { background: radial-gradient(ellipse at 50% 0%, #ffd700, #ff8c00); }

.spice-orbit {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px dashed rgba(247,182,56,.2);
  animation: spin 20s linear infinite;
}
.orbit-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold);
}
.od1 { top: 0; left: 50%; transform: translateX(-50%); }
.od2 { bottom: 0; left: 50%; transform: translateX(-50%); }
.od3 { left: 0; top: 50%; transform: translateY(-50%); }

/* Hero Controls */
.hero-controls {
  position: absolute;
  bottom: 40px;
  left: 80px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-prev, .hero-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
  backdrop-filter: blur(8px);
}
.hero-prev:hover, .hero-next:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.hero-dots { display: flex; gap: 8px; }
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: var(--trans);
}
.dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

.scroll-hint {
  position: absolute;
  bottom: 48px;
  right: 60px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* =============================================
   TRUST STRIP
   ============================================= */
.trust-strip {
  background: var(--white);
  border-top: 3px solid var(--gold);
  padding: 32px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
}
.trust-item:not(:last-child) { border-right: 1px solid var(--border); }
.trust-item svg { flex-shrink: 0; }
.trust-item strong { display: block; font-size: .95rem; font-weight: 700; color: var(--dark); }
.trust-item span { display: block; font-size: .8rem; color: var(--text-lt); }

/* =============================================
   CATEGORY SECTION
   ============================================= */
.category-section { padding: 80px 0; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.cat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.cat-card:hover .cat-img { transform: scale(1.08); }
.cat-card:hover .cat-overlay { background: rgba(26,16,8,.7); }
.cat-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
}

/* Category image fills */
.whole-spices { background: radial-gradient(ellipse at 30% 30%, #8b4513 0%, #3d1c05 40%, #1a0a00 100%),
  url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='80' cy='80' r='15' fill='%23d4820a' opacity='.6'/%3E%3Ccircle cx='130' cy='110' r='10' fill='%23f0a500' opacity='.5'/%3E%3Ccircle cx='60' cy='140' r='8' fill='%23cc5500' opacity='.4'/%3E%3C/svg%3E"); }
.ground-spices  { background: linear-gradient(135deg, #f0a500 0%, #d4820a 50%, #8B5500 100%); }
.masala-blends  { background: linear-gradient(135deg, #8b0000 0%, #cc0000 50%, #ff4500 100%); }
.organic-range  { background: linear-gradient(135deg, #2d5a31 0%, #4a7c4e 50%, #c5c957 100%); }
.gift-sets      { background: linear-gradient(135deg, #780115 0%, #f7b638 100%); }
.sale-items     { background: linear-gradient(135deg, #1a0a00 0%, #780115 60%, #f7b638 100%); }

.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,16,8,.85) 0%, rgba(26,16,8,.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 16px;
  transition: background var(--trans);
}
.cat-count {
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
}
.sale-tag { color: var(--gold) !important; }
.cat-overlay h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.cat-link {
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold);
  opacity: 0;
  transform: translateY(8px);
  transition: var(--trans);
}
.cat-card:hover .cat-link { opacity: 1; transform: none; }

/* =============================================
   PRODUCTS SECTION
   ============================================= */
.products-section { padding: 80px 0; background: var(--white); }

.product-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 40px;
  background: rgba(120,1,21,.05);
  border-radius: 50px;
  padding: 6px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.tab-btn {
  padding: 10px 28px;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-lt);
  transition: var(--trans);
}
.tab-btn.active {
  background: var(--maroon);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(120,1,21,.25);
}
.tab-btn:hover:not(.active) { color: var(--maroon); }

.tab-content { display: none; }
.tab-content.active { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.product-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: var(--trans);
  position: relative;
}
.product-card:hover {
  box-shadow: 0 16px 48px rgba(120,1,21,.12);
  transform: translateY(-4px);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.product-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
}
.product-card:hover .product-img { transform: scale(1.06); }

/* Product image backgrounds */
.turmeric-p { background: radial-gradient(ellipse at 40% 30%, #f0d060 0%, #f0a500 40%, #d4820a 100%); }
.chili-p    { background: radial-gradient(ellipse at 40% 30%, #ff6b35 0%, #d40000 50%, #8b0000 100%); }
.cardamom-p { background: radial-gradient(ellipse at 40% 30%, #7fb87f 0%, #4a7c4e 50%, #1a3a1d 100%); }
.biryani-p  { background: radial-gradient(ellipse at 40% 30%, #ff8c00 0%, #cc4400 50%, #780115 100%); }
.saffron-p  { background: radial-gradient(ellipse at 40% 30%, #ffd700 0%, #ff8c00 50%, #cc5500 100%); }
.cinnamon-p { background: radial-gradient(ellipse at 40% 30%, #d4956a 0%, #8b4513 50%, #3d1c05 100%); }
.nihari-p   { background: radial-gradient(ellipse at 40% 30%, #c8622a 0%, #8b2500 50%, #4a0d00 100%); }
.giftbox-p  { background: linear-gradient(135deg, #780115 0%, #f7b638 50%, #c5c957 100%); }

.product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.badge.hot     { background: var(--maroon); color: var(--white); }
.badge.sale    { background: var(--gold); color: var(--dark); }
.badge.new     { background: var(--olive); color: var(--white); }
.badge.premium { background: linear-gradient(135deg, var(--gold), #e09000); color: var(--dark); }

.product-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--trans);
}
.product-card:hover .product-actions { opacity: 1; transform: none; }
.product-actions button {
  width: 34px;
  height: 34px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  transition: var(--trans);
}
.product-actions button:hover { background: var(--maroon); color: var(--white); }

.product-info {
  padding: 16px 18px 20px;
}
.product-cat {
  font-size: .72rem;
  font-weight: 600;
  color: var(--maroon);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.product-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  font-weight: 600;
  margin: 5px 0 6px;
  color: var(--dark);
  line-height: 1.3;
}
.product-info h4 a:hover { color: var(--maroon); }
.stars { font-size: .8rem; color: var(--gold); margin-bottom: 8px; }
.stars span { color: var(--text-lt); }
.product-price { margin-bottom: 14px; }
.price { font-size: 1rem; font-weight: 700; color: var(--maroon); }
.old-price { font-size: .85rem; color: var(--text-lt); text-decoration: line-through; margin-left: 6px; }

.add-cart {
  width: 100%;
  padding: 10px;
  background: transparent;
  border: 1.5px solid var(--maroon);
  border-radius: 50px;
  color: var(--maroon);
  font-size: .85rem;
  font-weight: 600;
  transition: var(--trans);
}
.add-cart:hover {
  background: var(--maroon);
  color: var(--white);
}

.view-all-wrap {
  text-align: center;
  margin-top: 40px;
}

/* =============================================
   PROMO BANNERS
   ============================================= */
.promo-banners { padding: 80px 0; }
.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.promo-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.promo-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.promo-large { min-height: 420px; }
.promo-small { flex: 1; min-height: 190px; }

.promo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
}
.promo-card:hover .promo-bg { transform: scale(1.05); }

.promo-bg1 { background: linear-gradient(135deg, #1a0808 0%, #780115 60%, #c5a020 100%); }
.promo-bg2 { background: linear-gradient(135deg, #1a3a1d 0%, #4a7c4e 70%, #c5c957 100%); }
.promo-bg3 { background: linear-gradient(135deg, #3d1c05 0%, #8b4513 60%, #f7b638 100%); }

.promo-content {
  position: relative;
  z-index: 1;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(26,16,8,.8) 0%, transparent 60%);
}
.promo-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
  width: fit-content;
}
.promo-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}
.promo-small .promo-content h3 { font-size: 1.1rem; }
.promo-content p { color: rgba(255,255,255,.75); font-size: .9rem; margin-bottom: 20px; }
.promo-sale-badge {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 8px;
}

/* =============================================
   BRAND STORY
   ============================================= */
.brand-story { padding: 100px 0; }
.brand-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.brand-story-visuals {
  position: relative;
  height: 500px;
}
.bs-img {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
}
.bs-main {
  width: 75%;
  height: 85%;
  left: 0;
  top: 0;
  background: linear-gradient(135deg, #8b4513 0%, #3d1c05 40%, #780115 100%);
  box-shadow: var(--shadow);
}
.bs-accent {
  width: 55%;
  height: 55%;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #f7b638 0%, #cc5500 60%, #8b0000 100%);
  box-shadow: var(--shadow);
  border: 4px solid var(--cream);
}
.bs-badge-float {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--maroon);
  color: var(--white);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 24px rgba(120,1,21,.4);
  border: 3px solid var(--gold);
  z-index: 5;
}
.bs-years { font-size: 1.8rem; font-weight: 800; color: var(--gold); line-height: 1; }
.bs-badge-float span:last-child { font-size: .65rem; color: rgba(255,255,255,.8); margin-top: 2px; }

.brand-story-text .section-tag { margin-bottom: 12px; }
.brand-story-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin: 8px 0 20px;
}
.brand-story-text h2 em { color: var(--maroon); font-style: italic; }
.brand-story-text .lead {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 14px;
}
.brand-story-text p {
  color: var(--text-lt);
  margin-bottom: 28px;
}
.brand-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.pill {
  display: inline-block;
  background: rgba(120,1,21,.07);
  color: var(--maroon);
  border: 1px solid rgba(120,1,21,.15);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: .82rem;
  font-weight: 600;
}

/* =============================================
   BENEFITS SECTION
   ============================================= */
.benefits-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.benefits-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a0808 0%, #780115 50%, #3d0a0a 100%);
  z-index: 0;
}
.benefits-section .container { position: relative; z-index: 1; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.benefit-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: var(--trans);
}
.benefit-card:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-6px);
  border-color: rgba(247,182,56,.3);
}
.benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
}
.benefit-icon svg { width: 100%; height: 100%; }
.benefit-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.benefit-card p { font-size: .85rem; color: rgba(255,255,255,.65); line-height: 1.7; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials { padding: 80px 0; background: var(--cream); }

.testimonial-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  transition: transform .5s ease;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.review-stars { font-size: 1rem; color: var(--gold); margin-bottom: 14px; }
.testimonial-card p {
  font-size: .88rem;
  color: var(--text-lt);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--gold);
}
.av1 { background: linear-gradient(135deg, #f7b638, #e09000); }
.av2 { background: linear-gradient(135deg, #780115, #cc0000); }
.av3 { background: linear-gradient(135deg, #4a7c4e, #c5c957); }
.av4 { background: linear-gradient(135deg, #8b4513, #d4820a); }
.reviewer strong { display: block; font-size: .9rem; font-weight: 700; color: var(--dark); }
.reviewer span { font-size: .78rem; color: var(--text-lt); }
.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.testimonial-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--maroon);
  font-size: 1rem;
  font-weight: 600;
  transition: var(--trans);
}
.testimonial-nav button:hover {
  background: var(--maroon);
  color: var(--white);
  border-color: var(--maroon);
}

/* =============================================
   GALLERY
   ============================================= */
.gallery-section { padding: 60px 0; background: var(--white); }
.gallery-header {
  text-align: center;
  margin-bottom: 36px;
}
.gallery-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
}
.gallery-header h3 em { color: var(--maroon); }
.gallery-header p { color: var(--text-lt); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.gallery-item {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(120,1,21,.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--trans);
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
}
/* Gallery item fills */
.gi1 { background: radial-gradient(ellipse at 40% 30%, #f0a500, #d4820a, #8B5500); }
.gi2 { background: radial-gradient(ellipse at 40% 30%, #ff6b35, #d40000, #8b0000); }
.gi3 { background: radial-gradient(ellipse at 40% 30%, #7fb87f, #4a7c4e, #1a3a1d); }
.gi4 { background: radial-gradient(ellipse at 40% 30%, #ffd700, #ff8c00, #cc5500); }
.gi5 { background: radial-gradient(ellipse at 40% 30%, #d4956a, #8b4513, #3d1c05); }
.gi6 { background: linear-gradient(135deg, #780115, #f7b638, #c5c957); }

/* =============================================
   NEWSLETTER
   ============================================= */
.newsletter {
  padding: 70px 0;
  background: linear-gradient(135deg, #1a0808 0%, #780115 100%);
}
.newsletter-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.nl-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}
.nl-icon {
  width: 60px;
  height: 60px;
  background: rgba(247,182,56,.2);
  border: 1px solid rgba(247,182,56,.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.nl-left h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.nl-left p { color: rgba(255,255,255,.65); font-size: .9rem; }
.nl-form {
  display: flex;
  gap: 12px;
  flex: 1;
  max-width: 460px;
}
.nl-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-size: .9rem;
  outline: none;
  backdrop-filter: blur(8px);
}
.nl-form input::placeholder { color: rgba(255,255,255,.5); }
.nl-form input:focus { border-color: var(--gold); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: var(--dark); }
.footer-top { padding: 70px 0 50px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1.4fr;
  gap: 40px;
}
.brand-col p {
  color: rgba(253,246,236,.55);
  font-size: .85rem;
  line-height: 1.8;
  margin-top: 16px;
  margin-bottom: 24px;
}
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: var(--trans);
}
.social-link:hover { background: var(--maroon); color: var(--white); border-color: var(--maroon); }

.footer-col h5 {
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: .85rem;
  color: rgba(253,246,236,.55);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.contact-list li {
  font-size: .85rem;
  color: rgba(253,246,236,.55);
  margin-bottom: 10px;
}
.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
}
.pay-icon {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .82rem; color: rgba(253,246,236,.4); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: .82rem; color: rgba(253,246,236,.4); transition: color .2s; }
.footer-bottom-links a:hover { color: var(--gold); }

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--maroon);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(120,1,21,.4);
  z-index: 50;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--trans);
}
.back-to-top.visible { opacity: 1; transform: none; }
.back-to-top:hover { background: #a00120; transform: translateY(-3px); }

/* =============================================
   KEYFRAME ANIMATIONS
   ============================================= */
@keyframes floatA {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-15px) rotate(5deg); }
}
@keyframes floatB {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(12px) rotate(-4deg); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes scrollLine {
  0%,100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50%      { opacity: .4; transform: scaleY(.5); transform-origin: top; }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1200px) {
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .tab-content.active { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .brand-col { grid-column: 1 / -1; }
  .hero-slide { padding: 100px 48px 80px; }
  .hero-visual { width: 360px; }
  .spice-circle-wrap { width: 340px; height: 340px; }
  .sc1 { width: 170px; height: 170px; }
}
@media (max-width: 992px) {
  .trust-items { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-track { grid-template-columns: repeat(2, 1fr); }
  .brand-story-grid { grid-template-columns: 1fr; gap: 48px; }
  .brand-story-visuals { height: 380px; }
  .promo-grid { grid-template-columns: 1fr; }
  .tab-content.active { grid-template-columns: repeat(2, 1fr); }
  .hero-slide { flex-direction: column; justify-content: center; text-align: center; }
  .hero-visual { width: 280px; margin-top: 32px; }
  .spice-circle-wrap { width: 260px; height: 260px; }
  .sc1 { width: 130px; height: 130px; }
  .sc2 { width: 90px; height: 90px; }
  .sc3 { width: 80px; height: 80px; }
  .hero-btns { justify-content: center; }
  .hero-stats { margin: 0 auto; }
  .hero-controls { left: 50%; transform: translateX(-50%); }
  .scroll-hint { display: none; }
}
@media (max-width: 768px) {
  .top-bar-left, .top-bar-right { display: none; }
  .top-bar-center { width: 100%; text-align: center; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .tab-content.active { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nl-form { flex-direction: column; }
  .hero-slide { padding: 90px 24px 60px; }
  .testimonial-track { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .tab-content.active { grid-template-columns: 1fr; }
  .testimonial-track { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-inner { flex-direction: column; }
  .hero-stats { flex-direction: column; gap: 10px; padding: 16px; }
  .stat-div { width: 40px; height: 1px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

.cat-card,
.product-card {
  display: block;
}

.product-img,
.cat-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.product-card .add-cart {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
