/* ============================================
   KANNAUJ PERFUMERY - LUXURY DESIGN SYSTEM
   Heritage meets Modern Luxury
   ============================================ */

/* ============================================
   GOOGLE FONTS IMPORT
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================
   NAVIGATION HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  transition: all var(--transition-normal);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.97);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6), 0 2px 12px rgba(212, 175, 55, 0.1);
  border-bottom-color: rgba(212, 175, 55, 0.25);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-cream);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.header-logo:hover {
  color: var(--color-gold);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-gray-light);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  background: var(--color-gold);
  transition: all var(--transition-normal);
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

/* ============================================
   MOBILE NAVIGATION - PREMIUM DESIGN
   ============================================ */
.mobile-nav {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, #000000 0%, #0a0a0a 50%, #000000 100%);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
  overflow-y: auto;
  display: none;
}

.mobile-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.mobile-nav.active {
  transform: translateX(0);
  display: block;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: var(--spacing-lg) var(--spacing-md);
  gap: var(--spacing-sm);
  position: relative;
  z-index: 2;
}

.mobile-nav-links .nav-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 1.25rem var(--spacing-lg);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  background: transparent;
  transition: color 0.3s ease, background-color 0.3s ease;
  display: block;
  position: relative;
}

.mobile-nav-links .nav-link:hover,
.mobile-nav-links .nav-link.active {
  color: rgba(255, 255, 255, 1);
  background: rgba(255, 255, 255, 0.05);
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gradient-gold);
  z-index: 1001;
  width: 0;
  transition: width 0.1s ease;
}

/* ============================================
   BREADCRUMB NAVIGATION - MODERN STYLE
   ============================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--spacing-lg);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all var(--transition-fast);
  position: relative;
}

.breadcrumb a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--color-gold);
}

.breadcrumb a:hover::after {
  width: 100%;
}

.breadcrumb-separator {
  color: rgba(212, 175, 55, 0.4);
  font-weight: 300;
}

.breadcrumb-current {
  color: var(--color-gold);
  font-weight: 600;
}

/* ============================================
   PAGE HERO (FOR INTERNAL PAGES) - MODERN DESIGN
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #0a0a0a 100%);
  padding: 4rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

/* Animated gradient overlay */
.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(212, 175, 55, 0.03) 25%,
      rgba(212, 175, 55, 0.05) 50%,
      rgba(212, 175, 55, 0.03) 75%,
      transparent 100%);
  animation: shimmer 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shimmer {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(25%);
  }
}

/* Radial glow effect */
.page-hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  background: linear-gradient(135deg, #ffffff 0%, #f0d78c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(212, 175, 55, 0.3);
  line-height: 1.2;
}

.page-hero p {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  letter-spacing: 0.02em;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================
   PAGE LOAD ANIMATION
   ============================================ */
body {
  animation: pageLoad 0.6s ease;
}

@keyframes pageLoad {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Add padding to body for fixed header */
body {
  padding-top: 80px;
}

/* ============================================
   FORM STYLES
   ============================================ */
.form-group {
  margin-bottom: var(--spacing-md);
}

.form-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-cream);
  margin-bottom: var(--spacing-xs);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-cream);
  background: var(--color-charcoal);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 0;
  transition: all var(--transition-normal);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-gray);
}

/* ============================================
   CONTENT SPACING ADJUSTMENTS
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background: var(--color-black);
  color: var(--color-cream);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  padding-top: 80px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   DESIGN TOKENS - LUXURY COLOR PALETTE
   ============================================ */
:root {
  /* Primary Colors - Deeper, Richer Blacks */
  --color-black: #000000;
  --color-charcoal: #0f0f0f;
  --color-charcoal-light: #1a1a1a;

  /* Accent Colors - More Vibrant */
  --color-emerald: #1a4d2e;
  --color-emerald-light: #2d6a4f;
  --color-emerald-bright: #3d8b5f;
  --color-maroon: #5c0f0f;
  --color-maroon-light: #7d1f1f;
  --color-gold: #d4af37;
  --color-gold-light: #f0d78c;
  --color-gold-dark: #b8941f;

  /* Neutral Colors - Softer, More Elegant */
  --color-cream: #faf8f3;
  --color-cream-dark: #e8e6e1;
  --color-gray: #999999;
  --color-gray-light: #c4c4c4;
  --color-gray-dark: #666666;

  /* Gradients - More Sophisticated */
  --gradient-hero: linear-gradient(135deg, #000000 0%, #1a4d2e 40%, #0f0f0f 80%, #000000 100%);
  --gradient-card: linear-gradient(145deg, #0f0f0f 0%, #1a1a1a 100%);
  --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f0d78c 50%, #d4af37 100%);
  --gradient-emerald: linear-gradient(135deg, #1a4d2e 0%, #3d8b5f 100%);

  /* Shadows - Layered, Premium */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6), 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.7), 0 6px 24px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px rgba(212, 175, 55, 0.4), 0 0 80px rgba(212, 175, 55, 0.2);
  --shadow-glow-emerald: 0 0 40px rgba(26, 77, 46, 0.5), 0 0 80px rgba(26, 77, 46, 0.3);

  /* Spacing - More Refined */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  --spacing-2xl: 8rem;
  --spacing-3xl: 10rem;

  /* Typography */
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;

  /* Transitions - Smoother, More Luxurious */
  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-luxury: 0.85s cubic-bezier(0.4, 0, 0.1, 1);
  --transition-elastic: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============================================
   TYPOGRAPHY SYSTEM
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-cream);
}

h1 {
  font-size: clamp(2.75rem, 6.5vw, 5.5rem);
  letter-spacing: -0.025em;
  font-weight: 800;
}

h2 {
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  letter-spacing: -0.015em;
  font-weight: 700;
}

h3 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  letter-spacing: -0.01em;
  font-weight: 600;
}

h4 {
  font-size: clamp(1.35rem, 2.75vw, 2.25rem);
  letter-spacing: 0;
  font-weight: 600;
}

p {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  color: var(--color-gray-light);
}

.text-gold {
  color: var(--color-gold);
}

.text-emerald {
  color: var(--color-emerald-light);
}

.text-gradient {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   LAYOUT & CONTAINERS
   ============================================ */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-lg) 0;
  position: relative;
}

.section-large {
  padding: var(--spacing-xl) 0;
}

/* ============================================
   SPACING UTILITIES
   ============================================ */
.mb-xs {
  margin-bottom: var(--spacing-xs);
}

.mb-sm {
  margin-bottom: var(--spacing-sm);
}

.mb-md {
  margin-bottom: var(--spacing-md);
}

.mb-lg {
  margin-bottom: var(--spacing-lg);
}

.mb-xl {
  margin-bottom: var(--spacing-xl);
}

.mt-xs {
  margin-top: var(--spacing-xs);
}

.mt-sm {
  margin-top: var(--spacing-sm);
}

.mt-md {
  margin-top: var(--spacing-md);
}

.mt-lg {
  margin-top: var(--spacing-lg);
}

.mt-xl {
  margin-top: var(--spacing-xl);
}

.text-center {
  text-align: center;
}

/* ============================================
   BUTTONS - LUXURY STYLE
   ============================================ */
.btn {
  display: inline-block;
  padding: 1.125rem 3rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--color-black);
  font-weight: 700;
}

.btn-primary:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.1);
}

.btn-primary:active {
  transform: translateY(-1px) scale(1);
}

.btn-outline {
  background: transparent;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--gradient-gold);
  color: var(--color-black);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
  border-color: transparent;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 600;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #20ba5a 0%, #1ca54d 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5), 0 4px 16px rgba(37, 211, 102, 0.3);
}

/* Button Ripple Effect - Enhanced */
.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transform: translate(-50%, -50%);
  transition: width var(--transition-slow), height var(--transition-slow);
}

.btn:hover::before {
  width: 350px;
  height: 350px;
}

/* ============================================
   CARDS - PREMIUM DESIGN
   ============================================ */
.card {
  background: var(--gradient-card);
  border: 1px solid rgba(212, 175, 55, 0.12);
  padding: var(--spacing-lg);
  border-radius: 0;
  transition: all var(--transition-luxury);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-luxury);
}

.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-luxury);
  pointer-events: none;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover::after {
  opacity: 1;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-glow), var(--shadow-lg);
  border-color: rgba(212, 175, 55, 0.35);
}

.card-product {
  text-align: center;
  padding: var(--spacing-md);
  background: var(--gradient-card);
}

.card-product img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  margin-bottom: var(--spacing-md);
  transition: all var(--transition-luxury);
  filter: brightness(0.95) contrast(1.05);
}

.card-product:hover img {
  transform: scale(1.08);
  filter: brightness(1.05) contrast(1.1);
}

.card-product h3 {
  margin-bottom: var(--spacing-sm);
  font-size: 1.85rem;
  color: var(--color-gold);
  transition: color var(--transition-normal);
}

.card-product:hover h3 {
  color: var(--color-gold-light);
}

.card-product p {
  font-size: 1.05rem;
  color: var(--color-gray-light);
  line-height: 1.7;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: var(--gradient-hero);
  background-size: 200% 200%;
  animation: gradientShift 20s ease infinite;
  overflow: hidden;
  margin-top: -73px;
  padding-top: 73px;
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  padding: var(--spacing-md);
}

.hero h1 {
  margin-bottom: var(--spacing-md);
  opacity: 0;
  animation: fadeInUp 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.3s;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.75vw, 2.25rem);
  font-weight: 400;
  font-style: italic;
  color: var(--color-gold-light);
  margin-bottom: var(--spacing-lg);
  opacity: 0;
  animation: fadeInUp 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.6s;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-cta {
  opacity: 0;
  animation: fadeInUp 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.9s;
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll Animation Classes */
.fade-in {
  opacity: 0;
  transition: opacity var(--transition-luxury);
}

.fade-in.visible {
  opacity: 1;
}

.slide-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all var(--transition-luxury);
}

.slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all var(--transition-luxury);
}

.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all var(--transition-luxury);
}

.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   GRID LAYOUTS
   ============================================ */
.grid {
  display: grid;
  gap: var(--spacing-md);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-5 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  position: relative;
}

.section-header h2 {
  margin-bottom: var(--spacing-sm);
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-gold);
}

.section-header p {
  max-width: 700px;
  margin: var(--spacing-md) auto 0;
  font-size: 1.125rem;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
  text-align: center;
}

.mb-sm {
  margin-bottom: var(--spacing-sm);
}

.mb-md {
  margin-bottom: var(--spacing-md);
}

.mb-lg {
  margin-bottom: var(--spacing-lg);
}

.mb-xl {
  margin-bottom: var(--spacing-xl);
}

.mt-sm {
  margin-top: var(--spacing-sm);
}

.mt-md {
  margin-top: var(--spacing-md);
}

.mt-lg {
  margin-top: var(--spacing-lg);
}

.mt-xl {
  margin-top: var(--spacing-xl);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  :root {
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 5rem;
  }

  .section {
    padding: var(--spacing-lg) 0;
  }

  .container {
    padding: 0 var(--spacing-sm);
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .grid-5 {
    grid-template-columns: 1fr;
  }

  .card {
    padding: var(--spacing-md);
  }

  .btn {
    padding: 0.875rem 2rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 80vh;
  }

  .card-product img {
    height: 250px;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Focus Styles */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

/* ============================================
   SMOOTH SCROLLING ENHANCEMENTS
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--spacing-xl);
  align-items: start;
  margin-top: var(--spacing-lg);
}

.about-text h3 {
  color: var(--color-gold);
}

.about-stats {
  display: grid;
  gap: var(--spacing-md);
}

.stat-card {
  text-align: center;
  padding: var(--spacing-md);
}

.stat-card h3 {
  font-size: 3rem;
  margin-bottom: var(--spacing-xs);
}

.stat-card p {
  font-size: 1rem;
  color: var(--color-gray);
}

/* ============================================
   WHOLESALE SECTION
   ============================================ */
.wholesale-section {
  background: var(--color-charcoal);
}

.wholesale-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.wholesale-benefits {
  list-style: none;
  padding: 0;
}

.wholesale-benefits li {
  padding: var(--spacing-xs) 0;
  font-size: 1.125rem;
  color: var(--color-gray-light);
}

.wholesale-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-lg);
}

.contact-card {
  padding: var(--spacing-md);
}

.contact-card h4 {
  font-family: var(--font-sans);
  font-size: 1.25rem;
}

.contact-card a {
  transition: color var(--transition-fast);
}

.contact-card a:hover {
  color: var(--color-gold) !important;
}

.map-container {
  border: 2px solid rgba(212, 175, 55, 0.2);
  overflow: hidden;
  /* height: 100%;
  min-height: 500px; */
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-charcoal);
  padding: var(--spacing-xl) 0 var(--spacing-md);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-brand h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
}

.footer-brand p {
  font-style: italic;
  color: var(--color-gray);
}

.footer h4 {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  color: var(--color-gold);
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: var(--spacing-xs);
}

.footer ul li a {
  color: var(--color-gray-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer ul li a:hover {
  color: var(--color-gold);
}

.footer-contact p {
  margin-bottom: var(--spacing-xs);
  color: var(--color-gray-light);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-bottom p {
  font-size: 0.9rem;
  color: var(--color-gray);
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all var(--transition-normal);
  opacity: 0;
  transform: translateY(100px);
}

.whatsapp-float.visible {
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
}

/* ============================================
   ICON WRAPPER
   ============================================ */
.icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .wholesale-content {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Tablet - Small */
@media (max-width: 768px) {

  /* Hide desktop navigation */
  .header-nav {
    display: none;
  }

  /* Show mobile menu toggle */
  .menu-toggle {
    display: flex;
  }

  /* Show mobile navigation when active */
  .mobile-nav {
    display: block;
  }

  /* Typography adjustments */
  h1 {
    font-size: clamp(2.25rem, 8vw, 3.5rem);
  }

  h2 {
    font-size: clamp(1.85rem, 6vw, 2.75rem);
  }

  h3 {
    font-size: clamp(1.5rem, 5vw, 2.25rem);
  }

  /* Section spacing */
  .section {
    padding: var(--spacing-md) 0;
  }

  .section-large {
    padding: var(--spacing-lg) 0;
  }

  /* Grid adjustments */
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-5 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
  }

  /* About section */
  .about-content {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
  }

  .stat-card {
    padding: var(--spacing-md);
  }

  /* Product cards */
  .card-product img {
    height: 280px;
  }

  /* Wholesale section */
  .wholesale-content {
    grid-template-columns: 1fr;
  }

  .wholesale-image {
    order: -1;
  }

  /* Contact grid */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  /* Hero CTA */
  .hero-cta {
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .hero-cta .btn {
    width: 100%;
    text-align: center;
  }

  /* Button sizing */
  .btn {
    padding: 1rem 2rem;
    font-size: 0.9rem;
  }
}

/* Mobile - Large */
@media (max-width: 640px) {
  .container {
    padding: 0 var(--spacing-sm);
  }

  /* Header adjustments */
  .header-container {
    padding: 1rem 1.5rem;
  }

  .header-logo {
    font-size: 1.25rem;
  }

  /* Grid to single column */
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-5 {
    grid-template-columns: 1fr;
  }

  /* About stats */
  .about-stats {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }

  /* Product cards */
  .card-product img {
    height: 250px;
  }

  /* Section headers */
  .section-header p {
    font-size: 1.05rem;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand,
  .footer-links,
  .footer-products,
  .footer-contact {
    grid-column: 1;
  }

  /* Spacing adjustments */
  .section {
    padding: var(--spacing-md) 0;
  }

  .section-large {
    padding: var(--spacing-md) 0;
  }
}

/* Mobile - Small */
@media (max-width: 480px) {

  /* Hero adjustments */
  .hero-cta {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
    padding: 1rem 1.5rem;
  }

  /* Card padding */
  .card {
    padding: var(--spacing-md);
  }

  .card-product {
    padding: var(--spacing-sm);
  }

  .card-product img {
    height: 220px;
  }

  /* Typography */
  h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  h2 {
    font-size: clamp(1.65rem, 8vw, 2.5rem);
  }

  p {
    font-size: 1rem;
  }

  /* Button adjustments */
  .btn {
    padding: 0.875rem 1.75rem;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
  }

  /* Wholesale benefits */
  .wholesale-benefits li {
    font-size: 0.95rem;
  }

  /* Contact cards */
  .contact-card {
    padding: var(--spacing-md);
  }

  /* Map container */
  .map-container iframe {
    height: 300px;
  }
}

/* ============================================
   ICON WRAPPER - PREMIUM STYLING
   ============================================ */
.icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-normal);
}

.card:hover .icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.icon-wrapper svg {
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
  transition: filter var(--transition-normal);
}

.card:hover .icon-wrapper svg {
  filter: drop-shadow(0 4px 16px rgba(212, 175, 55, 0.5));
}

/* ============================================
   MAP ACTION BUTTONS - MODERN DESIGN
   ============================================ */
.map-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0;
  margin-bottom: 0;
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: none;
}

.map-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-map-primary {
  background: linear-gradient(135deg, #2d5016 0%, #3d6a1f 100%);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn-map-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-map-primary:hover::before {
  left: 100%;
}

.btn-map-primary:hover {
  background: linear-gradient(135deg, #3d6a1f 0%, #4d7a2f 100%);
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.5);
  transform: translateY(-2px);
  color: white;
}

.btn-map-outline {
  background: transparent;
  color: #3d6a1f;
  border: 2px solid #3d6a1f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: none;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn-map-outline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: linear-gradient(135deg, #2d5016 0%, #3d6a1f 100%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
  z-index: -1;
}

.btn-map-outline:hover::before {
  width: 300%;
  height: 300%;
}

.btn-map-outline:hover {
  color: white;
  border-color: #3d6a1f;
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.4);
  transform: translateY(-2px);
}

.btn-map-primary svg,
.btn-map-outline svg {
  flex-shrink: 0;
  margin-right: 0.5rem;
}

/* Responsive map buttons */
@media (max-width: 640px) {
  .map-container iframe {
    height: 350px;
  }

  .map-actions {
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
  }

  .map-actions .btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .map-container iframe {
    height: 300px;
  }
}

/* ============================================
   ABOUT PAGE SPECIFIC STYLES
   ============================================ */

/* Responsive images */
.responsive-img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

/* About content grid */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: start;
  margin-bottom: var(--spacing-xl);
}

/* About image container */
.about-image {
  width: 100%;
}

.about-image .card {
  padding: 0;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

/* Process steps styling */
.process-steps ol {
  padding-left: 1.5rem;
}

.process-steps ol li {
  margin-bottom: 0.75rem;
  color: var(--color-gray-light);
}

.process-steps ol li strong {
  color: var(--color-gold);
}

/* Responsive adjustments for About page */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .about-image img,
  .responsive-img {
    max-height: 400px;
  }
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
    /* Show images first on mobile */
  }

  .about-image img,
  .responsive-img {
    max-height: 350px;
  }
}

@media (max-width: 640px) {

  .about-image img,
  .responsive-img {
    max-height: 280px;
  }

  .process-steps ol {
    padding-left: 1.25rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {

  .about-image img,
  .responsive-img {
    max-height: 220px;
  }
}

/* ============================================
   FOOTER CREDIT - PROFESSIONAL STYLING
   ============================================ */
.footer-credit {
  margin-top: 1rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  letter-spacing: 0.02em;
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-credit a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
  transition: width 0.3s ease;
}

.footer-credit a:hover {
  color: rgba(255, 255, 255, 0.75);
}

.footer-credit a:hover::after {
  width: 100%;
}