/* ==========================================================================
   DEEP MART / DEEP TRADERS - ALL OVER UTTAR PRADESH DISTRIBUTOR
   Master Luxury Stylesheet with Dynamic Fluid Animations
   ========================================================================== */

/* --------------------------------------------------------------------------
   Google Fonts Import & CSS Custom Properties
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,400&family=Montserrat:wght@700;800;900&display=swap');

:root {
  /* Color Palette */
  --primary-navy: #0A1128;
  --deep-navy: #050B1A;
  --surface-navy: #101B38;
  --surface-card: #152245;
  --surface-card-hover: #1A2B56;
  
  --gold-primary: #D4AF37;
  --gold-light: #F6E27A;
  --gold-bright: #FFDF73;
  --gold-dark: #996515;
  --gold-gradient: linear-gradient(90deg, #F9D976 0%, #FFF3B0 25%, #E9B642 50%, #FFE082 75%, #F9D976 100%);
  --gold-gradient-glow: linear-gradient(135deg, #FFE898 0%, #D4AF37 50%, #8A6414 100%);

  --crimson-accent: #8E1616;
  --crimson-glow: #C02727;
  --marigold-orange: #FF8C00;
  
  --ivory-cream: #FAF7F0;
  --ivory-muted: #E6E0D2;
  --text-main: #FAF7F0;
  --text-muted: #B8C2D8;
  --text-dim: #7E8BA8;
  
  --glass-bg: rgba(16, 27, 56, 0.75);
  --glass-border: rgba(212, 175, 55, 0.25);

  /* Typography */
  --font-serif: 'Cinzel', serif;
  --font-display: 'Playfair Display', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --font-brand: 'Montserrat', sans-serif;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
}

/* --------------------------------------------------------------------------
   Reset & Global Styles
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--deep-navy);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(212, 175, 55, 0.09) 0%, transparent 45%),
    radial-gradient(circle at 85% 65%, rgba(255, 140, 0, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 90%, rgba(142, 22, 22, 0.09) 0%, transparent 45%);
  background-attachment: fixed;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--deep-navy);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  outline: none;
}

.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --------------------------------------------------------------------------
   Dynamic Keyframe Animations (Text & Motion)
   -------------------------------------------------------------------------- */
@keyframes goldShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes textGlowPulse {
  0%, 100% { text-shadow: 0 0 10px rgba(255, 223, 115, 0.2); }
  50% { text-shadow: 0 0 22px rgba(255, 223, 115, 0.65), 0 0 35px rgba(212, 175, 55, 0.4); }
}

@keyframes sparkleSpin {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.7; }
  50% { transform: scale(1.35) rotate(180deg); opacity: 1; text-shadow: 0 0 10px #FFDF73; color: #FFE898; }
}

@keyframes floatBadge {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0px); }
}

@keyframes heroTitleFade {
  0% { opacity: 0; transform: translateY(35px); filter: blur(4px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes heroSubFade {
  0% { opacity: 0; transform: translateY(25px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes flameFlicker {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  50% { transform: translate(-50%, -52%) scale(1.1); opacity: 1; }
  100% { transform: translate(-49%, -48%) scale(0.95); opacity: 0.75; }
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

@keyframes ripple {
  0% { transform: scale(1); opacity: 0.85; }
  100% { transform: scale(1.5); opacity: 0; }
}

@keyframes rotateRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Scroll-Driven Reveal Animation Classes */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-zoom {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-zoom.active {
  opacity: 1;
  transform: scale(1);
}

/* --------------------------------------------------------------------------
   Typography & Shared Utilities
   -------------------------------------------------------------------------- */
.gold-text, 
.hero-title span.accent, 
.section-title span.accent {
  background: var(--gold-gradient);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShimmer 4s linear infinite;
  display: inline-block;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.section-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-bright);
  margin-bottom: 12px;
  transition: var(--transition-smooth);
}

.section-tagline:hover {
  letter-spacing: 5px;
  color: #FFF;
}

.section-tagline::before,
.section-tagline::after {
  content: "✦";
  color: var(--gold-bright);
  font-size: 0.9rem;
  display: inline-block;
  animation: sparkleSpin 3.5s ease-in-out infinite;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.25;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
}

/* Typewriter Cursor & Heading Highlight */
.typewriter-cursor {
  display: inline-block;
  color: var(--gold-bright);
  font-weight: 300;
  animation: cursorBlink 0.85s infinite;
  margin-left: 3px;
  -webkit-text-fill-color: var(--gold-bright) !important;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.text-typing-effect {
  position: relative;
  transition: var(--transition-smooth);
}

.text-typing-effect.typing-active {
  animation: headingGlowPulse 2.5s ease-in-out;
}

@keyframes headingGlowPulse {
  0% { text-shadow: 0 0 0px transparent; }
  50% { text-shadow: 0 0 25px rgba(246, 226, 122, 0.6); }
  100% { text-shadow: 0 0 0px transparent; }
}

/* Paragraph Scroll Reactive Fade In / Fade Out */
p, .section-description, .hero-subtitle, .network-info-desc, .brand-desc, .product-desc, .testimonial-text {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

p.p-fade-in, .section-description.p-fade-in, .hero-subtitle.p-fade-in, .network-info-desc.p-fade-in, .brand-desc.p-fade-in, .product-desc.p-fade-in, .testimonial-text.p-fade-in {
  opacity: 1;
  transform: translateY(0);
}

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

.text-center {
  text-align: center;
}

.section-header {
  margin-bottom: 50px;
}

.gold-divider {
  width: 100px;
  height: 3px;
  background: var(--gold-gradient);
  background-size: 200% auto;
  animation: goldShimmer 3s linear infinite;
  margin: 20px auto 0 auto;
  border-radius: var(--radius-full);
  position: relative;
}

.gold-divider::after {
  content: '✦';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold-bright);
  font-size: 14px;
  background: var(--deep-navy);
  padding: 0 6px;
  animation: sparkleSpin 4s ease-in-out infinite;
}

/* --------------------------------------------------------------------------
   Buttons & CTAs
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold-gradient);
  background-size: 200% auto;
  color: #050B1A;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  font-weight: 800;
  animation: goldShimmer 4s linear infinite;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 32px rgba(212, 175, 55, 0.65);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--ivory-cream);
  border: 1px solid rgba(212, 175, 55, 0.4);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.18);
  border-color: var(--gold-light);
  color: #FFFFFF;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
}

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
  font-weight: 700;
}

.btn-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   Header & Navigation
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   Header & Navigation (Sleek Luxury Design)
   -------------------------------------------------------------------------- */
.top-notice-bar {
  background: #060D20;
  color: var(--text-muted);
  font-size: 0.82rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
  z-index: 1001;
}

.top-notice-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

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

.notice-badge {
  background: var(--gold-gradient);
  color: #050B1A;
  font-weight: 800;
  font-size: 0.7rem;
  padding: 3px 9px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.notice-text {
  color: #E6E0D2;
  font-weight: 500;
}

.notice-link {
  color: var(--gold-bright);
  font-weight: 700;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.notice-link:hover {
  color: #FFFFFF;
  transform: scale(1.04);
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 17, 40, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  padding: 12px 0;
  transition: var(--transition-smooth);
}

.header.scrolled {
  background: rgba(5, 11, 26, 0.98);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.7);
  border-bottom-color: rgba(212, 175, 55, 0.35);
  padding: 8px 0;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-main-img {
  height: 65px;
  width: auto;
  max-width: 290px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.65));
  transition: var(--transition-smooth);
}

.brand-logo:hover .brand-logo-main-img {
  transform: scale(1.06);
  filter: drop-shadow(0 0 16px rgba(255, 77, 77, 0.75));
}

.footer-logo-img {
  height: 70px;
  width: auto;
  max-width: 310px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.75));
  transition: var(--transition-smooth);
}

.footer-about .brand-logo:hover .footer-logo-img {
  transform: scale(1.06);
  filter: drop-shadow(0 0 18px rgba(255, 77, 77, 0.85));
}

.logo-frame {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  overflow: hidden;
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.4);
  background: radial-gradient(circle, rgba(21, 34, 69, 0.95) 0%, rgba(5, 11, 26, 0.98) 100%);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.brand-logo:hover .logo-frame {
  transform: rotate(6deg) scale(1.08);
  box-shadow: 0 0 25px rgba(246, 226, 122, 0.85);
  border-color: var(--gold-bright);
}

.logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
  filter: drop-shadow(0 2px 6px rgba(255, 60, 60, 0.5));
}

.brand-text-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.15;
}

.brand-text-group .brand-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 1.2px;
  line-height: 1.1;
  color: #FFFFFF;
  background: var(--gold-gradient);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShimmer 4s linear infinite;
  display: inline-block;
  white-space: nowrap;
}

.brand-text-group .brand-sub {
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--gold-bright);
  text-transform: uppercase;
  font-weight: 800;
  white-space: nowrap;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
  transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-bright);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition-smooth);
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cart-toggle-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.35);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  font-size: 1.05rem;
  cursor: pointer;
  position: relative;
  transition: var(--transition-smooth);
}

.cart-toggle-btn:hover {
  background: var(--gold-gradient);
  color: var(--deep-navy);
  transform: scale(1.08);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--crimson-glow);
  color: #FFF;
  font-size: 0.7rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--deep-navy);
}

.btn-whatsapp-header {
  background: #25D366;
  color: #FFFFFF;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.btn-whatsapp-header:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
}

.hamburger-btn {
  display: none;
  background: none;
  border: none;
  color: var(--gold-light);
  font-size: 1.6rem;
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  padding: 40px 0 45px;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.16) 0%, rgba(255, 140, 0, 0.06) 50%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  animation: flameFlicker 6s infinite alternate ease-in-out;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  color: var(--gold-bright);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
  animation: floatBadge 3.5s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
  animation: heroTitleFade 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 35px;
  animation: heroSubFade 1.4s cubic-bezier(0.16, 1, 0.3, 1) both 0.2s;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 40px;
  animation: heroSubFade 1.6s cubic-bezier(0.16, 1, 0.3, 1) both 0.35s;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 25px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  animation: heroSubFade 1.8s cubic-bezier(0.16, 1, 0.3, 1) both 0.5s;
}

.stat-item h4 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  animation: textGlowPulse 3s infinite;
}

.stat-item p {
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-top: 4px;
}

/* Hero Visual Card */
.hero-visual {
  position: relative;
  animation: heroSubFade 1.5s cubic-bezier(0.16, 1, 0.3, 1) both 0.3s;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  background: var(--surface-card);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.hero-img-box {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #050B1A;
}

.hero-img-box img {
  width: 100%;
  height: auto;
  max-height: 490px;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.8s ease;
}

.hero-image-card:hover .hero-img-box img {
  transform: scale(1.03);
}

.hero-bottom-badge-strip {
  background: rgba(10, 17, 40, 0.97);
  border-top: 1px solid rgba(212, 175, 55, 0.35);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 2;
}

.hero-bottom-badge-strip .badge-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.diya-icon-glow {
  width: 44px;
  height: 44px;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.3) 0%, rgba(212, 175, 55, 0.1) 70%);
  border: 1px solid var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  font-size: 1.3rem;
  animation: pulseGlow 2.5s infinite;
}

.badge-text h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFF;
}

.badge-text p {
  font-size: 0.78rem;
  color: var(--gold-light);
}

.badge-cta-btn {
  background: var(--gold-gradient);
  color: #050B1A;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.badge-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  color: #050B1A;
}

/* --------------------------------------------------------------------------
   Trust Highlights Bar
   -------------------------------------------------------------------------- */
.trust-bar-section {
  padding: 30px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  background: rgba(16, 27, 56, 0.45);
}

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

.trust-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
}

.trust-card:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--surface-card);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.35rem;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.trust-card:hover .trust-icon {
  transform: rotate(10deg) scale(1.1);
  color: var(--gold-bright);
}

.trust-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
}

.trust-info p {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* --------------------------------------------------------------------------
   About Deep Traders (Heritage & Distribution Showcase)
   -------------------------------------------------------------------------- */
.heritage-section {
  padding: 48px 0;
  background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
              rgba(10, 17, 40, 0.5);
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  position: relative;
}

.heritage-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: center;
}

.heritage-logo-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.logo-big-emblem {
  width: 320px;
  height: 320px;
  max-width: 90vw;
  max-height: 90vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 34, 69, 0.95) 0%, rgba(6, 13, 32, 0.98) 100%);
  border: 3px solid var(--gold-primary);
  box-shadow: 0 0 45px rgba(212, 175, 55, 0.4), inset 0 0 30px rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  position: relative;
  transition: var(--transition-smooth);
}

.logo-big-emblem:hover {
  transform: scale(1.05);
  box-shadow: 0 0 60px rgba(246, 226, 122, 0.7), inset 0 0 40px rgba(212, 175, 55, 0.35);
  border-color: var(--gold-light);
}

.logo-big-emblem img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  filter: drop-shadow(0 6px 22px rgba(255, 60, 60, 0.6));
}

/* --------------------------------------------------------------------------
   UP DISTRIBUTION NETWORK & MAP SHOWCASE (VARANASI HUB)
   -------------------------------------------------------------------------- */
.network-showcase-section {
  padding: 48px 0;
  background: radial-gradient(circle at 15% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 85% 80%, rgba(142, 22, 22, 0.08) 0%, transparent 50%),
              rgba(6, 13, 32, 0.95);
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  position: relative;
}

.network-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold-primary);
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.network-showcase-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 35px;
  align-items: center;
  margin-bottom: 40px;
}

.network-map-card {
  background: var(--surface-card);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
}

.network-map-card:hover {
  border-color: var(--gold-bright);
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(212, 175, 55, 0.25);
}

.network-map-frame {
  position: relative;
  overflow: hidden;
  background: #050B1A;
  cursor: pointer;
}

.network-map-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.network-map-card:hover .network-map-img {
  transform: scale(1.03);
}

.network-map-overlay {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}

.map-badge {
  background: rgba(5, 11, 26, 0.85);
  backdrop-filter: blur(8px);
  color: var(--gold-bright);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--gold-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.network-map-caption {
  padding: 16px 20px;
  background: rgba(10, 17, 40, 0.9);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.hub-location {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hub-location i {
  font-size: 1.4rem;
  color: var(--gold-bright);
}

.hub-location strong {
  font-size: 0.9rem;
  color: #FFFFFF;
  display: block;
}

.hub-location p {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin: 0;
}

.network-info-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.network-info-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: #FFFFFF;
  line-height: 1.35;
}

.network-info-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.network-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.network-feature-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  transition: var(--transition-smooth);
}

.network-feature-box:hover {
  border-color: var(--gold-bright);
  background: rgba(212, 175, 55, 0.08);
  transform: translateX(6px);
}

.net-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--gold-gradient);
  color: #050B1A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.network-feature-box h5 {
  font-size: 0.92rem;
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 2px;
}

.network-feature-box p {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin: 0;
  line-height: 1.45;
}

.major-hubs-wrap {
  background: rgba(10, 17, 40, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-md);
  padding: 14px 18px;
}

.hubs-label {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}

.hubs-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hub-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: #FFFFFF;
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition-fast);
}

.hub-chip:hover {
  border-color: var(--gold-bright);
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold-bright);
  transform: scale(1.05);
}

.hub-chip i {
  color: var(--gold-bright);
  font-size: 0.68rem;
}

.network-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.network-marquee-strip {
  background: rgba(10, 17, 40, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 15px;
  overflow: hidden;
}

.marquee-title-box {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-bright);
  font-weight: 800;
  font-size: 0.8rem;
  white-space: nowrap;
}

.districts-marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  flex: 1;
}

.marquee-content {
  display: inline-flex;
  gap: 12px;
  animation: marqueeScroll 25s linear infinite;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.district-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  color: #FFF;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.district-chip i {
  color: #4CAF50;
  font-size: 0.65rem;
}

/* --------------------------------------------------------------------------
   DEEP MART FASHION BAZAAR SECTION (BRANDED APPAREL & CLOTHING)
   -------------------------------------------------------------------------- */
.fashion-bazaar-section {
  padding: 48px 0;
  background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.09) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(142, 22, 22, 0.08) 0%, transparent 50%),
              rgba(10, 17, 40, 0.65);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
}

.fashion-feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 45px;
}

.fashion-feature-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition-smooth);
}

.fashion-feature-item:hover {
  border-color: var(--gold-bright);
  background: rgba(212, 175, 55, 0.08);
  transform: translateY(-4px);
}

.fashion-feature-item i {
  font-size: 1.5rem;
  color: var(--gold-bright);
  animation: floatBadge 3s infinite;
}

.fashion-feature-item h5 {
  font-size: 0.92rem;
  color: #FFF;
  font-weight: 700;
}

.fashion-feature-item p {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.fashion-brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.fashion-brand-card {
  background: var(--surface-card);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.fashion-brand-card:hover {
  border-color: var(--gold-bright);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
  background: var(--surface-card-hover);
}

/* Brand Fashion Model Photo Showcase */
.brand-photo-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 310px;
  margin-bottom: 16px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: #060D20;
}

.brand-fashion-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.fashion-brand-card:hover .brand-fashion-img {
  transform: scale(1.08);
}

.brand-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 11, 26, 0.5) 0%, transparent 40%, rgba(5, 11, 26, 0.9) 100%);
  pointer-events: none;
}

/* Top Verified & Pill Badges on Photo */
.brand-photo-top-bar {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  z-index: 2;
}

.brand-verified-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #2E7D32;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

.brand-badge-pill {
  background: rgba(10, 17, 40, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold-primary);
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 10px;
  height: 25px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.brand-badge-pill i {
  font-size: 0.65rem;
  color: var(--gold-bright);
}

/* Floating Clean White Logo Plaque */
.brand-floating-logo-tile {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: #FFFFFF;
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.4);
  transition: var(--transition-smooth);
  z-index: 2;
}

.fashion-brand-card:hover .brand-floating-logo-tile {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.45);
}

.brand-logo-img {
  width: 100%;
  height: 42px;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

.brand-card-body {
  margin-bottom: 16px;
}

.brand-sub-heading {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-light);
  font-weight: 800;
  margin-bottom: 4px;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
}

.fashion-brand-card:hover .brand-title {
  color: var(--gold-bright);
}

.brand-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}

.fashion-brand-card:hover .brand-card-body h4 {
  color: var(--gold-bright);
  letter-spacing: 0.5px;
}

.brand-card-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.brand-clothing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.clothing-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.15);
  color: var(--ivory-muted);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.clothing-tag:hover {
  background: var(--gold-gradient);
  color: #050B1A;
  border-color: transparent;
  transform: scale(1.05);
}

.brand-card-action {
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  padding-top: 14px;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.brand-action-info-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.dist-tag {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.dist-tag i {
  color: var(--gold-bright);
  font-size: 0.72rem;
}

.rate-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.brand-whatsapp-btn {
  width: 100%;
  padding: 10px 14px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.15);
  white-space: nowrap;
}

.brand-whatsapp-btn:hover {
  background: #1EBE5D;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

.brand-whatsapp-btn i {
  font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   About & Heritage Story
   -------------------------------------------------------------------------- */
.heritage-section {
  padding: 48px 0;
  background: radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.06) 0%, transparent 60%),
              rgba(16, 27, 56, 0.4);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.heritage-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.heritage-logo-showcase {
  position: relative;
  text-align: center;
}

.logo-big-emblem {
  width: 320px;
  height: 320px;
  margin: 0 auto;
  border-radius: 50%;
  border: 4px solid var(--gold-primary);
  padding: 8px;
  background: radial-gradient(circle, #FFF7E6 0%, #E6CA85 100%);
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.35);
  position: relative;
  transition: var(--transition-smooth);
}

.logo-big-emblem:hover {
  transform: scale(1.04) rotate(3deg);
  box-shadow: 0 0 65px rgba(246, 226, 122, 0.6);
}

.logo-big-emblem img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.heritage-decor-ring {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border: 1px dashed rgba(212, 175, 55, 0.4);
  border-radius: 50%;
  animation: rotateRing 30s linear infinite;
  pointer-events: none;
}

.heritage-values-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.value-card {
  background: var(--surface-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition-smooth);
}

.value-card:hover {
  border-color: var(--gold-light);
  transform: translateY(-6px) scale(1.02);
  background: var(--surface-card-hover);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.value-card i {
  font-size: 1.8rem;
  color: var(--gold-light);
  margin-bottom: 12px;
  display: inline-block;
  transition: var(--transition-smooth);
}

.value-card:hover i {
  transform: rotate(10deg) scale(1.15);
  color: var(--gold-bright);
}

.value-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 6px;
}

.value-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Category Showcase Section
   -------------------------------------------------------------------------- */
.categories-section {
  padding: 48px 0 35px;
}

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

.category-card {
  position: relative;
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: var(--transition-smooth);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  border-color: var(--gold-light);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.category-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.category-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-card:hover .category-img-wrap img {
  transform: scale(1.09);
}

.category-content {
  padding: 20px;
  background: linear-gradient(180deg, var(--surface-card) 0%, var(--surface-navy) 100%);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.category-content h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: #FFFFFF;
  margin-bottom: 6px;
  transition: var(--transition-smooth);
}

.category-card:hover .category-content h3 {
  color: var(--gold-bright);
}

.category-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.category-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-light);
  transition: var(--transition-smooth);
}

.category-card:hover .category-link {
  color: var(--gold-bright);
  gap: 12px;
}

/* --------------------------------------------------------------------------
   Featured Products & Catalog
   -------------------------------------------------------------------------- */
.products-section {
  padding: 48px 0 50px;
}

.product-filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-tab {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--text-muted);
  padding: 9px 22px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--gold-gradient);
  background-size: 200% auto;
  animation: goldShimmer 3s linear infinite;
  color: var(--deep-navy);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}

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

.product-card {
  background: var(--surface-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: rgba(246, 226, 122, 0.6);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--crimson-accent);
  color: #FFF;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: floatBadge 3.5s ease-in-out infinite;
}

.product-badge.gold-tag {
  background: var(--gold-gradient);
  color: var(--deep-navy);
}

.product-thumb {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: #080E1F;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-thumb img {
  transform: scale(1.08);
}

.quick-view-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 11, 26, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.product-card:hover .quick-view-overlay {
  opacity: 1;
}

.product-body {
  padding: 22px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-category-name {
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--gold-light);
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 6px;
}

.product-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
  line-height: 1.3;
  transition: var(--transition-smooth);
}

.product-card:hover .product-title {
  color: var(--gold-bright);
}

.rating-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #FFB800;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.rating-stars span {
  color: var(--text-dim);
  font-size: 0.78rem;
  margin-left: 6px;
}

.product-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-box {
  display: flex;
  flex-direction: column;
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.action-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(255, 255, 255, 0.05);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.action-btn:hover {
  background: var(--gold-gradient);
  color: var(--deep-navy);
  border-color: transparent;
  transform: scale(1.12);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}

.action-btn.btn-whatsapp-sm {
  background: #25D366;
  border-color: #25D366;
}

.action-btn.btn-whatsapp-sm:hover {
  background: #1EBE5D;
  color: #FFF;
  box-shadow: 0 0 12px rgba(37, 211, 102, 0.6);
}

/* --------------------------------------------------------------------------
   Custom Hamper & WhatsApp Quick Order Builder
   -------------------------------------------------------------------------- */
.hamper-builder-section {
  padding: 90px 0;
  position: relative;
}

.hamper-box-wrapper {
  background: var(--surface-card);
  border: 2px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hamper-visual {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.hamper-visual img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hamper-box-wrapper:hover .hamper-visual img {
  transform: scale(1.04);
}

.hamper-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hamper-item-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.hamper-item-select:hover,
.hamper-item-select.checked {
  background: rgba(212, 175, 55, 0.14);
  border-color: var(--gold-light);
  transform: translateX(4px);
}

.hamper-checkbox-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamper-checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold-primary);
  cursor: pointer;
}

.hamper-item-info h5 {
  font-size: 0.95rem;
  color: #FFF;
}

.hamper-item-info span {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.hamper-summary-bar {
  margin-top: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.total-hamper-price {
  font-family: var(--font-serif);
  font-weight: 800;
  color: var(--gold-bright);
}

/* --------------------------------------------------------------------------
   Testimonials & Social Proof (HORIZONTAL SCROLL / CAROUSEL)
   -------------------------------------------------------------------------- */
.testimonials-section {
  padding: 48px 0;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.06) 0%, transparent 65%),
              rgba(10, 17, 40, 0.7);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  overflow: hidden;
  position: relative;
}

.testimonials-header-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 35px;
}

.testimonials-nav-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonials-swipe-pill {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.testimonials-btn-group {
  display: flex;
  gap: 8px;
}

.testi-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface-card);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 1rem;
}

.testi-nav-btn:hover {
  background: var(--gold-gradient);
  color: #050B1A;
  border-color: transparent;
  transform: scale(1.08);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

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

.testimonials-scroll-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.testimonials-scroll-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 10px 4px 25px 4px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}

.testimonials-scroll-track::-webkit-scrollbar {
  display: none;
}

.testimonials-scroll-track:active {
  cursor: grabbing;
}

.testimonial-card-scroll {
  flex: 0 0 380px;
  max-width: 380px;
  scroll-snap-align: start;
  background: var(--surface-card);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
  position: relative;
}

.testimonial-card-scroll:hover {
  border-color: var(--gold-bright);
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(212, 175, 55, 0.2);
}

.testi-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.testi-verified-chip {
  background: rgba(46, 204, 113, 0.12);
  border: 1px solid rgba(46, 204, 113, 0.35);
  color: #2ecc71;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.quote-icon-corner {
  font-size: 1.4rem;
  color: rgba(212, 175, 55, 0.3);
  margin-bottom: 8px;
  display: block;
}

.testi-body {
  flex-grow: 1;
  margin-bottom: 18px;
}

.testi-body .testimonial-text {
  font-size: 0.92rem;
  color: var(--ivory-muted);
  line-height: 1.65;
  font-style: italic;
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding-top: 14px;
}

.user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  background: var(--surface-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--gold-bright);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.testimonial-card-scroll:hover .user-avatar {
  transform: rotate(10deg) scale(1.08);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.user-details h5 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.user-role-text {
  font-size: 0.78rem;
  color: var(--text-dim);
  display: block;
  margin-bottom: 3px;
}

.user-city-tag {
  font-size: 0.74rem;
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .testimonial-card-scroll {
    flex: 0 0 310px;
    max-width: 310px;
    padding: 20px;
  }
}

/* --------------------------------------------------------------------------
   FAQ Accordion
   -------------------------------------------------------------------------- */
.faq-section {
  padding: 45px 0;
}

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

.faq-item {
  background: var(--surface-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item.active {
  border-color: var(--gold-primary);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.faq-header {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  transition: var(--transition-smooth);
}

.faq-header:hover h4 {
  color: var(--gold-bright);
  transform: translateX(4px);
}

.faq-header h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #FFFFFF;
  transition: var(--transition-smooth);
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--gold-light);
  transition: transform 0.35s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--gold-bright);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.faq-item.active .faq-content {
  max-height: 250px;
  padding: 0 24px 20px;
}

/* --------------------------------------------------------------------------
   Contact & Inquiry Section
   -------------------------------------------------------------------------- */
.contact-section {
  padding: 48px 0;
  background: radial-gradient(circle at 10% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
              rgba(16, 27, 56, 0.5);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-card-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 0;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition-smooth);
}

.contact-detail-item:hover {
  transform: translateX(6px);
}

.contact-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--surface-card);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.contact-detail-item:hover .contact-icon-box {
  background: var(--gold-gradient);
  color: #050B1A;
  transform: scale(1.1);
}

.contact-text-box h5 {
  font-size: 0.9rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-text-box p,
.contact-text-box a {
  font-size: 1.05rem;
  color: #FFF;
  font-weight: 600;
}

.contact-text-box a:hover {
  color: var(--gold-bright);
}

.contact-form-card {
  background: var(--surface-card);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
}

.contact-form-card:hover {
  border-color: rgba(212, 175, 55, 0.55);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 13px 18px;
  background: rgba(5, 11, 26, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-md);
  color: #FFFFFF;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--gold-bright);
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.35);
  background: rgba(5, 11, 26, 0.85);
}

.form-control::placeholder {
  color: var(--text-dim);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* --------------------------------------------------------------------------
   Thank You / Success Card Styles
   -------------------------------------------------------------------------- */
.thank-you-box {
  padding: 15px 10px;
  animation: modalFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.15);
  border: 2px solid #25D366;
  color: #25D366;
  font-size: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px auto;
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.45);
  animation: checkPulse 2s infinite ease-in-out;
}

@keyframes checkPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(37, 211, 102, 0.4); }
  50% { transform: scale(1.08); box-shadow: 0 0 35px rgba(37, 211, 102, 0.75); }
}

.thank-you-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.thank-you-subtitle {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 20px auto;
}

.thank-you-summary-card {
  background: rgba(5, 11, 26, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-bottom: 24px;
  text-align: left;
}

.thank-you-summary-card .summary-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.92rem;
}

.thank-you-summary-card .summary-row:last-child {
  border-bottom: none;
}

.thank-you-summary-card .summary-row span {
  color: var(--text-dim);
}

.thank-you-summary-card .summary-row strong {
  color: var(--gold-bright);
}

.thank-you-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--deep-navy);
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  padding: 48px 0 25px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-about p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 18px 0;
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  transition: var(--transition-smooth);
}

.social-btn:hover {
  background: var(--gold-gradient);
  color: var(--deep-navy);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold-gradient);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  display: inline-block;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-bright);
  transform: translateX(6px);
}

.newsletter-box {
  display: flex;
  margin-top: 15px;
}

.newsletter-box input {
  flex-grow: 1;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  color: #FFF;
  font-size: 0.88rem;
}

.newsletter-box button {
  padding: 12px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.footer-bottom {
  padding-top: 25px;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   Floating Controls (WhatsApp & Cart Drawer)
   -------------------------------------------------------------------------- */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: var(--transition-smooth);
}

.floating-whatsapp-btn:hover {
  transform: scale(1.12) rotate(8deg);
}

.floating-whatsapp-btn .pulse-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: ripple 2s infinite ease-out;
}

.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 35px;
  width: 48px;
  height: 48px;
  background: var(--surface-card);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 998;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gold-gradient);
  color: var(--deep-navy);
  transform: translateY(-5px) scale(1.08);
}

/* --------------------------------------------------------------------------
   Cart / Quote Drawer Modal
   -------------------------------------------------------------------------- */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.cart-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: var(--surface-navy);
  border-left: 2px solid var(--gold-primary);
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.8);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-drawer.open {
  right: 0;
}

.cart-drawer-header {
  padding: 22px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer-header h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: #FFFFFF;
}

.close-drawer-btn {
  background: none;
  border: none;
  color: var(--gold-light);
  font-size: 1.5rem;
  cursor: pointer;
}

.cart-drawer-body {
  padding: 20px;
  overflow-y: auto;
  flex-grow: 1;
}

.cart-empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-dim);
}

.cart-empty-state i {
  font-size: 3.5rem;
  color: rgba(212, 175, 55, 0.3);
  margin-bottom: 15px;
  animation: floatBadge 3s infinite;
}

.cart-item-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-details h5 {
  font-size: 0.95rem;
  color: #FFF;
}

.cart-qty-ctrl {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.qty-btn {
  width: 24px;
  height: 24px;
  background: var(--surface-card);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #FFF;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.8rem;
  transition: var(--transition-fast);
}

.qty-btn:hover {
  background: var(--gold-gradient);
  color: #050B1A;
}

.cart-remove-btn {
  color: #FF5A5A;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  padding: 6px;
  transition: var(--transition-fast);
}

.cart-remove-btn:hover {
  transform: scale(1.2);
}

.cart-drawer-footer {
  padding: 22px;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  background: rgba(5, 11, 26, 0.8);
}

.cart-subtotal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   Quick View Modal
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--surface-navy);
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 780px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  animation: heroTitleFade 0.4s ease forwards;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 18px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #FFF;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 1.1rem;
}

.modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-body {
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* --------------------------------------------------------------------------
   Toast Feedback Notification
   -------------------------------------------------------------------------- */
.toast-notice {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: var(--surface-card);
  border: 1px solid var(--gold-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  border-radius: var(--radius-md);
  padding: 14px 22px;
  color: #FFF;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition-bounce);
}

.toast-notice.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-notice i {
  color: var(--gold-bright);
  font-size: 1.3rem;
}

/* --------------------------------------------------------------------------
   Mobile & Tablet Responsiveness
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   Mobile App Bottom Navigation Bar
   -------------------------------------------------------------------------- */
.mobile-bottom-bar {
  display: none;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 68px; /* Prevent bottom bar from overlapping content */
  }

  .mobile-bottom-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background: rgba(5, 11, 26, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    align-items: center;
    justify-content: space-around;
    z-index: 1999;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.7);
    padding: 0 6px;
  }

  .mobile-bottom-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: var(--text-dim);
    font-size: 0.72rem;
    font-weight: 600;
    flex: 1;
    padding: 6px 0;
    transition: var(--transition-fast);
  }

  .mobile-bottom-item i {
    font-size: 1.15rem;
    transition: transform 0.2s ease;
  }

  .mobile-bottom-item.active,
  .mobile-bottom-item:hover {
    color: var(--gold-bright);
  }

  .mobile-bottom-item.active i {
    transform: scale(1.15);
    color: var(--gold-bright);
  }

  .mobile-bottom-item.highlight-whatsapp {
    color: #25D366;
  }

  .mobile-bottom-item.highlight-whatsapp i {
    font-size: 1.3rem;
  }

  .mobile-badge-wrap {
    position: relative;
    display: inline-block;
  }

  .cart-badge-mobile {
    position: absolute;
    top: -5px;
    right: -10px;
    background: var(--crimson-glow);
    color: #FFF;
    font-size: 0.65rem;
    font-weight: 800;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--deep-navy);
  }
}

/* --------------------------------------------------------------------------
   Responsive Breakpoints (Tablet & Mobile Perfection)
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .fashion-brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .fashion-feature-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-stats {
    max-width: 500px;
    margin: 0 auto;
  }
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .heritage-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 35px;
  }
  .network-showcase-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .top-notice-bar {
    font-size: 0.75rem;
    padding: 6px 0;
  }
  .notice-text {
    display: none;
  }

  .header {
    padding: 10px 0;
  }
  .brand-logo {
    gap: 8px;
  }
  .brand-logo-main-img {
    height: 52px;
    max-width: 230px;
  }
  .footer-logo-img {
    height: 56px;
    max-width: 240px;
  }

  .btn-whatsapp-header {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  /* Mobile Slide-in Drawer Menu */
  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(5, 11, 26, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 40px 24px;
    gap: 16px;
    transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border-right: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 10px 0 35px rgba(0, 0, 0, 0.8);
    z-index: 2005;
    overflow-y: auto;
    align-items: flex-start;
  }
  .nav-menu.open {
    left: 0;
  }
  .nav-link {
    font-size: 1.05rem;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .hamburger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: var(--gold-bright);
    font-size: 1.35rem;
    background: none;
    border: none;
    cursor: pointer;
  }

  /* Hero Mobile Optimization */
  .hero-section {
    padding: 25px 0 35px;
    min-height: auto;
  }
  .hero-title {
    font-size: 1.85rem;
    line-height: 1.25;
    margin-bottom: 14px;
  }
  .hero-subtitle {
    font-size: 0.92rem;
    margin-bottom: 22px;
    line-height: 1.6;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-bottom: 25px;
  }
  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-stats {
    gap: 10px;
    padding-top: 16px;
  }
  .stat-item h4 {
    font-size: 1.35rem;
  }
  .stat-item p {
    font-size: 0.72rem;
  }
  .hero-img-box img {
    height: auto;
    max-height: 360px;
    object-fit: cover;
    object-position: top center;
  }
  .hero-bottom-badge-strip {
    padding: 12px 16px;
    gap: 10px;
  }

  /* About Us Mobile */
  .logo-big-emblem {
    width: 220px;
    height: 220px;
  }
  .heritage-content .section-title {
    text-align: center !important;
  }

  /* Network Section Mobile */
  .network-showcase-section {
    padding: 35px 0;
  }
  .network-map-caption {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .network-actions {
    flex-direction: column;
    width: 100%;
  }
  .network-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Fashion Bazaar Mobile */
  .fashion-bazaar-section {
    padding: 35px 0;
  }
  .fashion-feature-strip {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 25px;
  }
  .fashion-brands-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .brand-photo-wrap {
    height: 280px;
  }

  /* Products & Categories Mobile */
  .categories-section {
    padding: 35px 0 25px;
  }
  .products-section {
    padding: 35px 0 40px;
  }
  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .category-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .product-filter-tabs {
    gap: 6px;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .filter-tab {
    white-space: nowrap;
    padding: 7px 16px;
    font-size: 0.8rem;
  }

  /* Testimonials Mobile */
  .testimonials-section {
    padding: 35px 0;
  }
  .testimonial-card-scroll {
    flex: 0 0 295px;
    max-width: 295px;
    padding: 20px;
  }

  /* Trust & Values Mobile */
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Contact Form Mobile */
  .contact-section {
    padding: 35px 0;
  }
  .contact-form-card {
    padding: 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Modal Mobile */
  .modal-card {
    grid-template-columns: 1fr;
    max-height: 88vh;
    overflow-y: auto;
  }
  .modal-img-wrap {
    height: 200px;
  }
  .modal-body {
    padding: 20px;
  }

  /* Footer Mobile */
  .footer {
    padding: 35px 0 20px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .btn-whatsapp-header span {
    display: none;
  }
  .btn-whatsapp-header {
    padding: 8px 10px;
    border-radius: 50%;
  }
  .btn-whatsapp-header i {
    font-size: 1.1rem;
    margin: 0;
  }
  .hero-title {
    font-size: 1.65rem;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 15px;
  }
  .testimonial-card-scroll {
    flex: 0 0 270px;
    max-width: 270px;
    padding: 18px;
  }
}

