/* Bathi Farms - Premium Luxury Organic Farm Styles */
:root{
  --bg:#0e1813;          /* deep green-black */
  --bg-elev:#122418;     /* elevated surface */
  --green:#1f5d2a;       /* primary green inspired by logo */
  --green-2:#0f3d1f;     
  --gold:#d3a43a;        /* rich gold from logo */
  --gold-2:#f0ce6a;      
  --text:#e9f3ec;        /* high contrast text */
  --muted:#b7c7bb;       /* secondary text */
  --border:rgba(211,164,58,0.25);
  --shadow:0 10px 30px rgba(0,0,0,.35);
  --radius:16px;
  --radius-sm:12px;
  --radius-lg:22px;
  --container:1200px;
  --bg-1:#0e1813;        /* gradient start */
  --bg-2:#0b1410;        /* gradient end */
  --field-bg:rgba(14,24,19,0.4);    /* form field background */
}

/* Alias legacy page headers to match main header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  background: rgba(15,25,20,.75);
  border-bottom: 1px solid var(--border);
  transition: all .35s ease;
}
.site-header .header-container { display:flex; align-items:center; justify-content:space-between; padding:14px 24px; max-width: var(--container); margin: 0 auto; }
.site-header .logo { display:inline-flex; align-items:center; gap:10px; color:var(--text); text-decoration:none; font-weight:700; letter-spacing:.4px }
.brand-logo, .footer-logo img { width:32px; height:32px; object-fit:contain; border-radius:8px; background:transparent; padding:2px; }
.site-header .main-nav .nav-links { display:flex; gap:24px }
.site-header .nav-links a { position:relative; color:var(--text); text-decoration:none; font-weight:500; opacity:.9 }
.site-header .nav-links a::after { content:""; position:absolute; left:0; bottom:-6px; width:0; height:2px; background:linear-gradient(90deg, var(--gold), var(--gold-2)); transition:width .3s ease }
.site-header .nav-links a:hover::after{ width:100% }
.site-header .cart-toggle { background: linear-gradient(135deg, var(--bg-elev), rgba(0,0,0,0)); border: 1px solid var(--border); color: var(--text); border-radius: 999px; padding: 8px 12px; cursor: pointer; display: inline-flex; align-items: center; position: relative; }

/* Policy pages layout */
.policy-page { padding: 90px 0 60px; }
.policy-page .container { max-width: 900px; }
.policy-content { 
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.22);
  padding: 28px 28px 32px;
}
.policy-content h1, .policy-content h2 { margin-top: 0; }
.policy-content h1 { margin-bottom: 12px; }
.policy-content h2 { margin-top: 26px; }
.policy-content p, .policy-content li { color: var(--muted); font-size: 1rem; }
.policy-content ul { padding-left: 20px; }

/* Footer alias for legacy pages */
.site-footer { background: var(--bg-alt); padding: 80px 0 40px; position: relative; overflow: hidden; }
.site-footer .footer-content { display:grid; grid-template-columns: 1fr 1fr 1fr; gap: 60px; }
.site-footer .footer-logo { display:flex; align-items:center; gap:10px; font-weight:700 }
.site-footer .footer-desc { margin-top: 12px; color: var(--muted); }
.site-footer .footer-links a { display:block; color: var(--text); opacity: .85; text-decoration:none; margin: 6px 0 }
.site-footer .footer-links a:hover { color: var(--gold); opacity: 1 }
.site-footer .footer-bottom { margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--border); display:flex; align-items:center; justify-content:space-between; gap: 16px }

/* Checkout page styles */
.checkout-grid { display:grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; }
@media (max-width: 900px) { .checkout-grid { grid-template-columns: 1fr; } }
.checkout form, .checkout-page form { background: var(--bg-elev); border:1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; box-shadow: 0 15px 35px rgba(0,0,0,0.22); }
.checkout .order-summary, .checkout-page .order-summary { background: var(--bg-elev); border:1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; box-shadow: 0 15px 35px rgba(0,0,0,0.22); }
.form-row { display:flex; flex-direction:column; gap:8px; margin-bottom:14px; }
.form-grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.form-grid-3 { display:grid; grid-template-columns:1fr 1fr 1fr; gap:14px; }
.form-row input, .form-row select, .form-row textarea { background: var(--field-bg); border:1px solid var(--border); color: var(--text); border-radius: 10px; padding: 12px 12px; outline:none; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(211,164,58,0.18); }
.order-items { display:flex; flex-direction:column; gap:10px; }
.order-item { display:flex; justify-content:space-between; align-items:center; padding:10px 0; border-bottom:1px solid var(--border); }
.order-item:last-child { border-bottom: 0; }
.order-totals { margin-top: 10px; display:flex; flex-direction:column; gap:6px; color: var(--muted); }
.order-totals .total-row { display:flex; justify-content:space-between; }

/* Brand/logo usage */
.brand img { width:28px; height:28px; object-fit:contain; border-radius:6px; background:transparent; padding:2px; }
.footer-brand img { width:36px; height:36px; object-fit:contain; border-radius:8px; background:transparent; padding:3px; }

*{box-sizing:border-box}
html,body{height:100%}
html{scroll-behavior:smooth; font-size:16px; -webkit-text-size-adjust:100%; text-size-adjust:100%}
body{
  min-height:100vh;
  overflow-x:hidden;
  margin:0;
  padding-top: 80px;
  background:linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 100%);
  color:var(--text);
  font-family:"DM Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height:1.7;
  font-size: 16px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

.container{width:100%;max-width:var(--container);margin-inline:auto;padding:0 24px}

/* Typography */
.headline, h1, h2, h3{font-family:"Playfair Display", Georgia, serif; letter-spacing:-0.01em; font-weight:600}
.headline{font-size: clamp(34px, 5vw, 62px); line-height:1.08}
h1{font-size: clamp(28px, 4vw, 44px); line-height:1.15}
h2{font-size: clamp(24px, 3vw, 34px); line-height:1.2}
h3{font-size: clamp(18px, 2.2vw, 22px); line-height:1.3}
h4{font-family:"DM Sans", sans-serif; font-size:1.1rem; font-weight:600; letter-spacing:0.02em}
p{font-size:1rem; line-height:1.75; color:var(--muted)}
.text-lg{font-size:1.125rem; line-height:1.7}
.text-sm{font-size:0.875rem; line-height:1.6}
.text-gold{color:var(--gold)}
.font-serif{font-family:"Playfair Display", Georgia, serif}
.font-sans{font-family:"DM Sans", sans-serif}
.uppercase{text-transform:uppercase; letter-spacing:0.1em; font-size:0.8rem; font-weight:600}
.muted{color:var(--muted)}
.center{text-align:center}
.mt-lg{margin-top:32px}
.w-100{width:100%}

/* Header / Navbar */
.header{
  position:fixed;
  top:0; 
  left:0;
  right:0;
  z-index:100;
  backdrop-filter:saturate(180%) blur(8px);
  -webkit-backdrop-filter:saturate(180%) blur(8px);
  background:rgba(15,25,20,.75);
  border-bottom:1px solid var(--border);
  transition:all .35s ease;
}
.header.compact{
  background:rgba(15,25,20,.85);
  transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(0,0,0,.25);
}
/* Header hide on scroll down */
.header.header-hidden{
  transform:translateY(-100%);
  box-shadow:none;
}
.nav{display:flex; align-items:center; justify-content:space-between; padding:12px 0}
.brand{display:inline-flex; gap:8px; align-items:center; color:var(--text); text-decoration:none; font-family:"Playfair Display", Georgia, serif; font-weight:600; letter-spacing:0; font-size: clamp(1.25rem, 2.5vw, 1.5rem);}
.brand-mark{display:inline-grid; place-items:center; width:32px; height:32px; border-radius:50%; background:linear-gradient(135deg, var(--gold), var(--gold-2)); color:#0f2f1a; font-weight:700}

.nav-links{display:flex; gap:28px}
.nav-links a{position:relative; color:var(--text); text-decoration:none; font-family:"DM Sans", sans-serif; font-weight:500; font-size:0.95rem; letter-spacing:0.02em; opacity:.9; transition:opacity .2s ease}
.nav-links a::after{content:""; position:absolute; left:0; bottom:-6px; width:0; height:2px; background:linear-gradient(90deg, var(--gold), var(--gold-2)); transition:width .3s ease}
.nav-links a:hover{opacity:1}
.nav-links a:hover::after{width:100%}

.nav-toggle{display:none; flex-direction:column; gap:5px; background:transparent; border:0; cursor:pointer}
.nav-toggle span{width:24px; height:2px; background:var(--text); display:block}

/* Nav actions and theme toggle */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Cart styles */
.cart-wrapper {
  position: relative;
}

.cart-toggle {
  background: linear-gradient(135deg, var(--bg-elev), rgba(0,0,0,0));
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  position: relative;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 350px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(211,164,58,0.4);
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
  z-index: 100;
  display: none;
  flex-direction: column;
  overflow: hidden;
  margin-top: 12px;
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.cart-dropdown.active {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

/* Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 90%;
  max-width: 380px;
  height: 100vh;
  background: linear-gradient(135deg, rgba(18,36,24,0.98) 0%, rgba(12,28,18,0.99) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid rgba(211,164,58,0.15);
  box-shadow: -12px 0 40px rgba(0,0,0,0.4), -2px 0 20px rgba(211,164,58,0.1);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1);
  overflow: hidden;
}

.cart-drawer.open {
  transform: translateX(0);
}

.page-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.page-overlay.visible {
  opacity: 1;
  visibility: visible;
}

body.cart-open {
  overflow: hidden;
}

.cart-header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(211,164,58,0.1);
  background: transparent;
}

.cart-header h3 {
  font-size: 1.15rem;
  margin: 0;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: none;
}

.cart-close {
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cart-close:hover {
  background: rgba(211,164,58,0.1);
  color: var(--gold);
  transform: rotate(90deg);
}

.cart-items {
  padding: 16px 20px;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(211,164,58,0.3) transparent;
}

.cart-items::-webkit-scrollbar {
  width: 6px;
}

.cart-items::-webkit-scrollbar-track {
  background: transparent;
}

.cart-items::-webkit-scrollbar-thumb {
  background-color: rgba(211,164,58,0.4);
  border-radius: 6px;
}

.empty-cart {
  text-align: center;
  color: var(--muted);
  padding: 30px 0;
  font-style: italic;
  position: relative;
}

.empty-cart::before {
  content: '🛒';
  display: block;
  font-size: 2rem;
  margin-bottom: 10px;
  opacity: 0.6;
}

.cart-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  border-bottom: none;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 10px;
  padding: 12px;
  background: rgba(18, 36, 24, 0.4);
  border: 1px solid rgba(211,164,58,0.1);
  box-shadow: none;
}

.cart-item:hover {
  background: rgba(18, 36, 24, 0.6);
  transform: none;
  box-shadow: none;
  border-color: rgba(211,164,58,0.15);
}

.cart-item:last-child {
  margin-bottom: 10px;
  border-bottom: none;
}

.cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  border: 1px solid rgba(211,164,58,0.1);
  box-shadow: none;
  margin-bottom: 0;
}

/* Toasts */
.toast-container { 
  position: fixed; 
  top: 100px; 
  right: 20px; 
  z-index: 1100; 
  display: flex; 
  flex-direction: column; 
  gap: 12px;
}

.toast {
  background: linear-gradient(135deg, rgba(211,164,58,0.95) 0%, rgba(240,206,106,0.9) 100%);
  color: var(--bg);
  border: 1px solid rgba(211,164,58,0.3);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 16px 40px rgba(211,164,58,0.25), 0 0 20px rgba(211,164,58,0.15);
  transform: translateX(400px);
  opacity: 0;
  animation: toast-in 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 300px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.toast::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(0,0,0,0.1);
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

@keyframes toast-in { 
  to { 
    transform: translateX(0); 
    opacity: 1; 
  } 
}

@keyframes toast-out { 
  to { 
    transform: translateX(400px); 
    opacity: 0; 
  } 
}

/* Cart icon bump */
.cart-toggle.bump { animation: cart-bump 0.4s ease; }
@keyframes cart-bump {
  0% { transform: scale(1); }
  10% { transform: scale(0.9); }
  30% { transform: scale(1.08); }
  50% { transform: scale(1); }
  70% { transform: scale(1.04); }
  100% { transform: scale(1); }
}

.cart-item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-item-title {
  font-weight: 600;
  margin: 0;
  font-size: 0.9rem;
  color: var(--text);
  letter-spacing: 0.2px;
  font-family: "Playfair Display", Georgia, serif;
}

.cart-item-price {
  color: var(--gold);
  margin: 0;
  font-weight: 700;
  font-size: 0.95rem;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.cart-quantity-btn {
  width: 36px;
  height: 36px;
  background: rgba(211,164,58,0.1);
  color: var(--gold);
  border: 1px solid rgba(211,164,58,0.3);
  border-radius: 8px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 700;
}

.cart-quantity-btn:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  transform: scale(1.08);
}

.cart-item-remove {
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 1.4rem;
  padding: 0;
  cursor: pointer;
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.cart-item-remove:hover {
  background: rgba(255,77,77,0.15);
  color: #ff6b6b;
  opacity: 1;
  transform: scale(1.1);
}

.cart-footer {
  padding: 20px;
  border-top: 1px solid rgba(211,164,58,0.1);
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  padding: 16px 0;
  border-bottom: 1px solid rgba(211,164,58,0.15);
}

.cart-total span {
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.checkout-btn {
  width: 100%;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(211,164,58,0.25);
  transition: all 0.3s ease;
  border: none;
  text-transform: uppercase;
}

.checkout-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(211,164,58,0.35);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: -20px;
  background: url('../assets/hero-media1.png') center/cover no-repeat;
  filter: brightness(0.55) saturate(1.1);
  animation: hero-zoom 25s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
  0% { transform: scale(1) translateY(0); }
  100% { transform: scale(1.1) translateY(-10px); }
}

/* Subtle golden accent - only at corners */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(211, 164, 58, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

/* Gradient overlay - subtle for text readability */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(180deg, transparent 0%, transparent 40%, rgba(11, 20, 16, 0.7) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

/* Hero headline with shimmer */
.hero .headline {
  background: linear-gradient(135deg, #fff 0%, var(--gold) 50%, #fff 100%);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: headline-shimmer 6s ease-in-out infinite;
  filter: drop-shadow(0 4px 30px rgba(211, 164, 58, 0.3));
}

@keyframes headline-shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 200% center; }
}

.subhead {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.cta-group {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* Video background support */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video + .hero-media {
  display: none;
}

/* Buttons */
.btn{display:inline-flex; align-items:center; justify-content:center; gap:8px; padding:14px 24px; border-radius:999px; text-decoration:none; font-family:"DM Sans", sans-serif; font-weight:600; font-size:0.9rem; letter-spacing:0.03em; transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease; will-change:transform; border:none; cursor:pointer}
.btn-gold{background:linear-gradient(135deg, var(--gold), var(--gold-2)); color:#0f2f1a; box-shadow:0 8px 24px rgba(211,164,58,.25)}
.btn-gold:hover{transform:translateY(-2px); box-shadow:0 14px 32px rgba(211,164,58,.35)}
.btn-outline{border:1.5px solid var(--gold); color:var(--text); background:transparent}
.btn-outline:hover{background:rgba(211,164,58,.12); transform:translateY(-2px)}
.btn-lg{padding:16px 32px; font-size:1rem}

/* Sections */
.section{padding:120px 0}
.section.alt{background:var(--bg-alt)}
.section{position:relative; overflow:hidden}
.section::after{content:''; position:absolute; bottom:-1px; left:0; right:0; height:1px; background:linear-gradient(90deg, transparent, rgba(31,93,42,0.08), transparent)}
.section.eid::after{display:none !important}
.section-head{margin-bottom:28px; text-align:center}
.section-head.stacked{display:flex; flex-direction:column; align-items:center; gap:12px}

/* Section Headings - Shimmer Gold Effect */
.section-head h2,
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  /* Shimmer gradient text */
  background: linear-gradient(
    90deg, 
    var(--gold) 0%, 
    #f5d78e 25%, 
    var(--gold) 50%, 
    #f5d78e 75%, 
    var(--gold) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-heading 4s ease-in-out infinite;
  position: relative;
  display: inline-block;
}

/* Decorative underline for section headings */
.section-head h2::after,
.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.7;
}

@keyframes shimmer-heading {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 200% center; }
}

/* Cards (Eid) - Larger and better layout */
.eid .cards{display:grid; grid-template-columns:repeat(3,1fr); gap:35px}
.card{background:var(--bg-elev); border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; box-shadow:0 20px 40px rgba(0,0,0,0.2); transition:box-shadow .5s cubic-bezier(0.2, 0.8, 0.2, 1); display:flex; flex-direction:column; height:100%; min-height:440px}
.card:hover{box-shadow:0 26px 48px rgba(0,0,0,0.22)}
.card-media{height:260px; background-size:cover; background-position:center; position:relative; overflow:hidden}
.card-media::after{content:''; position:absolute; bottom:0; left:0; right:0; height:80px; background:linear-gradient(to top, var(--bg-elev), transparent); opacity:0.5}
.card-body{padding:32px 36px; flex:1; display:flex; flex-direction:column}
.card h3{margin-top:0; margin-bottom:16px; font-size:1.6rem; position:relative; letter-spacing:0.5px}
.card h3::after{content:''; position:absolute; bottom:-8px; left:0; width:60px; height:3px; background:linear-gradient(90deg, var(--gold), var(--gold-2)); border-radius:4px}
.card p{margin-top:20px; line-height:1.7; font-size:1.05rem; flex-grow:1}

/* Stats - Enhanced Design */
.stats{position:relative; padding:120px 0}
.stats::before{content:''; position:absolute; inset:0; background:linear-gradient(to bottom, rgba(211,164,58,0.1), transparent 40%); pointer-events:none}
.stats .container{position:relative; z-index:1}
.stats .section-head{margin-bottom:50px}
.stats .section-head h2{font-size:clamp(36px, 5vw, 46px); margin-bottom:16px}
.stats .section-head p{font-size:1.15rem; max-width:700px; margin:0 auto}

.stats .kpis{display:grid; grid-template-columns:repeat(4,1fr); gap:32px; margin-top:60px; position:relative}

.kpi{background:rgba(18,36,24,0.75); backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px); border:1px solid rgba(211,164,58,0.25); border-radius:var(--radius-lg); padding:40px 25px; text-align:center; box-shadow:0 25px 50px rgba(0,0,0,0.25); position:relative; overflow:hidden; transition:all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1); height:100%; display:flex; flex-direction:column; justify-content:center; min-height:220px}

.kpi::before{content:''; position:absolute; width:140px; height:140px; background:var(--gold); opacity:0.04; border-radius:50%; top:-70px; right:-70px; transition:all 0.5s ease}
.kpi::after{content:''; position:absolute; width:100%; height:4px; background:linear-gradient(90deg, var(--gold), var(--gold-2)); bottom:0; left:0; transform:scaleX(0.3); transform-origin:left; opacity:0.6; transition:transform 0.5s ease}

.kpi:hover{box-shadow:0 35px 70px rgba(0,0,0,0.3)}
.kpi:hover::before{transform:scale(1.2); opacity:0.06}
.kpi:hover::after{transform:scaleX(1)}

.kpi-value{font-family:"Playfair Display", Georgia, serif; font-size:clamp(38px,5vw,52px); background:linear-gradient(45deg, var(--gold), var(--gold-2)); background-clip:text; -webkit-background-clip:text; -webkit-text-fill-color:transparent; margin-bottom:12px; position:relative; line-height:1.1; font-weight:700}

.kpi-value::after{content:''; position:absolute; width:40px; height:3px; background:linear-gradient(90deg, var(--gold), var(--gold-2)); bottom:-8px; left:50%; transform:translateX(-50%); border-radius:2px}

.kpi-label{color:var(--text); font-weight:600; font-size:16px; letter-spacing:0.5px; margin-top:18px; text-transform:uppercase}

/* Responsive adjustments */
@media (max-width: 992px) {
  .stats .kpis{grid-template-columns:repeat(2,1fr); gap:24px}
  .stats{padding:80px 0}
}

@media (max-width: 576px) {
  .stats .kpis{grid-template-columns:1fr; max-width:320px; margin-left:auto; margin-right:auto}
  .kpi{min-height:180px}
}

/* ===== BULK ORDERS SECTION ===== */
.bulk-orders {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.bulk-orders-bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(10,20,15,0.97) 0%, rgba(18,36,24,0.95) 50%, rgba(10,20,15,0.97) 100%);
  z-index: 0;
}

.bulk-orders-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 20% 20%, rgba(211,164,58,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(211,164,58,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.bulk-orders-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d3a43a' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.bulk-orders-content {
  position: relative;
  z-index: 1;
}

.bulk-orders .section-head {
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-label {
  display: inline-block;
  font-family: "DM Sans", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 16px;
  padding: 8px 20px;
  background: rgba(211,164,58,0.1);
  border: 1px solid rgba(211,164,58,0.2);
  border-radius: 30px;
  width: fit-content;
}

.bulk-orders .section-head h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 16px;
  /* Uses shimmer gold from base .section-head h2 */
}

.bulk-orders .section-head p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
}

.order-types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.order-type-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(211,164,58,0.15);
  border-radius: 20px;
  padding: 40px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.order-type-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.order-type-card:hover {
  transform: translateY(-8px);
  border-color: rgba(211,164,58,0.4);
  box-shadow: 
    0 20px 40px rgba(0,0,0,0.3),
    0 0 40px rgba(211,164,58,0.1);
}

.order-type-card:hover::before {
  opacity: 1;
}

.order-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(211,164,58,0.15) 0%, rgba(211,164,58,0.05) 100%);
  border: 1px solid rgba(211,164,58,0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.order-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
  transition: all 0.4s ease;
}

.order-type-card:hover .order-icon {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  border-color: var(--gold);
  transform: scale(1.1);
}

.order-type-card:hover .order-icon svg {
  stroke: #0a140f;
}

.order-type-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 600;
}

.order-type-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin: 0;
}

.bulk-orders-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.breeds-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
  background: rgba(211,164,58,0.1);
  border: 1px solid rgba(211,164,58,0.25);
  border-radius: 50px;
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
}

.breeds-badge strong {
  color: var(--gold);
}

.breeds-icon {
  font-size: 1.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .order-types-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .bulk-orders {
    padding: 80px 0;
  }
  
  .order-types-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .order-type-card {
    padding: 30px 20px;
  }
  
  .breeds-badge {
    flex-direction: column;
    text-align: center;
    padding: 16px 24px;
  }
}

/* ===== EID SERVICE SECTION (New Design) ===== */
.eid-service {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.eid-service-bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(14,24,19,0.95) 0%, rgba(10,20,15,0.97) 100%);
  z-index: 0;
}

.eid-service-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(211,164,58,0.1) 0%, transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(211,164,58,0.08) 0%, transparent 40%);
}

.eid-service-content {
  position: relative;
  z-index: 1;
}

.eid-service .section-head {
  margin-bottom: 60px;
}

.eid-service .section-head h2 {
  font-size: clamp(32px, 5vw, 48px);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

.eid-service .section-head p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.7);
  max-width: 550px;
  margin: 0 auto;
}

/* Timeline */
.eid-timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 200px;
}

.timeline-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: #0a140f;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(211,164,58,0.3);
}

.timeline-content h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 600;
}

.timeline-content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin: 0;
}

.timeline-connector {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(211,164,58,0.3));
  margin: 0 20px;
  margin-bottom: 60px;
}

/* Pricing Card */
.eid-pricing-card {
  max-width: 550px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(211,164,58,0.25);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
}

.pricing-header {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(211,164,58,0.15);
}

.pricing-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(211,164,58,0.15);
  border: 1px solid rgba(211,164,58,0.3);
  border-radius: 20px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.pricing-amount .currency {
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 600;
}

.pricing-amount .price {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.pricing-amount .unit {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  margin-left: 8px;
}

.pricing-includes {
  text-align: left;
  margin-bottom: 30px;
}

.pricing-includes h4 {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  font-weight: 600;
}

.includes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.includes-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

.includes-list svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  flex-shrink: 0;
}

.eid-pricing-card .btn-lg {
  width: 100%;
  padding: 16px 32px;
  font-size: 1.05rem;
}

.pricing-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .eid-service {
    padding: 80px 0;
  }
  
  .eid-timeline {
    flex-direction: column;
    gap: 0;
  }
  
  .timeline-connector {
    width: 2px;
    height: 40px;
    margin: 16px 0;
    background: linear-gradient(180deg, var(--gold), rgba(211,164,58,0.3));
  }
  
  .timeline-step {
    max-width: 280px;
  }
  
  .eid-pricing-card {
    padding: 30px 24px;
  }
  
  .pricing-amount .price {
    font-size: 2.5rem;
  }
  
  .pricing-amount .unit {
    display: block;
    margin-left: 0;
    margin-top: 8px;
    font-size: 0.85rem;
  }
  
  .pricing-amount {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ===== PRODUCTS SECTION ===== */
.products {
  padding: 100px 0;
  background: var(--bg-1);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 500;
  margin-bottom: 16px;
  /* Inherits shimmer from .section-header h2 */
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== PRODUCT SHOWCASE ===== */
.product-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ===== CAROUSEL CONTAINER ===== */
.product-carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 560px;
  margin-bottom: 60px;  /* Space for button below */
  gap: 0;  /* No gap - buttons positioned absolutely on sides */
  padding: 0;  /* No padding needed */
}

.product-display-area {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 100%;
  min-height: 420px;
  padding-bottom: 56px;
  display: flex;
  justify-content: center;
}

.product-stage {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}

/* ===== PRODUCT CARD POSITIONING (THE MAGIC!) ===== */
.product-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 360px;  /* Wider cards */
  height: 480px;  /* Much taller for bigger images */
  background: var(--bg-elev);
  border-radius: 24px;  /* Softer, more rounded corners */
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
  border: 1px solid rgba(211, 164, 58, 0.2);
  top: 50%;
  left: 50%;
  transform-origin: center center;
  transform: translate(-50%, -50%) scale(0.75) !important;
  opacity: 0.55;  /* Side cards slightly faded */
  z-index: 1;
  pointer-events: none;
}

/* Left Position (Previous Product) */
.product-card.left {
  transform: translate(calc(-50% - 380px), -50%) scale(0.8) rotate(-8deg) !important;
  opacity: 0.6;
  z-index: 2;
  pointer-events: auto;
  filter: none;
  background: var(--bg-elev);
  border-color: rgba(211, 164, 58, 0.2);
}

/* Center Position (Selected Product) */
.product-card.center {
  transform: translate(-50%, -50%) scale(1.0) rotate(0deg) !important;
  opacity: 1;
  z-index: 5;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 25px rgba(211, 164, 58, 0.25);
  pointer-events: auto;
  filter: none;
  background: var(--bg-elev);
  border: 1.5px solid var(--gold);
}

/* Right Position (Next Product) */
.product-card.right {
  transform: translate(calc(-50% + 380px), -50%) scale(0.8) rotate(8deg) !important;
  opacity: 0.6;
  z-index: 2;
  pointer-events: auto;
  filter: none;
  background: var(--bg-elev);
  border-color: rgba(211, 164, 58, 0.2);
}

/* ===== NAVIGATION BUTTONS ===== */
.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--bg);
  box-shadow: 0 6px 18px rgba(211, 164, 58, 0.4);
  z-index: 20;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.carousel-nav-btn:hover {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 10px 25px rgba(211, 164, 58, 0.5);
}

.prev-btn {
  left: -150px;
}

.next-btn {
  right: -150px;
}

/* Navigation buttons are positioned by flexbox gap in container */

/* Hide on mobile */
@media (max-width: 768px) {
  .carousel-nav-btn {
    display: none !important;
  }
}

/* ===== PRODUCT IMAGE ===== */
.product-image-container {
  position: relative;
  height: 310px;  /* Much larger image area - 65% of card */
  background: linear-gradient(135deg, rgba(211, 164, 58, 0.08) 0%, rgba(211, 164, 58, 0.03) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: none;
}

.product-image-container img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

.product-card.center .product-image-container img {
  transform: scale(1.05);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.12));
}

/* ===== PRODUCT BADGE ===== */
.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-badge.featured {
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.product-badge.new {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* ===== PRODUCT INFO ===== */
.product-info {
  padding: 12px 16px 16px;
  text-align: center;
  background: transparent;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.product-name {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 4px;
  font-weight: 700;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.25;
}

.product-description {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.3;
  margin-bottom: 8px;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  padding-top: 0;
  border-top: none;
  gap: 8px;
}

.product-weight {
  background: rgba(211, 164, 58, 0.08);
  color: var(--gold);
  padding: 4px 10px;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(211, 164, 58, 0.2);
}

.product-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold);
}

/* ===== QUANTITY CONTROLS ===== */
.quantity-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 0;
  padding: 0;
  order: 3;
}

.quantity-btn {
  width: 30px;
  height: 30px;
  border: 1.5px solid var(--gold);
  background: transparent;
  color: var(--gold);
  border-radius: 50%;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-btn:hover {
  background: var(--gold);
  color: var(--bg);
  transform: scale(1.1);
}

.quantity-btn:active {
  transform: scale(0.95);
}

.quantity-input {
  width: 45px;
  text-align: center;
  padding: 5px 6px;
  border: 1px solid rgba(211, 164, 58, 0.3);
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
  background: transparent;
}

.quantity-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(211, 164, 58, 0.15);
}

/* Hide quantity controls for non-center cards */
.product-card:not(.center) .quantity-controls {
  display: none;  /* Only show on center/selected card */
}

/* ===== INDICATORS (DOTS) ===== */
.product-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
  z-index: 30;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--muted);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  opacity: 0.6;
}

.indicator:hover {
  background: var(--gold);
  opacity: 0.8;
}

.indicator.active {
  background: var(--gold);
  transform: scale(1.3);
  box-shadow: 0 3px 10px rgba(211, 164, 58, 0.4);
  opacity: 1;
  border-color: var(--gold);
}
.product{background:var(--bg-elev); backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px); border:2px solid rgba(211,164,58,0.5); border-radius:var(--radius-lg); padding:28px; box-shadow:0 15px 35px rgba(0,0,0,0.25); position:relative; overflow:hidden; transition:box-shadow .4s ease, border-color .4s ease}
/* Remove transform-related properties from hover to prevent conflicts with JS */
.product:hover {
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
  border-color: rgba(211, 164, 58, 0.7);
}
.product-media{
  height:280px;
  border-radius:var(--radius-sm);
  background-size:cover;
  background-position:center;
  margin-bottom:18px;
  position:relative;
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow:0 12px 30px rgba(0,0,0,0.15);
  transition:all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform:translateZ(0);
}

.product:hover .product-media{ box-shadow:0 18px 35px rgba(0,0,0,0.2); }
.product-media::after{content:''; position:absolute; inset:0; background:linear-gradient(to top, rgba(0,0,0,0.2), transparent); pointer-events:none}
.product h3{position:relative; margin-top:6px; margin-bottom:10px; font-size:1.3rem}
.product h3::after{content:''; position:absolute; bottom:-6px; left:0; width:36px; height:2px; background:var(--gold); border-radius:4px}
.product p{line-height:1.5; margin-top:14px; margin-bottom:18px; font-size:0.95rem; color:var(--muted)}

/* Product footer with price and add to cart */
.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.product-price {
  font-weight: 700;
  color: var(--gold);
  font-size: 1.1rem;
}

.cart-buttons {
  display: flex;
  gap: 8px;
  width: 100%;
}

.checkout-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--bg);
  border: none;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  flex: 1;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(211,164,58,0.25);
}

.checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(211,164,58,0.35);
}

.checkout-btn:active {
  transform: translateY(-1px);
}

.clear-cart-btn {
  background: transparent;
  color: #ff6b6b;
  border: 1.5px solid #ff6b6b;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  flex: 1;
  transition: all 0.3s ease;
}

.clear-cart-btn:hover {
  background: #ff6b6b;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.25);
}

.clear-cart-btn:active {
  transform: translateY(-1px);
}

.add-to-cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--bg);
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(211,164,58,0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.add-to-cart-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(211,164,58,0.3);
}

.add-to-cart-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.add-to-cart-btn:hover::before {
  opacity: 1;
}

/* Button animation when adding to cart */
.add-to-cart-btn.added {
  background: var(--green-2);
  color: var(--text);
  animation: pulse 0.4s ease;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Process / About Section - Premium Design */
.process .steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}

.step {
  background: var(--bg-elev);
  border: 1px solid rgba(211, 164, 58, 0.15);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25), 0 0 40px rgba(211, 164, 58, 0.1);
  border-color: rgba(211, 164, 58, 0.4);
}

/* Step media - Full width image at top */
.step-media {
  height: 200px;
  background-color: rgba(31, 93, 42, 0.2);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.step-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, var(--bg-elev) 100%);
  z-index: 1;
}

.step:hover .step-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(211, 164, 58, 0.1);
  animation: image-shine 0.6s ease;
}

@keyframes image-shine {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}

/* Step number badge */
.step-num {
  position: absolute;
  top: 180px;
  left: 20px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--bg);
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(211, 164, 58, 0.4);
  border: 3px solid var(--bg-elev);
}

/* Step content */
.step-content {
  padding: 32px 20px 24px;
}

.step h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  color: var(--gold);
}

.step p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}

/* Why Choose / Features Section - Premium Design */
.why-choose {
  position: relative;
  padding: 100px 0;
  background: var(--bg);
}

.why-choose .section-head {
  margin-bottom: 60px;
}

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

.feature-card {
  position: relative;
  background: linear-gradient(165deg, rgba(31, 93, 42, 0.08) 0%, rgba(18, 36, 24, 0.95) 100%);
  border: 1px solid rgba(211, 164, 58, 0.15);
  border-radius: 24px;
  padding: 40px 28px 32px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(211, 164, 58, 0.4);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(211, 164, 58, 0.08);
}

.feature-card:hover::before {
  opacity: 1;
}

/* Feature number - Large background */
.feature-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(211, 164, 58, 0.08);
  line-height: 1;
  transition: all 0.4s ease;
}

.feature-card:hover .feature-number {
  color: rgba(211, 164, 58, 0.15);
  transform: scale(1.1);
}

/* Feature icon */
.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(211, 164, 58, 0.15), rgba(211, 164, 58, 0.05));
  border: 1px solid rgba(211, 164, 58, 0.25);
  border-radius: 20px;
  transition: all 0.4s ease;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, rgba(211, 164, 58, 0.25), rgba(211, 164, 58, 0.1));
  box-shadow: 0 10px 30px rgba(211, 164, 58, 0.2);
}

.feature-card:hover .feature-icon svg {
  transform: scale(1.1);
}

/* Feature text */
.feature-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
}

.feature-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-card {
    padding: 32px 24px 28px;
  }
  
  .feature-number {
    font-size: 3rem;
  }
}

/* Footer */
.footer {
  background-color: var(--bg-elev);
  padding: 60px 0 30px;
  position: relative;
  border-top: 1px solid var(--border);
}

.footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  flex: 2;
  min-width: 250px;
}

.footer-tagline {
  margin: 12px 0;
  color: var(--muted);
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(211, 164, 58, 0.15);
  color: var(--gold);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--gold);
  color: var(--bg);
  transform: translateY(-3px);
}

.footer-nav, .footer-contact {
  flex: 1;
  min-width: 200px;
}

.footer h4 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  margin-bottom: 15px;
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 8px;
}

.footer-nav a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s, padding-left 0.3s;
}

.footer-nav a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-contact p {
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.footer-icon {
  color: var(--gold);
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-copyright {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-legal a {
  display: inline-block;
  padding: 5px 12px;
  background-color: rgba(211, 164, 58, 0.1);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  background-color: var(--gold);
  color: var(--bg);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }

}

@media (max-width: 576px) {
  .badges .badge-grid{grid-template-columns:1fr; max-width:400px; margin-left:auto; margin-right:auto}
  .badge{padding:28px 24px}
  .badge-icon{width:60px; height:60px}
  .badge-icon svg{width:30px; height:30px}
}

/* FAQ */
.faq{position:relative; padding:90px 0}
.faq-grid{display:grid; grid-template-columns:1fr; gap:24px; margin-top:40px; max-width:800px; margin-left:auto; margin-right:auto}
.faq details{background:rgba(18,36,24,0.65); backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px); border:1px solid rgba(211,164,58,0.2); border-radius:var(--radius-lg); padding:22px; box-shadow:0 15px 35px rgba(0,0,0,0.15); transition:all 0.4s ease; overflow:hidden; position:relative}
.faq details::before{content:''; position:absolute; top:0; left:0; width:100%; height:3px; background:linear-gradient(90deg, var(--gold), transparent); transform:scaleX(0); transform-origin:left; transition:transform 0.5s ease; opacity:0.7}
.faq details[open]::before{transform:scaleX(1)}
.faq details:hover{box-shadow:0 20px 40px rgba(0,0,0,0.2); transform:translateY(-5px)}
.faq summary{cursor:pointer; font-weight:600; font-size:1.1rem; padding:5px 0; position:relative; list-style:none; outline:none; display:flex; justify-content:space-between; align-items:center}
.faq summary::marker,
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:'⌵'; font-size:1.5rem; color:var(--gold); transition:transform 0.4s ease}
.faq details[open] summary::after{transform:rotate(180deg)}
.faq p{color:var(--muted); padding:12px 0 5px; line-height:1.6; margin:0; animation:fadeIn 0.5s ease}

@keyframes fadeIn {
  from {opacity:0; transform:translateY(-10px)}
  to {opacity:1; transform:translateY(0)}
}

/* ===== NEW FAQ SECTION STYLES ===== */
.faq-section {
  position: relative;
  padding: 100px 0;
  background: var(--bg-1);
}

.faq-section .section-head {
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-section .section-head h2 {
  font-size: clamp(32px, 5vw, 44px);
  margin-bottom: 12px;
}

.faq-section .section-head p {
  color: var(--muted);
  font-size: 1.1rem;
}

.faq-list {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(211,164,58,0.3);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.faq-item[open] {
  border-color: rgba(211,164,58,0.4);
  background: linear-gradient(145deg, var(--bg-elev) 0%, rgba(211,164,58,0.03) 100%);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker,
.faq-item summary::marker {
  display: none;
}

.faq-question {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  flex: 1;
}

.faq-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(211,164,58,0.1);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-icon {
  background: var(--gold);
}

.faq-item[open] .faq-icon svg {
  stroke: #0a140f;
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 20px;
  animation: faqSlideDown 0.3s ease;
}

.faq-answer p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  font-size: 0.95rem;
}

@keyframes faqSlideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Process Section Background - Clean */
.process {
  position: relative;
  padding: 100px 0;
  background: var(--bg);
}

.process .container {
  position: relative;
  z-index: 1;
}
.contact .container{position:relative; z-index:1}
.contact .contact-wrap{display:grid; grid-template-columns:1.1fr .9fr; gap:40px; align-items:stretch; margin-top:40px}
.contact-card{background:rgba(18,36,24,0.65); backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px); border:1px solid rgba(211,164,58,0.2); border-radius:var(--radius-lg); padding:35px; box-shadow:0 25px 50px rgba(0,0,0,0.15); transition:transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s cubic-bezier(0.2, 0.8, 0.2, 1); position:relative; overflow:hidden}
.contact-card:hover{transform:translateY(-10px); box-shadow:0 35px 60px rgba(0,0,0,0.2)}
.contact-card::before{content:''; position:absolute; top:0; left:0; right:0; height:4px; background:linear-gradient(90deg, var(--gold), transparent); opacity:0.7}

/* Contact */
.contact{position:relative; padding:100px 0 120px; overflow:hidden; background:rgba(31,93,42,0.01)}
.contact::before{content:''; position:absolute; top:-200px; right:-200px; width:400px; height:400px; background:radial-gradient(circle, rgba(211,164,58,0.07), transparent 70%); border-radius:50%; pointer-events:none}
.contact::after{content:''; position:absolute; bottom:-100px; left:-100px; width:300px; height:300px; background:radial-gradient(circle, rgba(31,93,42,0.05), transparent 70%); border-radius:50%; pointer-events:none}
.contact .container{position:relative; z-index:1}
.contact .contact-wrap{display:grid; grid-template-columns:1.1fr .9fr; gap:40px; align-items:stretch; margin-top:40px}
.contact-card{background:rgba(18,36,24,0.65); backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px); border:1px solid rgba(211,164,58,0.2); border-radius:var(--radius-lg); padding:35px; box-shadow:0 25px 50px rgba(0,0,0,0.15); transition:transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s cubic-bezier(0.2, 0.8, 0.2, 1); position:relative; overflow:hidden}
.contact-card:hover{transform:translateY(-10px); box-shadow:0 35px 60px rgba(0,0,0,0.2)}
.contact-card::before{content:''; position:absolute; top:0; left:0; right:0; height:4px; background:linear-gradient(90deg, var(--gold), transparent); opacity:0.7}

.form{display:grid; gap:24px}
.form-row{display:grid; gap:10px}
label{font-weight:600; color:var(--gold-2); font-size:0.95rem; display:flex; align-items:center; gap:8px; margin-bottom:2px}
label::before{content:''; display:inline-block; width:6px; height:6px; background:var(--gold); border-radius:50%; opacity:0.7}
input, textarea{background:rgba(14,24,19,0.4); color:var(--text); border:1px solid rgba(211,164,58,0.15); border-radius:var(--radius-sm); padding:14px 18px; outline:none; font-size:1rem; transition:all 0.3s ease; box-shadow:inset 0 2px 4px rgba(0,0,0,0.1)}
input:hover, textarea:hover{border-color:rgba(211,164,58,0.3); background:rgba(14,24,19,0.5)}
input:focus, textarea:focus{border-color:var(--gold); box-shadow:0 0 0 3px rgba(211,164,58,0.15), inset 0 2px 4px rgba(0,0,0,0.05); background:rgba(14,24,19,0.2)}
::placeholder{color:var(--muted); opacity:0.7}
textarea{min-height:120px; resize:vertical}

.contact-info{margin-top:30px; border-top:1px solid rgba(211,164,58,0.15); padding-top:30px}
.contact-item{display:flex; align-items:center; gap:15px; margin-bottom:20px}
.contact-icon{width:46px; height:46px; background:rgba(211,164,58,0.1); border-radius:12px; display:grid; place-items:center; color:var(--gold); font-size:20px; transition:all 0.3s ease}
.contact-card:hover .contact-icon{transform:scale(1.1) rotate(5deg); background:rgba(211,164,58,0.15)}

/* Contact Card Heading - Shimmer Gold */
.contact-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  margin-bottom: 24px;
  background: linear-gradient(90deg, var(--gold) 0%, #f5d78e 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-heading 4s ease-in-out infinite;
}

.contact-text{flex:1}
.contact-text h4{margin:0 0 5px; font-size:1rem}
.contact-text p{margin:0; color:var(--muted); font-size:0.95rem}

.map{border-radius:var(--radius-lg); border:1px solid var(--border); overflow:hidden; position:relative; background:linear-gradient(135deg, rgba(211,164,58,.08), rgba(11,20,16,.6)), url('https://images.unsplash.com/photo-1495107334309-fcf20504a5ab?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat}
.map-inner{display:grid; place-items:center; height:100%; min-height:360px; background:linear-gradient(180deg, rgba(11,20,16,.45), rgba(11,20,16,.8))}
.map-inner span{color:var(--gold-2); letter-spacing:2px}

/* Footer */
.footer {
  background-color: var(--bg);
  color: var(--text);
  padding: 80px 0 40px;
  position: relative;
}

/* Decorative gold bar at top of footer */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}
.footer-icon{font-size:16px}

.footer-social .socials{display:flex; flex-direction:column; gap:12px}
.footer-social .social-link{color:var(--muted); text-decoration:none; transition:color 0.3s ease}
.footer-social .social-link:hover{color:var(--gold)}

.footer-bottom{border-top:1px solid rgba(211,164,58,0.1); padding-top:30px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:20px}
.footer-copyright{color:var(--muted); font-size:0.9rem}
.footer-legal{display:flex; gap:20px}
.footer-legal a{color:var(--muted); text-decoration:none; font-size:0.9rem; transition:color 0.3s ease}

/* Newsletter form */
.footer-newsletter p {
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.newsletter-form input {
  background: rgba(var(--bg-rgb), 0.5);
  border: 1px solid var(--border);
  padding: 12px 15px;
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--sans);
  width: 100%;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(var(--gold-rgb), 0.2);
}

.newsletter-form .btn {
  width: 100%;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-newsletter {
    padding: 15px 0;
  }
  
  .footer-newsletter h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--gold);
  }
}
.footer-legal a:hover{color:var(--gold)}

@media (max-width: 768px){
  .footer-content{grid-template-columns:1fr; gap:40px; text-align:center}
  .footer-brand{text-align:center}
  .footer-description{max-width:100%}
  .footer-bottom{flex-direction:column; text-align:center}
}

/* Animations (IntersectionObserver triggers) */
[data-animate]{opacity:0; transform:translateY(28px); transition:opacity .75s cubic-bezier(0.2, 0.8, 0.2, 1), transform .75s cubic-bezier(0.2, 0.8, 0.2, 1)}
[data-animate].in-view{opacity:1; transform:none}
[data-animate][data-animate-delay="100"].in-view{transition-delay:.1s}
[data-animate][data-animate-delay="150"].in-view{transition-delay:.15s}
[data-animate][data-animate-delay="200"].in-view{transition-delay:.2s}
[data-animate][data-animate-delay="250"].in-view{transition-delay:.25s}
[data-animate][data-animate-delay="300"].in-view{transition-delay:.3s}

/* Subtle float animation for cards */
@keyframes floatUp { 0% { transform:translateY(0) } 50% { transform:translateY(-4px) } 100% { transform:translateY(0) } }
.card:hover, .product:hover, .kpi:hover, .step:hover, .badge:hover{animation:floatUp 2.6s ease-in-out infinite}

/* Quantity selector */
.quantity-selector {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  background: rgba(31,93,42,0.1);
  border-radius: 8px;
  width: fit-content;
  overflow: hidden;
  border: 1px solid rgba(211,164,58,0.2);
}

.quantity-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.quantity-btn:hover {
  background: rgba(211,164,58,0.15);
  color: var(--gold);
}

.quantity-value {
  width: 40px;
  text-align: center;
  font-weight: 600;
  color: var(--text);
}

/* Specific variants */
[data-animate="fade-up"]{transform:translateY(18px)}
[data-animate="fade-in"]{transform:none; opacity:0}
[data-animate="rise"]{transform:translateY(22px)}

/* Responsive */
@media (max-width: 1024px){
  .products .grid{grid-template-columns:repeat(2,1fr)}
  .cards{grid-template-columns:repeat(2,1fr)}
  .stats .kpis{grid-template-columns:repeat(2,1fr)}
  .process .steps{grid-template-columns:repeat(2,1fr); gap:20px}
  .step-num{top:175px}
}
@media (max-width: 768px){
  .nav-links{display:none; position:absolute; right:24px; top:64px; flex-direction:column; gap:14px; background:rgba(12,18,15,.96); padding:14px 18px; border:1px solid var(--border); border-radius:14px; box-shadow:var(--shadow)}
  .nav-links.open{display:flex}
  .nav-toggle{display:flex}
  .hero{min-height:82vh}
  .contact .contact-wrap{grid-template-columns:1fr}
  .products .grid{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .footer-wrap{flex-direction:column; align-items:flex-start}
  .stats .kpis{grid-template-columns:1fr}
  .process .steps{grid-template-columns:repeat(2,1fr); gap:16px}
  .step-media{height:160px}
  .step-num{top:140px; width:38px; height:38px; font-size:15px}
  .step-content{padding:24px 16px 20px}
  .step h3{font-size:1rem}
  .step p{font-size:0.85rem}
  .features-grid{grid-template-columns:1fr}
  .faq-grid{grid-template-columns:1fr}
}

/* Responsive Design */
@media (max-width:1200px){
  .container{max-width:calc(100% - 80px)}
  .hero h1{font-size:clamp(40px,5vw,56px)}
  .process .steps::before{left:5%; right:5%}
}

@media (max-width:992px){
  .container{max-width:calc(100% - 60px)}
  .header .container{padding:0 14px}
  .hero{padding:150px 0 60px}
  .hero h1{margin-bottom:20px}
  .hero-content{max-width:85%}
  .cards{grid-template-columns:repeat(2,1fr); gap:20px}
  .stats .kpis{grid-template-columns:repeat(2,1fr); gap:24px}
  .process .steps{grid-template-columns:repeat(2,1fr); gap:20px}
  .step-num{top:175px}
  .features-grid{grid-template-columns:repeat(2,1fr); gap:20px}
  .products .grid{grid-template-columns:repeat(2,1fr); gap:24px}
  .contact .contact-wrap{grid-template-columns:1fr}
  .pricing .price-grid{grid-template-columns:repeat(2,1fr); gap:24px}
  .gallery .gallery-grid{grid-template-columns:repeat(2,1fr); gap:16px}
  .t-item{min-width:320px}
  .section-padding{padding:60px 0}
  .section{padding:70px 0}
  .badge{padding:22px}
  section:not(.hero){scroll-margin-top:80px}
}

@media (max-width:768px){
  .container{max-width:calc(100% - 40px)}
  .hero{min-height:auto; padding:120px 0 50px; background-position:65% center}
  .hero-content{max-width:100%}
  
  /* Cart drawer responsive styles */
  .cart-drawer {
    width: 100%;
    max-width: 100%;
  }
  
  .cart-items {
    padding: 15px;
  }
  .nav-desktop{display:none}
  .nav-toggle{display:block}
  .btn{padding:10px 18px; font-size:0.95rem}
  .t-scroller{padding:10px 0 30px}
  .t-item{min-width:300px; padding:25px}
  .kpi{padding:25px 20px}
  .step{padding:22px}
  .step-num{width:40px; height:40px; font-size:18px}
  .badge-icon{width:50px; height:50px}
  .testimonial-nav{margin-top:30px}
  .price{padding:30px 22px}
  .whatsapp-cta{bottom:20px; right:20px; padding:10px 16px}
}

@media (max-width:576px){
  .container{max-width:calc(100% - 32px)}
  .hero{padding:80px 0 40px} /* Reduced hero padding */
  .hero h1{font-size:clamp(32px,8vw,42px); margin-bottom:16px}
  .hero p{font-size:1rem; margin-bottom:20px}
  .section-title{font-size:clamp(24px, 8vw, 34px); margin-bottom:16px} /* Adjusted title size */
  .section-subtitle{font-size:1rem; margin-bottom:30px}
  
  .cards{grid-template-columns:1fr; gap:20px}
  .products .grid{grid-template-columns:1fr; gap:24px}
  .footer-wrap{flex-direction:column; align-items:center; gap:20px}
  .stats .kpis{grid-template-columns:1fr; gap:20px}
  .process .steps{grid-template-columns:1fr; gap:20px}
  .step-media{height:200px}
  .step-num{top:180px; width:42px; height:42px}
  .features-grid{grid-template-columns:1fr; gap:16px}
  .faq-grid{grid-template-columns:1fr; gap:16px}
  .pricing .price-grid{grid-template-columns:1fr; gap:30px}
  .gallery .gallery-grid{grid-template-columns:1fr; gap:20px}
  .t-item{min-width:260px; padding:22px 18px}

  .step h3 {font-size: 1.05rem;}
  .step-content {padding: 28px 18px 22px;}
  
  .kpi{padding:22px 18px}
  .kpi-value{font-size:clamp(28px,8vw,38px)}
  .badge{padding:20px 16px; gap:14px}
  .footer{padding:40px 0 30px}
  .section{padding:50px 0}
  .section-padding{padding:40px 0}
  
  /* Better touch targets for mobile */
  .nav-toggle{width:44px; height:44px}
  input, textarea, button, .btn{min-height:44px}
  summary, .faq summary{min-height:44px; padding:8px 0}
  .lightbox-close{padding:10px 14px}
}

/* Pricing */
.pricing{position:relative; padding-top:80px; padding-bottom:100px}
.pricing::before{content:''; position:absolute; top:0; left:0; width:100%; height:200px; background:linear-gradient(to bottom, rgba(31,93,42,0.05), transparent); pointer-events:none}
.pricing .price-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:30px; margin-top:40px; position:relative; z-index:1}
.price{background:rgba(18,36,24,0.65); backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px); border:1px solid rgba(211,164,58,0.2); border-radius:var(--radius-lg); padding:36px 28px; text-align:center; box-shadow:0 15px 35px rgba(0,0,0,0.2); position:relative; overflow:hidden; transition:all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1)}
.price::before{content:''; position:absolute; top:-50px; right:-50px; width:100px; height:100px; background:var(--gold); opacity:0.03; border-radius:50%}
.price:hover{transform:translateY(-10px); box-shadow:0 25px 50px rgba(0,0,0,0.3)}
.price.featured{transform:translateY(-15px) scale(1.03); box-shadow:0 30px 60px rgba(0,0,0,0.3); border-color:rgba(211,164,58,0.4)}
.price.featured::after{content:''; position:absolute; top:0; right:30px; border:25px solid transparent; border-top:25px solid var(--gold); filter:drop-shadow(0 10px 15px rgba(0,0,0,0.1))}
.price h3{margin:4px 0 14px; font-size:1.5rem; position:relative; display:inline-block}
.price h3::after{content:''; position:absolute; bottom:-6px; left:0; width:100%; height:2px; background:var(--gold); border-radius:4px; opacity:0.5}
.price-tag{font-family:"Playfair Display", Georgia, serif; font-size:clamp(28px,3.5vw,38px); background:linear-gradient(45deg, var(--gold), var(--gold-2)); background-clip:text; -webkit-background-clip:text; -webkit-text-fill-color:transparent; margin:20px 0}
.price ul{list-style:none; padding:0; margin:20px 0; text-align:left}
.price li{position:relative; padding-left:28px; margin-bottom:12px; line-height:1.5}
.price li::before{content:'✓'; position:absolute; left:0; top:0; color:var(--gold); font-weight:bold}
.price .btn{margin-top:24px; min-width:160px}
/* Pricing banner */
.pricing .banner{height:280px; border-radius:var(--radius-lg); margin-bottom:30px; background-size:cover; background-position:center; border:1px solid rgba(211,164,58,0.3); box-shadow:0 20px 40px rgba(0,0,0,0.25); position:relative; overflow:hidden; transform:translateZ(0)}
.pricing .banner::after{content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.45))}

/* Gallery */
.gallery{position:relative; padding:100px 0}
.gallery::before{content:''; position:absolute; inset:0; background:linear-gradient(to bottom, rgba(31,93,42,0.04), transparent 30%); pointer-events:none}
.gallery .gallery-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:40px}
.g-item{display:block; border-radius:var(--radius-lg); overflow:hidden; border:1px solid rgba(211,164,58,0.15); box-shadow:0 15px 35px rgba(0,0,0,0.15); position:relative; transform:translateY(0); transition:all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1.1)}
.g-item::before{content:''; position:absolute; inset:0; background:linear-gradient(to bottom, transparent 70%, rgba(0,0,0,0.7)); opacity:0; z-index:1; transition:opacity 0.5s ease; pointer-events:none}
.g-item::after{content:'⤢'; font-size:28px; color:white; position:absolute; bottom:20px; right:20px; opacity:0; transform:translateY(20px); z-index:2; transition:all 0.4s ease 0.1s; pointer-events:none}
.g-item img{width:100%; height:100%; aspect-ratio:4/3; object-fit:cover; transform:scale(1); transition:transform .6s cubic-bezier(0.2, 0.8, 0.2, 1), filter .6s cubic-bezier(0.2, 0.8, 0.2, 1.1)}
.g-item:hover{transform:translateY(-10px); box-shadow:0 25px 50px rgba(0,0,0,0.2); border-color:rgba(211,164,58,0.3)}
.g-item:hover img{transform:scale(1.08); filter:saturate(1.1) brightness(1.05)}
.g-item:hover::before{opacity:1}
.g-item:hover::after{opacity:1; transform:translateY(0)}

/* Lightbox */
.lightbox{position:fixed; inset:0; background:rgba(0,0,0,.75); display:grid; place-items:center; opacity:0; visibility:hidden; transition:opacity .25s ease, visibility .25s ease; z-index:100}
.lightbox.open{opacity:1; visibility:visible}
.lightbox-img{max-width:min(92vw, 1100px); max-height:82vh; border-radius:16px; box-shadow:0 20px 60px rgba(0,0,0,.5)}
.lightbox-close{position:absolute; top:20px; right:24px; background:var(--bg-elev); color:var(--text); border:1px solid var(--border); border-radius:999px; padding:6px 10px; cursor:pointer}

/* Testimonials */
.testimonials{position:relative; padding:100px 0}
.testimonials::before{content:''; position:absolute; inset:0; background:linear-gradient(to bottom, rgba(211,164,58,0.05), transparent 30%); pointer-events:none}
.testimonials .container{position:relative; z-index:1}
.testimonials .t-scroller{display:flex; gap:30px; overflow:auto; scroll-snap-type:x mandatory; padding:20px 0 40px; scroll-behavior:smooth; -ms-overflow-style:none; scrollbar-width:none; position:relative}
.testimonials .t-scroller::-webkit-scrollbar{display:none}
.t-item{min-width:380px; scroll-snap-align:start; background:rgba(18,36,24,0.65); backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px); border:1px solid rgba(211,164,58,0.2); border-radius:var(--radius-lg); padding:30px; box-shadow:0 20px 40px rgba(0,0,0,0.15); transition:all 0.4s ease; position:relative}
.t-item::after{content:''; position:absolute; top:20px; right:20px; width:60px; height:60px; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23d3a43a' opacity='0.15' viewBox='0 0 24 24'%3E%3Cpath d='M6.5 10c-.223 0-.437.034-.65.065.069-.232.14-.468.254-.68.114-.308.292-.575.469-.844.148-.291.409-.488.601-.737.201-.242.475-.403.692-.604.213-.21.492-.315.714-.463.232-.133.434-.28.65-.35.208-.086.39-.16.539-.222.302-.125.474-.197.474-.197L9.758 4.03c0 0-.218.052-.597.144C8.97 4.222 8.737 4.278 8.472 4.345c-.271.05-.56.187-.882.312C7.272 4.799 6.904 4.895 6.562 5.123c-.344.218-.741.4-1.091.692-.339.301-.748.562-1.05.945-.33.358-.656.734-.909 1.162C3.249 8.318 3.049 8.754 2.893 9.213c-.313.907-.44 1.954-.44 2.787 0 1.747.771 3.374 2.046 4.466.159.152.346.242.52.365.2.117.398.26.59.344.195.094.394.167.597.232.204.061.392.126.598.14.199.01.394-.052.596-.088.202-.042.386-.107.595-.164.217-.044.434-.115.647-.179.216-.068.421-.174.636-.255.215-.084.43-.178.652-.237.216-.072.435-.082.652-.131.215-.043.434-.078.65-.143.211-.092.416-.153.617-.275.199-.094.421-.163.601-.282.181-.116.38-.214.552-.348.181-.123.352-.271.524-.409.172-.138.341-.283.499-.445.159-.16.323-.312.477-.482.153-.173.299-.354.443-.534.151-.169.318-.313.459-.496.148-.172.273-.378.421-.549.141-.184.295-.349.428-.537.131-.197.262-.381.389-.581.124-.2.272-.376.378-.591.115-.204.226-.401.323-.614.104-.205.199-.421.29-.63.091-.212.185-.422.254-.641.074-.215.134-.435.194-.658.064-.211.125-.439.178-.645.054-.226.088-.446.129-.683.042-.233.089-.46.111-.698.023-.241.043-.486.051-.727.009-.276.001-.527.001-.816-.001-.281-.037-.548-.052-.82-.016-.274-.048-.534-.081-.806-.033-.273-.068-.546-.128-.811-.058-.301-.131-.584-.213-.873-.088-.302-.172-.61-.302-.892-.114-.308-.292-.575-.469-.844-.148-.291-.409-.488-.601-.737-.201-.242-.475-.403-.692-.604-.213-.21-.492-.315-.714-.463-.232-.133-.434-.28-.65-.35-.208-.086-.39-.16-.539-.222-.302-.125-.474-.197-.474-.197z'/%3E%3C/svg%3E"); background-size:contain; background-repeat:no-repeat; opacity:0.15; pointer-events:none; z-index:0}
.t-item:hover{transform:translateY(-10px); box-shadow:0 30px 60px rgba(0,0,0,0.2)}
.t-content{position:relative; padding:0 0 15px 0; font-style:italic; color:var(--text); line-height:1.7; font-size:1.05rem; z-index:1}
.t-author{display:flex; align-items:center; gap:16px; margin-top:20px; border-top:1px solid rgba(211,164,58,0.15); padding-top:20px}
.t-avatar{width:56px; height:56px; border-radius:50%; background:linear-gradient(135deg, var(--gold), rgba(211,164,58,0.7)); display:grid; place-items:center; color:var(--bg); font-weight:700; font-size:22px; box-shadow:0 5px 15px rgba(211,164,58,0.3); transition:transform 0.3s ease}
.t-item:hover .t-avatar{transform:scale(1.1) rotate(5deg)}
.t-meta{flex:1}
.t-name{font-weight:600; font-size:1.1rem; margin-bottom:4px}
.t-title{font-size:0.9rem; color:var(--muted)}

/* Testimonial navigation */
.testimonial-nav{display:flex; justify-content:center; gap:10px; margin-top:20px}
.testimonial-dot{width:10px; height:10px; border-radius:50%; background:rgba(211,164,58,0.3); cursor:pointer; transition:all 0.3s ease}
.testimonial-dot.active{background:var(--gold); transform:scale(1.3)}

.t-name{display:block; margin-top:10px; color:var(--gold)}

/* Eid-ul-Adha Complete Service Section */
.section.eid {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  background-image: url('../assets/Arabesque floral pattern.png');
  background-repeat: repeat;
  background-attachment: fixed;
  background-color: var(--bg);
}

.eid::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,24,19,0.92) 0%, rgba(14,24,19,0.9) 50%, rgba(14,24,19,0.92) 100%);
  pointer-events: none;
  z-index: 1;
}

.eid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(211,164,58,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.eid .section-head,
.eid .container > * {
  position: relative;
  z-index: 2;
}

/* Eid Service Grid */
.eid-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 60px 0;
  position: relative;
  z-index: 2;
}

.eid-phase {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 35px 30px;
  box-shadow: var(--card-shadow);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.eid-phase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.7;
}

.eid-phase:hover {
  transform: translateY(-10px);
  box-shadow: var(--card-hover-shadow);
}

.eid-phase-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), rgba(211,164,58,0.7));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.eid-phase-icon::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(211,164,58,0.1);
  border-radius: 50%;
  left: -10px;
  top: -5px;
  z-index: -1;
}

.eid-phase h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--gold);
  position: relative;
}

.eid-phase h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.6;
}

.eid-phase p {
  color: var(--muted);
  line-height: 1.7;
}

/* Eid Features */
.eid-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin: 50px 0;
  padding: 40px;
  background: rgba(18, 36, 24, 0.75);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.eid-features::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211,164,58,0.08), transparent 70%);
  pointer-events: none;
}

.eid-features::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31,93,42,0.04), transparent 70%);
  pointer-events: none;
}

.eid-feature {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.eid-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), rgba(211,164,58,0.7));
  color: var(--bg);
  border-radius: 50%;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(211,164,58,0.2);
}

.eid-feature-text {
  flex: 1;
}

.eid-feature-text h4 {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1.1rem;
}

.eid-feature-text p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .eid-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .eid-service-grid {
    grid-template-columns: 1fr;
  }
  
  .eid-features {
    grid-template-columns: 1fr;
    padding: 30px 25px;
  }
}

.eid-special .eid-image {
  height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
  border: 1px solid var(--border-strong);
}

.eid-special .eid-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.eid-special .eid-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(211,164,58,0.1);
  color: var(--gold);
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 10px;
  width: fit-content;
}

.eid-special h2 {
  font-size: clamp(32px, 5vw, 44px);
  margin-bottom: 20px;
  background: linear-gradient(45deg, var(--gold), var(--gold-2));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.eid-special .eid-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.eid-special .eid-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 30px;
  margin-top: 30px;
}

.eid-special .eid-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.eid-special .eid-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(211,164,58,0.1);
  border-radius: 10px;
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}

.eid-special .eid-feature-text h4 {
  margin: 0 0 5px;
  font-size: 1.1rem;
}

.eid-special .eid-feature-text p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
}

.eid-special .eid-cta {
  margin-top: 40px;
}

@media (max-width: 992px) {
  .eid-special .eid-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .eid-special .eid-image {
    height: 400px;
    order: -1;
  }
}

@media (max-width: 576px) {
  .eid-special {
    padding: 80px 0;
  }
  
  .eid-special .eid-features {
    grid-template-columns: 1fr;
  }
  
  .eid-special .eid-image {
    height: 300px;
  }
}

/* WhatsApp CTA */
.whatsapp-cta{position:fixed; bottom:30px; right:30px; display:flex; align-items:center; gap:12px; background:linear-gradient(135deg, var(--green), var(--green-2)); color:var(--text); padding:12px 20px; border-radius:50px; text-decoration:none; box-shadow:0 10px 30px rgba(0,0,0,0.25); transition:all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1); z-index:10; border:1px solid rgba(255,255,255,0.1)}
.whatsapp-cta:hover{transform:translateY(-6px) scale(1.05); box-shadow:0 20px 40px rgba(0,0,0,0.3)}
.whatsapp-cta::before{content:''; position:absolute; inset:0; background:linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent); opacity:0; border-radius:50px; transition:opacity 0.5s ease}
.whatsapp-cta:hover::before{opacity:1; animation:shine 1.5s ease infinite}

@keyframes shine {
  0% {transform:translateX(-100%)}
  50%, 100% {transform:translateX(100%)}
}

.whatsapp-cta .icon{display:flex; align-items:center; justify-content:center; width:28px; height:28px; font-size:22px; position:relative}
.whatsapp-cta .text{font-weight:600; letter-spacing:0.5px; text-transform:uppercase; font-size:0.9rem}

/* ===== CALL TO ORDER BUTTON (Below Carousel) ===== */
.call-to-order-btn {
  position: absolute;
  bottom: -70px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--bg);
  border: 2px solid var(--border);
  padding: 14px 40px;
  border-radius: var(--radius-lg);
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  transition: all 0.3s ease;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.call-to-order-btn:hover {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 8px 25px rgba(211, 164, 58, 0.4);
  border-color: var(--gold);
}

.call-to-order-btn:active {
  transform: translateX(-50%) translateY(-1px);
}

/* ===== NAV CALL BUTTON ===== */
.nav-call-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--bg);
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(211,164,58,0.25);
}

.nav-call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(211,164,58,0.35);
}

.nav-call-btn .call-text {
  display: inline;
}

@media (max-width: 768px) {
  .nav-call-btn .call-text {
    display: none;
  }
  .nav-call-btn {
    padding: 10px;
  }
}

/* ===== CART CONFIRMATION TOAST ===== */
.cart-confirmation-container {
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1001;
  pointer-events: none;
}

.cart-confirmation {
  position: relative;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--text);
  padding: 14px 24px;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(211, 164, 58, 0.4);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  opacity: 0;
  transform: translateY(-20px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.4s ease;
  border: 1px solid var(--gold);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(211, 164, 58, 0.2), 0 10px 10px rgba(211, 164, 58, 0.1);
}

.cart-confirmation.show {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* ===== RESPONSIVE CAROUSEL ===== */
@media (max-width: 1200px) {
  .product-carousel-container {
    height: 540px;
  }
  
  .product-card {
    width: 350px;
    height: 470px;
  }
  
  .product-image-container {
    height: 300px;
  }
  
  .product-card.left {
    transform: translate(calc(-50% - 380px), -50%) scale(0.85) rotate(-8deg) !important;
  }
  
  .product-card.right {
    transform: translate(calc(-50% + 380px), -50%) scale(0.85) rotate(8deg) !important;
  }
  
  .prev-btn {
    left: -140px;
  }
  
  .next-btn {
    right: -140px;
  }
}

@media (max-width: 1024px) {
  .product-carousel-container {
    height: 520px;
  }
  
  .product-card {
    width: 340px;
    height: 460px;
  }
  
  .product-image-container {
    height: 290px;
  }
  
  .product-card.left {
    transform: translate(calc(-50% - 360px), -50%) scale(0.82) rotate(-8deg) !important;
  }
  
  .product-card.right {
    transform: translate(calc(-50% + 360px), -50%) scale(0.82) rotate(8deg) !important;
  }
  
  .prev-btn {
    left: -110px;
  }
  
  .next-btn {
    right: -110px;
  }
}

@media (max-width: 768px) {
  .products { padding: 48px 0; }
  .section-title { font-size: 2.1rem; }
  .btn-gold { white-space: normal; padding: 12px 20px; font-size: 0.95rem; }
  .section-subtitle { display: none; }
  .product-carousel-container { 
    height: 520px;
    gap: 0;
  }
  
  .product-display-area { 
    min-height: 460px; 
    padding-bottom: 20px; 
  }
  
  .product-card {
    width: 280px;
    height: 450px;
  }
  
  .product-image-container {
    height: 290px;
  }
  
  .product-card.center {
    transform: translate(-50%, -50%) scale(1.0) rotate(0deg) !important;
  }
  
  .product-card.left {
    transform: translate(calc(-50% - 180px), -50%) scale(0.7) rotate(-10deg) !important;
    opacity: 0.25;
  }
  
  .product-card.right {
    transform: translate(calc(-50% + 180px), -50%) scale(0.7) rotate(10deg) !important;
    opacity: 0.25;
  }
  
  .prev-btn {
    left: -80px;
  }
  
  .next-btn {
    right: -80px;
  }
}

/* ========================================
   Horizontal Scroll Story - Premium Design
   ======================================== */

.horizontal-story {
  position: relative;
  height: 380vh; /* Extra scroll space for 3rd panel dwell time */
  background: #0a140f;
}

/* Ambient Pulsing Gold Gradients */
.horizontal-story::before,
.horizontal-story::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.horizontal-story::before {
  top: 40%;
  left: 20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(211, 164, 58, 0.12) 0%, transparent 70%);
  animation: ambient-pulse 8s ease-in-out infinite;
}

.horizontal-story::after {
  top: 30%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(211, 164, 58, 0.08) 0%, transparent 70%);
  animation: ambient-pulse 10s ease-in-out infinite reverse;
}

@keyframes ambient-pulse {
  0%, 100% { 
    opacity: 0.5; 
    transform: scale(1); 
  }
  50% { 
    opacity: 1; 
    transform: scale(1.2); 
  }
}

/* Sticky wrapper */
.horizontal-story-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #0a140f;
  z-index: 1;
}

/* Story Heading - Clean Gold */
.story-heading {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: 0;
  z-index: 30;
  opacity: 0;
  transition: opacity 0.5s ease;
  /* Shimmer gradient text */
  background: linear-gradient(
    90deg, 
    var(--gold) 0%, 
    #f5d78e 25%, 
    var(--gold) 50%, 
    #f5d78e 75%, 
    var(--gold) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(211, 164, 58, 0.4));
  animation: shimmer-text 4s ease-in-out infinite;
}

/* No underline - progress bar serves as visual separator */
.story-heading::after {
  display: none;
}

@keyframes shimmer-text {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 200% center; }
}

.horizontal-story.in-view .story-heading {
  opacity: 1;
}

/* Progress Bar - Premium Glow */
.horizontal-progress {
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 600px;
  z-index: 30;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}

.horizontal-story.in-view .horizontal-progress {
  opacity: 1;
  visibility: visible;
}

.progress-track {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-2), var(--gold));
  box-shadow: 
    0 0 15px rgba(211, 164, 58, 0.9),
    0 0 30px rgba(211, 164, 58, 0.5),
    0 0 45px rgba(211, 164, 58, 0.3);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 10px;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
}

.progress-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  padding: 10px 20px;
  border-radius: 25px;
}

/* Active tab - Pill background + glow */
.progress-label::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  border-radius: 25px;
  transition: all 0.4s ease;
  z-index: -1;
}

.progress-label::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 10px rgba(211, 164, 58, 0.8);
  transition: width 0.4s ease;
}

.progress-label:hover {
  color: rgba(255, 255, 255, 0.7);
}

.progress-label.active {
  color: var(--gold);
  font-weight: 700;
  text-shadow: 0 0 20px rgba(211, 164, 58, 0.5);
}

.progress-label.active::before {
  background: rgba(211, 164, 58, 0.12);
  box-shadow: 
    0 0 20px rgba(211, 164, 58, 0.15),
    inset 0 0 20px rgba(211, 164, 58, 0.05);
  border: 1px solid rgba(211, 164, 58, 0.25);
}

.progress-label.active::after {
  width: 60%;
}

/* Horizontal Container */
.horizontal-container {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  height: 100%;
  width: 300vw;
  will-change: transform;
  transition: transform 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
}

.horizontal-story.in-view .horizontal-container {
  opacity: 1;
  visibility: visible;
}

/* Story Panels */
.story-panel {
  flex: 0 0 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px 80px 60px;
  box-sizing: border-box;
  position: relative;
  background: #0a140f;
}

.panel-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1300px;
  width: 100%;
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-panel.visible .panel-content {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Panel Image with Halo */
.panel-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Pulsing Halo behind image */
.image-halo {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211, 164, 58, 0.25) 0%, transparent 70%);
  animation: image-halo-pulse 4s ease-in-out infinite;
  z-index: 0;
}

@keyframes image-halo-pulse {
  0%, 100% { 
    transform: scale(1); 
    opacity: 0.5; 
  }
  50% { 
    transform: scale(1.2); 
    opacity: 1; 
  }
}

.panel-image img {
  width: 380px;
  height: 380px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  /* Triple-layer glow */
  filter: 
    brightness(1.15) 
    drop-shadow(0 0 40px rgba(211, 164, 58, 0.6)) 
    drop-shadow(0 0 80px rgba(211, 164, 58, 0.35))
    drop-shadow(0 0 120px rgba(211, 164, 58, 0.15));
  animation: float-gentle 6s ease-in-out infinite;
}

@keyframes float-gentle {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-8px) rotate(0.5deg); }
  50% { transform: translateY(-15px) rotate(0deg); }
  75% { transform: translateY(-8px) rotate(-0.5deg); }
}

/* Panel Text */
.panel-text {
  max-width: 520px;
}

/* Number Badge - Clean Design */
.panel-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #0a140f;
  background: linear-gradient(145deg, #f5d78e 0%, var(--gold) 50%, #c4993d 100%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  box-shadow: 
    0 4px 20px rgba(211, 164, 58, 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.3),
    inset 0 -2px 6px rgba(0, 0, 0, 0.15);
}

/* Subtle outer glow - no animation */
.panel-number::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211, 164, 58, 0.3) 0%, transparent 70%);
  z-index: -1;
}

.panel-number::after {
  display: none;
}

.panel-number span {
  position: relative;
  z-index: 1;
}

.panel-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  margin: 0 0 16px 0;
  font-weight: 500;
  line-height: 1.35;
  color: var(--gold);
}

/* Price Badge - Shimmer Sweep */
.panel-price {
  display: inline-block;
  position: relative;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  background: linear-gradient(135deg, rgba(211, 164, 58, 0.15) 0%, rgba(211, 164, 58, 0.08) 100%);
  padding: 12px 28px;
  border-radius: 30px;
  border: 1px solid rgba(211, 164, 58, 0.35);
  margin-bottom: 24px;
  overflow: hidden;
  animation: price-glow 3s ease-in-out infinite;
}

/* Shimmer sweep overlay */
.panel-price::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg, 
    transparent, 
    rgba(255, 255, 255, 0.2), 
    transparent
  );
  animation: shimmer-sweep 3s ease-in-out infinite;
}

@keyframes price-glow {
  0%, 100% { 
    box-shadow: 0 0 15px rgba(211, 164, 58, 0.2);
    border-color: rgba(211, 164, 58, 0.35);
  }
  50% { 
    box-shadow: 0 0 25px rgba(211, 164, 58, 0.35);
    border-color: rgba(211, 164, 58, 0.5);
  }
}

@keyframes shimmer-sweep {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.panel-text p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin: 0;
}

/* Scroll Hint - Bottom of panel */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.scroll-hint span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: rgba(211, 164, 58, 0.7);
  text-transform: uppercase;
}

.scroll-hint svg {
  color: var(--gold);
  opacity: 0.7;
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* Mobile Responsive - Horizontal Scroll */
@media (max-width: 768px) {
  .horizontal-story {
    height: 250vh;
  }

  .horizontal-story::before {
    width: 300px;
    height: 300px;
    left: 10%;
  }

  .horizontal-story::after {
    width: 250px;
    height: 250px;
    right: 5%;
  }

  .story-heading {
    top: 18px;
    font-size: 1.35rem;
    width: 90%;
    text-align: center;
  }

  .story-heading::after {
    bottom: -8px;
    width: 50%;
  }

  .horizontal-progress {
    top: 65px;
    width: 95%;
  }

  .progress-label {
    font-size: 0.55rem;
    letter-spacing: 1.5px;
    padding: 8px 12px;
  }

  .progress-label.active {
    font-size: 0.6rem;
  }

  .story-panel {
    padding: 130px 20px 80px;
  }

  .panel-content {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .panel-image {
    order: 1;
  }

  .image-halo {
    width: 200px;
    height: 200px;
  }

  .panel-image img {
    width: 260px;
    height: 260px;
    filter: 
      brightness(1.1) 
      drop-shadow(0 0 30px rgba(211, 164, 58, 0.5)) 
      drop-shadow(0 0 50px rgba(211, 164, 58, 0.25));
  }

  .panel-text {
    order: 2;
    text-align: center;
    max-width: 100%;
  }

  .panel-number {
    margin: 0 auto 16px;
    width: 55px;
    height: 55px;
    font-size: 1.1rem;
  }

  .panel-number::before {
    inset: -4px;
  }

  .panel-number::after {
    inset: -6px;
  }

  .panel-text h2 {
    font-size: 1.6rem;
    margin-bottom: 14px;
  }

  .panel-price {
    font-size: 1rem;
    padding: 10px 22px;
    margin-bottom: 16px;
  }

  .panel-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    padding: 0 10px;
  }

  .scroll-hint {
    bottom: 25px;
  }

  .scroll-hint span {
    font-size: 0.6rem;
    letter-spacing: 2px;
  }

  .scroll-hint svg {
    width: 16px;
    height: 16px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .story-heading {
    font-size: 1.2rem;
  }

  .progress-label {
    font-size: 0.5rem;
    padding: 6px 10px;
    letter-spacing: 1px;
  }

  .panel-image img {
    width: 220px;
    height: 220px;
  }

  .image-halo {
    width: 180px;
    height: 180px;
  }

  .panel-number {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }

  .panel-text h2 {
    font-size: 1.4rem;
  }

  .panel-price {
    font-size: 0.9rem;
    padding: 8px 18px;
  }
}

/* ========================================
   Farm Gallery - Masonry Layout
   ======================================== */

.farm-gallery {
  background: var(--bg);
  padding: 100px 0;
  overflow: hidden;
}

.farm-gallery .section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 60px;
}

.farm-gallery .section-label {
  margin-bottom: 12px;
}

/* Masonry Grid - CSS Columns for true masonry */
.gallery-wrapper {
  position: relative;
  max-height: 700px;
  overflow: hidden;
}

/* Fade overlay at bottom */
.gallery-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg) 0%, var(--bg) 20%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

.masonry-gallery {
  columns: 4;
  column-gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--bg-elev);
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
  /* Color grading filter to match gold-green theme */
  filter: brightness(0.92) saturate(1.15) sepia(12%) hue-rotate(-8deg);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1) saturate(1.2) sepia(8%) hue-rotate(-5deg);
}

/* Overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14, 24, 19, 0.85) 0%,
    rgba(14, 24, 19, 0.3) 40%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

/* CTA Button - Positioned over fade */
.gallery-cta {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  text-align: center;
}

.gallery-cta .btn {
  padding: 16px 48px;
  font-size: 1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 40px rgba(211, 164, 58, 0.4);
  white-space: nowrap;
}

/* Tablet */
@media (max-width: 1024px) {
  .masonry-gallery {
    columns: 3;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .farm-gallery {
    padding: 70px 0;
  }
  
  .gallery-wrapper {
    max-height: 500px;
  }
  
  .gallery-wrapper::after {
    height: 150px;
  }
  
  .masonry-gallery {
    columns: 2;
    column-gap: 10px;
  }
  
  .gallery-item {
    margin-bottom: 10px;
  }
  
  .gallery-overlay {
    padding: 15px;
  }
  
  .gallery-overlay span {
    font-size: 0.95rem;
  }
  
  .gallery-cta {
    bottom: 20px;
  }
  
  .gallery-cta .btn {
    padding: 12px 24px;
    font-size: 0.85rem;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .gallery-wrapper {
    max-height: 450px;
  }
  
  .gallery-cta {
    bottom: 15px;
  }
  
  .gallery-cta .btn {
    padding: 10px 20px;
    font-size: 0.8rem;
  }
  
  .masonry-gallery {
    columns: 2;
    column-gap: 8px;
  }
  
  .gallery-item {
    margin-bottom: 8px;
  }
  
  .gallery-overlay span {
    font-size: 0.85rem;
  }
}

/* ========================================
   Gallery Page Styles
   ======================================== */

.gallery-hero {
  padding: 100px 0 20px;
  background: var(--bg);
  text-align: center;
}

.gallery-hero .section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-hero .section-label {
  margin-bottom: 8px;
}

.gallery-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.gallery-hero p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 500px;
  margin-bottom: 16px;
}

/* Filter Tabs */
.gallery-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
}

.gallery-section {
  padding: 30px 0 60px;
  background: var(--bg);
}

/* Mixed Media Gallery - CSS Columns Masonry */
.mixed-gallery {
  columns: 4;
  column-gap: 14px;
}

.media-item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--bg-elev);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.media-item.hidden {
  display: none;
}

.media-item img,
.media-item video {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
  filter: brightness(0.92) saturate(1.15) sepia(12%) hue-rotate(-8deg);
}

.media-item:hover img,
.media-item:hover video {
  transform: scale(1.05);
  filter: brightness(1) saturate(1.2) sepia(8%) hue-rotate(-5deg);
}

.media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 24, 19, 0.9) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.media-item:hover .media-overlay {
  opacity: 1;
}

.media-overlay span {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1rem;
}

/* Video Play Button */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(199, 165, 98, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}

.video-play-btn svg {
  width: 24px;
  height: 24px;
  fill: var(--bg);
  margin-left: 3px;
}

.media-item.video:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--gold);
}

.media-item.video.playing .video-play-btn {
  opacity: 0;
  pointer-events: none;
}

/* Gallery CTA Section */
.gallery-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-elev) 100%);
  text-align: center;
}

.gallery-cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.gallery-cta-section p {
  color: var(--muted);
  margin-bottom: 24px;
}

.gallery-cta-section .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

/* Gallery Page Responsive */
@media (max-width: 1200px) {
  .mixed-gallery {
    columns: 3;
  }
}

@media (max-width: 768px) {
  .gallery-hero {
    padding: 90px 0 15px;
  }
  
  .gallery-hero h1 {
    font-size: 1.8rem;
  }
  
  .mixed-gallery {
    columns: 2;
    column-gap: 10px;
  }
  
  .media-item {
    margin-bottom: 10px;
  }
  
  .video-play-btn {
    width: 50px;
    height: 50px;
  }
  
  .video-play-btn svg {
    width: 20px;
    height: 20px;
  }
  
  .gallery-cta-section {
    padding: 50px 0;
  }
  
  .gallery-cta-section h2 {
    font-size: 1.5rem;
  }
  
  .gallery-cta-section .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .gallery-hero {
    padding: 80px 0 12px;
  }
  
  .gallery-hero h1 {
    font-size: 1.5rem;
  }
  
  .gallery-hero p {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }
  
  .filter-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
  
  .mixed-gallery {
    columns: 2;
    column-gap: 8px;
  }
  
  .media-item {
    margin-bottom: 8px;
  }
  
  .video-play-btn {
    width: 44px;
    height: 44px;
  }
  
  .gallery-cta-section {
    padding: 40px 0;
  }
  
  .gallery-cta-section h2 {
    font-size: 1.3rem;
  }
  
  .gallery-cta-section p {
    font-size: 0.9rem;
    margin-bottom: 18px;
  }
  
  .gallery-cta-section .btn {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
}
