/* ============================================================
   GlobalTradeHub — Premium Multan Mangoes
   styles.css
   Brand colors: Mango Gold, Orchard Green, Cream, Deep Brown
   ============================================================ */

/* ---- BRAND COLOR PALETTE ----
   --gold:      #F5A623  (Mango Gold)
   --gold-deep: #E8920A  (Deep Gold)
   --gold-light:#FFF3D6  (Light Gold)
   --green:     #3D7A3A  (Orchard Green)
   --green-mid: #5A9A56  (Mid Green)
   --green-light:#E8F5E0 (Light Green)
   --cream:     #FFFBF2  (Cream White)
   --brown:     #4A2C0A  (Deep Brown)
   --brown-mid: #7A4A1A  (Mid Brown)
   --text:      #1A1209  (Near Black)
   --text-muted:#6B5A3A  (Muted Brown)
   ---- */

/* ==================== RESET & BASE ==================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #F5A623;
  --gold-deep:  #E8920A;
  --gold-light: #FFF8E7;
  --gold-pale:  #FFFBF0;
  --green:      #3D7A3A;
  --green-mid:  #5A9A56;
  --green-light:#E8F5E0;
  --cream:      #FFFCF4;
  --brown:      #3D2008;
  --brown-mid:  #6B3B10;
  --text:       #1C1005;
  --text-muted: #7A5A2A;
  --text-light: #A8885A;
  --white:      #FFFFFF;
  --shadow-sm:  0 2px 12px rgba(62,32,8,.08);
  --shadow-md:  0 8px 32px rgba(62,32,8,.12);
  --shadow-lg:  0 20px 60px rgba(62,32,8,.18);
  --radius-sm:  10px;
  --radius-md:  18px;
  --radius-lg:  28px;
  --radius-xl:  40px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
  color: var(--brown);
}

em { font-style: italic; color: var(--gold-deep); }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

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

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

/* ==================== NAVBAR ==================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255,252,244,.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  font-size: 28px;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(245,166,35,.4));
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: -0.02em;
}

.logo-tagline {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links li a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brown);
  transition: color var(--transition);
  position: relative;
}

.nav-links li a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
  border-radius: 2px;
}

.nav-links li a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  background: var(--gold);
  color: var(--brown) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--transition) !important;
  box-shadow: 0 4px 16px rgba(245,166,35,.35);
}

.nav-cta:hover {
  background: var(--gold-deep) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245,166,35,.45);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: var(--transition);
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.925rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn i { width: 18px; height: 18px; }

.btn-primary {
  background: var(--gold);
  color: var(--brown);
  box-shadow: 0 6px 24px rgba(245,166,35,.4);
}

.btn-primary:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(245,166,35,.5);
}

.btn-outline {
  background: transparent;
  color: var(--brown);
  border: 2px solid rgba(61,32,8,.2);
}

.btn-outline:hover {
  background: var(--gold-light);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-product {
  width: 100%;
  justify-content: center;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(61,122,58,.3);
}

.btn-product:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(61,122,58,.4);
}

.btn-product-featured {
  background: var(--gold);
  color: var(--brown);
  box-shadow: 0 4px 16px rgba(245,166,35,.4);
}

.btn-product-featured:hover {
  background: var(--gold-deep);
  box-shadow: 0 8px 24px rgba(245,166,35,.5);
}

.btn-whatsapp {
  width: 100%;
  justify-content: center;
  background: #25D366;
  color: var(--white);
  font-size: 1rem;
  padding: 16px 28px;
  box-shadow: 0 6px 24px rgba(37,211,102,.35);
}

.btn-whatsapp:hover {
  background: #20BD5A;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37,211,102,.45);
}

.btn-footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  background: #25D366;
  color: var(--white);
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
  transition: var(--transition);
}

.btn-footer-wa:hover {
  background: #20BD5A;
  transform: translateY(-2px);
}

/* ==================== SECTION HEADERS ==================== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: var(--gold-light);
  border: 1px solid rgba(245,166,35,.3);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ==================== HERO ==================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #FFF8E7 0%, #FFFCF4 40%, #F0FDE8 100%);
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

/* Background blobs */
.hero-bg-blobs { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #FDD06A, transparent 70%);
  top: -100px; right: -100px;
  animation: blobFloat 8s ease-in-out infinite alternate;
}

.blob-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #A8D88A, transparent 70%);
  bottom: 0; left: -50px;
  animation: blobFloat 10s ease-in-out infinite alternate-reverse;
}

.blob-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, #F5A623, transparent 70%);
  top: 50%; left: 40%;
  animation: blobFloat 12s ease-in-out infinite alternate;
}

@keyframes blobFloat {
  from { transform: translate(0,0) scale(1); }
  to { transform: translate(30px, 20px) scale(1.1); }
}

/* Floating mango decorations */
.floating-mangoes { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.float-mango {
  position: absolute;
  font-size: 2rem;
  opacity: 0.15;
  animation: floatUp 6s ease-in-out infinite;
}

.fm-1 { top: 20%; left: 5%; animation-delay: 0s; font-size: 2.5rem; }
.fm-2 { top: 60%; left: 8%; animation-delay: 1.5s; font-size: 1.5rem; }
.fm-3 { top: 15%; right: 30%; animation-delay: 3s; }
.fm-4 { bottom: 25%; right: 8%; animation-delay: 2s; font-size: 1.2rem; }
.fm-5 { top: 40%; left: 45%; animation-delay: 4s; font-size: 1.8rem; }

@keyframes floatUp {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.12; }
  50% { transform: translateY(-20px) rotate(10deg); opacity: 0.2; }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  flex: 0 0 55%;
  max-width: 600px;
  animation: fadeInUp 0.8s ease both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(245,166,35,.4);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brown-mid);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(61,122,58,.4); }
  50% { box-shadow: 0 0 0 6px rgba(61,122,58,0); }
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--brown);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brown);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(61,32,8,.15);
}

/* Hero Visual — Box Showcase */
.hero-visual {
  position: relative;
  z-index: 2;
  flex: 0 0 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 0.8s 0.2s ease both;
}

.box-showcase {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.box-glow {
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,166,35,.35) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%,-50%) scale(1.1); }
}

.mango-box {
  position: relative;
  z-index: 2;
  width: 260px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(61,32,8,.25), 0 0 0 1px rgba(245,166,35,.2);
  animation: boxFloat 4s ease-in-out infinite;
}

@keyframes boxFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.box-lid {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-mid) 100%);
  padding: 28px 24px 20px;
  position: relative;
  overflow: hidden;
}

.box-lid::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 8px,
    rgba(255,255,255,.03) 8px, rgba(255,255,255,.03) 9px
  );
}

.box-lid::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-deep), var(--gold));
}

.box-lid-inner {
  position: relative;
  z-index: 1;
}

.box-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.box-logo-icon { font-size: 2.5rem; margin-bottom: 6px; }

.box-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.box-brand-sub {
  font-size: 0.65rem;
  color: rgba(255,248,231,.7);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}

.box-stamp {
  margin-top: 10px;
  font-size: 0.6rem;
  color: rgba(255,248,231,.5);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(245,166,35,.3);
  padding: 3px 10px;
  border-radius: 50px;
}

.box-body {
  background: linear-gradient(180deg, #4A2C0A 0%, #2D1A06 100%);
  padding: 16px 20px 20px;
  border-top: 2px solid rgba(245,166,35,.3);
}

.box-mangoes-inside {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 8px;
  text-align: center;
}

.box-mangoes-inside span {
  font-size: 1.8rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.3));
  animation: mangoRock 3s ease-in-out infinite;
}

.box-mangoes-inside span:nth-child(2) { animation-delay: 0.3s; }
.box-mangoes-inside span:nth-child(3) { animation-delay: 0.6s; }
.box-mangoes-inside span:nth-child(4) { animation-delay: 0.9s; }
.box-mangoes-inside span:nth-child(5) { animation-delay: 1.2s; }
.box-mangoes-inside span:nth-child(6) { animation-delay: 1.5s; }

@keyframes mangoRock {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(5deg) scale(1.05); }
  75% { transform: rotate(-5deg) scale(1.05); }
}

.box-shadow-el {
  width: 220px; height: 20px;
  background: radial-gradient(ellipse, rgba(61,32,8,.35) 0%, transparent 70%);
  margin-top: 16px;
  border-radius: 50%;
}

.box-ribbon {
  margin-top: 12px;
  background: var(--gold);
  color: var(--brown);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(245,166,35,.4);
}

/* ==================== TRUST BAR ==================== */
.trust-bar {
  background: var(--brown);
  padding: 20px 0;
  overflow: hidden;
}

.trust-items {
  display: flex;
  gap: 0;
  align-items: stretch;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,248,231,.85);
  font-size: 0.825rem;
  font-weight: 500;
  flex: 1;
  min-width: 200px;
  padding: 12px 24px;
  border-right: 1px solid rgba(255,255,255,.1);
}

.trust-item:last-child { border-right: none; }

.trust-item i { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

/* ==================== VARIETIES ==================== */
.varieties {
  padding: 100px 0;
  background: var(--cream);
}

.varieties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.variety-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1.5px solid rgba(245,166,35,.15);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
}

.variety-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.card-anwar::before { background: linear-gradient(90deg, #E8920A, #F5A623); }
.card-chaunsa::before { background: linear-gradient(90deg, #F5A623, #FDD06A); }
.card-mosmi::before { background: linear-gradient(90deg, #5A9A56, #3D7A3A); }

.variety-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245,166,35,.3);
}

.featured-variety {
  background: linear-gradient(145deg, #FFFBEF, #FFFFFF);
  border-color: rgba(245,166,35,.4);
  box-shadow: var(--shadow-md);
}

.featured-ribbon {
  position: absolute;
  top: 20px; right: -8px;
  background: var(--gold);
  color: var(--brown);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px 5px 12px;
  border-radius: 4px 0 0 4px;
  box-shadow: 2px 2px 8px rgba(245,166,35,.4);
}

.featured-ribbon::after {
  content: '';
  position: absolute;
  right: -8px; bottom: -8px;
  border: 8px solid transparent;
  border-left-color: var(--gold-deep);
  border-bottom-color: transparent;
  border-top-color: transparent;
  width: 0; height: 0;
}

.variety-badge {
  display: inline-block;
  background: var(--gold-light);
  color: var(--gold-deep);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
  border: 1px solid rgba(245,166,35,.3);
}

.variety-emoji-wrap {
  position: relative;
  margin-bottom: 20px;
  display: inline-block;
}

.variety-emoji { font-size: 3.5rem; line-height: 1; }

.variety-glow {
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle, rgba(245,166,35,.2) 0%, transparent 70%);
  border-radius: 50%;
}

.variety-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 12px;
}

.variety-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.variety-traits {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.variety-traits li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 500;
}

.variety-traits i {
  width: 16px; height: 16px;
  color: var(--green);
  flex-shrink: 0;
}

.variety-tag {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--green-light);
  border: 1px solid rgba(61,122,58,.2);
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 500;
}

/* ==================== PRODUCTS ==================== */
.products {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.products-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #3D2008 0%, #2A1505 100%);
  z-index: 0;
}

.products-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 20px,
    rgba(255,255,255,.015) 20px, rgba(255,255,255,.015) 21px
  );
}

.products .container { position: relative; z-index: 1; }

.products .section-header .section-eyebrow { background: rgba(245,166,35,.15); border-color: rgba(245,166,35,.3); }
.products .section-title { color: var(--gold-light); }
.products .section-title em { color: var(--gold); }
.products .section-desc { color: rgba(255,248,231,.65); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 820px;
  margin: 0 auto;
}

.product-card {
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(245,166,35,.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  backdrop-filter: blur(8px);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,166,35,.5);
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}

.product-card-featured {
  background: rgba(245,166,35,.1);
  border-color: rgba(245,166,35,.5);
  box-shadow: 0 8px 32px rgba(245,166,35,.15);
}

.product-popular-badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--gold);
  color: var(--brown);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 0 var(--radius-lg) 0 var(--radius-sm);
}

.product-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 28px 0;
}

.product-size-badge {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.product-icon { font-size: 2.5rem; }

.product-body { padding: 20px 28px 28px; }

.product-name {
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 14px;
}

.price-currency {
  font-size: 0.875rem;
  color: rgba(255,248,231,.5);
  font-weight: 500;
}

.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.product-desc {
  font-size: 0.875rem;
  color: rgba(255,248,231,.6);
  line-height: 1.65;
  margin-bottom: 20px;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,248,231,.8);
}

.product-features i {
  width: 16px; height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.products-note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.875rem;
  color: rgba(255,248,231,.5);
  line-height: 1.7;
}

/* ==================== PACKAGING ==================== */
.packaging {
  padding: 100px 0;
  background: var(--cream);
}

.packaging-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.packaging-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}

.packaging-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.packaging-features li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pf-icon {
  width: 40px; height: 40px;
  background: var(--gold-light);
  border: 1px solid rgba(245,166,35,.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pf-icon i { width: 18px; height: 18px; color: var(--gold-deep); }

.packaging-features li div { display: flex; flex-direction: column; gap: 2px; }
.packaging-features li strong { font-size: 0.925rem; color: var(--brown); }
.packaging-features li span { font-size: 0.85rem; color: var(--text-muted); }

/* 3D Box Visual */
.packaging-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pack-box-3d {
  position: relative;
  width: 240px; height: 280px;
  transform-style: preserve-3d;
  animation: boxRotate 8s ease-in-out infinite alternate;
}

@keyframes boxRotate {
  0% { transform: perspective(800px) rotateY(-15deg) rotateX(5deg); }
  100% { transform: perspective(800px) rotateY(15deg) rotateX(-5deg); }
}

.pack-face {
  position: absolute;
  border-radius: var(--radius-md);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2);
}

.pack-front {
  width: 240px; height: 280px;
  background: linear-gradient(145deg, var(--brown) 0%, #2A1505 100%);
  border: 2px solid rgba(245,166,35,.4);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pack-front::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 10px,
    rgba(255,255,255,.02) 10px, rgba(255,255,255,.02) 11px
  );
}

.pack-front::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-deep), var(--gold));
}

.pack-front-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
}

.pack-logo { font-size: 3rem; margin-bottom: 8px; }

.pack-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.pack-sub {
  font-size: 0.6rem;
  color: rgba(255,248,231,.6);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 2px;
}

.pack-divider-line {
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,166,35,.5), transparent);
  margin: 12px auto;
}

.pack-weight {
  font-size: 0.7rem;
  color: rgba(255,248,231,.7);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.pack-origin {
  font-size: 0.65rem;
  color: rgba(255,248,231,.5);
  margin-top: 4px;
}

.pack-icons-row {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  font-size: 1.1rem;
}

.pack-side {
  width: 40px; height: 280px;
  background: linear-gradient(180deg, #2A1505 0%, #1A0D03 100%);
  border: 1px solid rgba(245,166,35,.2);
  top: 0;
  right: -38px;
  transform: skewY(-45deg) translateY(0px);
  transform-origin: left;
}

.pack-top {
  width: 240px; height: 40px;
  background: linear-gradient(180deg, rgba(245,166,35,.4) 0%, rgba(245,166,35,.15) 100%);
  border: 1px solid rgba(245,166,35,.4);
  top: -38px;
  transform: skewX(-45deg) translateX(0);
  transform-origin: bottom;
}

.pack-shadow {
  width: 200px; height: 20px;
  background: radial-gradient(ellipse, rgba(61,32,8,.3) 0%, transparent 70%);
  margin-top: 20px;
  border-radius: 50%;
}

.pack-label-note {
  margin-top: 8px;
  font-size: 0.7rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ==================== WHY US ==================== */
.why-us {
  padding: 100px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--gold-pale) 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  border: 1.5px solid rgba(245,166,35,.1);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(245,166,35,.25);
}

.why-icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.why-icon-wrap i { width: 22px; height: 22px; }

.why-icon-1 { background: #FFF3D6; } .why-icon-1 i { color: var(--gold-deep); }
.why-icon-2 { background: #F0FDE8; } .why-icon-2 i { color: var(--green); }
.why-icon-3 { background: #FFF3D6; } .why-icon-3 i { color: var(--gold-deep); }
.why-icon-4 { background: #FDE8E8; } .why-icon-4 i { color: #C0392B; }
.why-icon-5 { background: #E8F0FD; } .why-icon-5 i { color: #2C6BC0; }
.why-icon-6 { background: #F0FDE8; } .why-icon-6 i { color: var(--green); }

.why-card h4 {
  font-size: 1.1rem;
  color: var(--brown);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==================== DELIVERY ==================== */
.delivery {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.delivery-blob {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(61,122,58,.08) 0%, transparent 70%);
  border-radius: 50%;
  top: -200px; right: -200px;
  pointer-events: none;
}

.delivery-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 64px;
}

.city-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1.5px solid rgba(61,122,58,.2);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brown);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.city-chip i { width: 14px; height: 14px; color: var(--green); }

.city-chip:hover, .city-chip-more {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  transform: translateY(-2px);
}

.city-chip-more i { color: white !important; }

.delivery-steps {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.delivery-step {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border: 1.5px solid rgba(245,166,35,.15);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}

.delivery-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-num {
  position: absolute;
  top: -12px; left: 20px;
  background: var(--brown);
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

.step-icon {
  width: 48px; height: 48px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.step-icon i { width: 20px; height: 20px; color: var(--gold-deep); }

.delivery-step h4 {
  font-size: 1rem;
  color: var(--brown);
  margin-bottom: 8px;
}

.delivery-step p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-arrow {
  color: var(--gold);
  padding-top: 48px;
  flex-shrink: 0;
}

.step-arrow i { width: 24px; height: 24px; }

/* ==================== CONTACT ==================== */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, #3D2008 0%, #2A1505 100%);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -60deg, transparent, transparent 30px,
    rgba(245,166,35,.025) 30px, rgba(245,166,35,.025) 31px
  );
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-text .section-eyebrow { background: rgba(245,166,35,.15); border-color: rgba(245,166,35,.3); }
.contact-text .section-title { color: var(--gold-light); text-align: left; }
.contact-text .section-title em { color: var(--gold); }

.contact-desc {
  font-size: 0.95rem;
  color: rgba(255,248,231,.65);
  line-height: 1.75;
  margin-bottom: 32px;
  margin-top: 16px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,248,231,.8);
  font-size: 0.9rem;
}

.contact-item i { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

/* Order Card */
.order-card {
  background: rgba(255,252,244,.97);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 24px 80px rgba(0,0,0,.3);
}

.order-card-title {
  font-size: 1.6rem;
  color: var(--brown);
  margin-bottom: 6px;
}

.order-card-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--gold-pale);
  border: 1.5px solid rgba(245,166,35,.2);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  color: var(--text);
  transition: var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,166,35,.15);
  background: var(--white);
}

/* ==================== FOOTER ==================== */
.footer {
  background: #1A0D03;
  padding: 80px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-name { color: var(--gold-light); }
.footer-brand .logo-tagline { color: rgba(255,248,231,.4); }

.footer-about {
  font-size: 0.85rem;
  color: rgba(255,248,231,.55);
  line-height: 1.75;
  margin-bottom: 20px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.825rem;
  font-weight: 600;
  color: rgba(255,248,231,.7);
  border: 1px solid rgba(255,255,255,.15);
  padding: 8px 14px;
  border-radius: 50px;
  transition: var(--transition);
}

.footer-social:hover {
  background: rgba(255,255,255,.08);
  color: var(--gold);
  border-color: rgba(245,166,35,.4);
}

.footer-links h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,248,231,.4);
  margin-bottom: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links ul li a {
  font-size: 0.875rem;
  color: rgba(255,248,231,.65);
  transition: color var(--transition);
}

.footer-links ul li a:hover { color: var(--gold); }

.footer-contact-col h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,248,231,.4);
  margin-bottom: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,248,231,.65);
  margin-bottom: 12px;
}

.footer-contact-item i { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,248,231,.35);
}

/* ==================== WHATSAPP FLOAT ==================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,.5);
  transition: var(--transition);
  animation: waPulse 3s ease-in-out infinite;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(37,211,102,.4); }
  50% { box-shadow: 0 8px 40px rgba(37,211,102,.7); }
}

.whatsapp-float:hover {
  transform: scale(1.12);
  background: #20BD5A;
}

.whatsapp-float svg { width: 28px; height: 28px; color: white; }

.wa-tooltip {
  position: absolute;
  right: 72px;
  background: var(--brown);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--brown);
}

.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ==================== BACK TO TOP ==================== */
.back-to-top {
  position: fixed;
  bottom: 100px; right: 30px;
  z-index: 998;
  width: 44px; height: 44px;
  background: var(--brown);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover { background: var(--brown-mid); transform: translateY(-2px); }
.back-to-top i { width: 18px; height: 18px; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 120px 24px 80px;
    min-height: auto;
  }

  .hero-content { max-width: 100%; flex: none; }
  .hero-subtitle { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { margin-top: 48px; flex: none; }

  .varieties-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .products-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .packaging-inner { grid-template-columns: 1fr; gap: 48px; }
  .packaging-visual { order: -1; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .delivery-steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); padding-top: 0; padding-left: 48px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(255,252,244,.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 20px 24px 24px;
    gap: 4px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid rgba(245,166,35,.2);
  }

  .nav-links.open { display: flex; }
  .nav-links li a { padding: 10px 0; display: block; font-size: 1rem; }
  .hamburger { display: flex; }

  .hero-title { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }

  .trust-items { flex-direction: column; gap: 0; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }

  .why-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .section-title { font-size: 1.75rem; }
  .whatsapp-float { width: 54px; height: 54px; bottom: 20px; right: 20px; }
  .back-to-top { bottom: 86px; right: 22px; }
}

@media (max-width: 480px) {
  .mango-box { width: 220px; }
  .pack-box-3d { width: 200px; height: 240px; }
  .pack-front { width: 200px; height: 240px; }
  .order-card { padding: 28px 20px; }
  .hero-stats { gap: 16px; }
}
