/* ===================================
   GOLD SCOOP GHEE - DESIGN SYSTEM
   =================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');
@import url('mobile-animations.css');

/* ===================================
   CSS VARIABLES - DESIGN TOKENS
   =================================== */
:root {
  /* New Organic Color Palette - Ghee Inspired */
  /* New Giraffe Color Palette */
  --color-primary: #6f4a38;
  /* Dark Brown - Primary Brand/Text */
  --color-primary-dark: #583b2d;
  /* Darker Brown */
  --color-primary-light: #edcf8f;
  /* Light Gold - Secondary/Highlights */

  --color-secondary: #c97f4e;
  /* Tan/Orange - Accent/Buttons */
  --color-secondary-dark: #a8653a;
  /* Darker Tan */

  --color-accent-gold: #c97f4e;
  /* Tan as Gold replacement */
  --color-accent-green: #edcf8f;
  /* Light Gold as Green replacement */

  --color-cream: #f0ece1;
  /* Cream/White - Background */
  --color-beige: #f0ece1;
  /* Cream - Background */

  /* Gradient Backgrounds */
  --color-bg-gradient: linear-gradient(135deg, #6f4a38 0%, #583b2d 100%);
  --color-bg-gradient-alt: linear-gradient(135deg, #c97f4e 0%, #edcf8f 100%);
  --color-bg-gradient-premium: linear-gradient(135deg, #6f4a38 0%, #4e342e 100%);
  --color-bg-gradient-gold: linear-gradient(135deg, #c97f4e 0%, #edcf8f 100%);

  /* Neutral Colors */
  --color-bg-body: #f0ece1;
  /* Cream */
  --color-bg-card: #FFFFFF;
  --color-text-dark: #6f4a38;
  /* Brown Text */
  --color-text-gray: #8d7b6f;
  --color-text-light: #a8988d;
  --color-text-white: #FFFFFF;

  /* Semantic Colors */
  --color-success: #c97f4e;
  /* Tan */
  --color-warning: #edcf8f;
  /* Light Gold */
  --color-error: #bf4040;
  --color-info: #6f4a38;

  /* Special Effects */
  --color-overlay: rgba(111, 74, 56, 0.7);
  --color-glass: rgba(255, 255, 255, 0.6);
  --shadow-color: rgba(111, 74, 56, 0.15);

  /* Spacing System */
  --spacing-xs: 0.5rem;
  --spacing-sm: 0.75rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows - Enhanced */
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 20px var(--shadow-color);
  --shadow-premium: 0 10px 40px rgba(37, 111, 198, 0.2);

  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Disable Text Selection Globally */
* {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background-color: var(--color-bg-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  -webkit-user-drag: none;
  pointer-events: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  transition: var(--transition-base);
}

ul {
  list-style: none;
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary-dark);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.025em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--spacing-sm);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  margin-bottom: var(--spacing-sm);
}

p {
  margin-bottom: var(--spacing-sm);
  color: var(--color-text-light);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.text-center {
  text-align: center;
}

.text-accent {
  color: var(--color-accent-gold);
}

/* ===================================
   LAYOUT UTILITIES
   =================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-3xl) 0;
}

.section-alt {
  background: linear-gradient(180deg, var(--color-beige) 0%, rgba(244, 241, 225, 0.5) 100%);
  position: relative;
}

.section-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.3), transparent);
}

.grid {
  display: grid;
  gap: var(--spacing-lg);
}

.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));
}

.flex {
  display: flex;
  gap: var(--spacing-md);
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


/* ===================================
   ANNOUNCEMENT BAR
   =================================== */
.announcement-bar {
  background: var(--color-primary);
  color: var(--color-text-white);
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  z-index: 999;
}

.announcement-content {
  display: flex;
  gap: 2rem;
  animation: scroll 30s linear infinite;
  white-space: nowrap;
}

.announcement-content span {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.announcement-bar:hover .announcement-content {
  animation-play-state: paused;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
  background: rgba(255, 251, 240, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: var(--spacing-sm) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid rgba(218, 165, 32, 0.2);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.nav-logo img {
  height: 70px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  transition: var(--transition-base);
}

.nav-logo:hover img {
  transform: scale(1.05);
}

.nav-logo span {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-secondary);
  font-weight: 700;
}

.nav-menu {
  display: flex;
  gap: var(--spacing-lg);
  align-items: center;
}

.nav-link {
  color: var(--color-text-dark);
  font-weight: 500;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  position: relative;
  transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
  background: rgba(218, 165, 32, 0.1);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition-base);
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 80%;
}

.cart-badge {
  position: relative;
}

.cart-badge .badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--color-accent-bright);
  color: var(--color-primary-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: var(--radius-round);
  min-width: 20px;
  text-align: center;
}

/* Nav Actions Container */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  padding: var(--spacing-xs);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.cart-icon:hover {
  background: rgba(218, 165, 32, 0.1);
  transform: scale(1.05);
}

.cart-icon .badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: linear-gradient(135deg, #c97f4e, #a8653a);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(205, 108, 59, 0.4);
}

.mobile-toggle {
  display: none;
  background: transparent;
  color: var(--color-secondary);
  font-size: 1.5rem;
  padding: var(--spacing-xs);
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-base);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--color-bg-gradient-alt);
  color: var(--color-text-white);
  box-shadow: var(--shadow-color);
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(218, 165, 32, 0.35);
  filter: brightness(1.05);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: var(--color-text-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.category-filter-btn.active {
  background: var(--color-primary);
  color: var(--color-text-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.category-filter-btn {
  padding: 12px 32px;
  font-size: 1.1rem;
}

.btn-whatsapp {
  background: #25D366;
  color: var(--color-text-white);
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  border: none;
  font-weight: 600;
}

.btn-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
}

/* ===================================
   CARDS
   =================================== */
.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  overflow: hidden;
  border: 1px solid rgba(218, 165, 32, 0.08);
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-bg-gradient);
  opacity: 0;
  transition: var(--transition-smooth);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-premium);
  border-color: var(--color-primary-light);
}

.card:hover::before {
  opacity: 1;
}

.card-glass {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow-lg);
}

.card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-md);
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--color-primary-dark);
}

.card-text {
  color: var(--color-text-light);
  margin-bottom: var(--spacing-md);
}

/* ===================================
   PRODUCT CARDS
   =================================== */
.product-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
  border: 2px solid transparent;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-secondary);
}

.product-badge {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  background: var(--color-bg-gradient);
  color: var(--color-text-white);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.8125rem;
  z-index: 10;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: var(--shadow-color);
}

.product-image {
  width: 100%;
  height: 300px;
  /* Taller box to fit the jar */
  object-fit: cover;
  /* Fill the box */
  padding: 0;
  /* No padding for full bleed */
  background: linear-gradient(135deg, #F9FAFB 0%, #E5E7EB 100%);
}

.product-content {
  padding: var(--spacing-lg);
}

.product-title {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xs);
  color: var(--color-primary-dark);
}

.product-size {
  color: var(--color-text-light);
  font-size: 0.875rem;
  margin-bottom: var(--spacing-sm);
}

.product-price {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.02em;
}

.product-price .currency {
  font-size: 1.25rem;
}

.product-actions {
  display: flex;
  gap: var(--spacing-sm);
}

.product-actions .btn {
  flex: 1;
  padding: var(--spacing-sm);
  font-size: 0.875rem;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.25) 100%),
    /* Increased Transparency (0.6 -> 0.25) */
    /* Darkened from 0.2 to 0.6 */
    url('../assets/images/hero-bg-v3.jpg') center/cover no-repeat;
  /* background-attachment: fixed; - Removed to fix cropping on scroll */
  color: var(--color-text-white);
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/9;
  min-height: auto;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .hero {
    background:
      linear-gradient(135deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.25) 100%),
      url('../assets/images/mobile-hero-v1.jpg') center/cover no-repeat;
    aspect-ratio: auto;
    /* Allow height to adjust based on content or set a specific height */
    min-height: 500px;
    /* Ensure enough height for the image to be seen */
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(229, 181, 109, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(212, 165, 116, 0.1) 0%, transparent 50%);
  opacity: 0.8;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.hero h1 {
  color: var(--color-text-white);
  margin-bottom: var(--spacing-md);
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.7);
  /* Strengthened Shadow */
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1.1;
}

.hero p {
  color: rgba(255, 255, 255, 1);
  /* Full opacity white */
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: var(--spacing-xl);
  line-height: 1.6;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
  /* Added strong shadow */
  font-weight: 600;
  /* Made slightly bolder */
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================================
   FEATURES / BENEFITS
   =================================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.feature-card {
  text-align: center;
  padding: var(--spacing-xl);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-secondary);
}

.feature-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto var(--spacing-md);
  background: var(--color-bg-gradient-alt);
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.75rem;
  color: var(--color-text-white);
  box-shadow: var(--shadow-color);
  position: relative;
  transition: var(--transition-smooth);
}

.feature-icon::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: var(--radius-round);
  background: var(--color-bg-gradient);
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: -1;
}

.feature-card:hover .feature-icon::before {
  opacity: 1;
  inset: -6px;
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
  color: var(--color-primary-dark);
}

.feature-text {
  color: var(--color-text-light);
}

/* ===================================
   TESTIMONIALS
   =================================== */
.testimonial-slider {
  position: relative;
  max-width: 900px;
  margin: var(--spacing-xl) auto;
  padding: var(--spacing-xl) var(--spacing-md);
}

.testimonial {
  background: var(--color-white);
  padding: var(--spacing-2xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  display: none;
  border: 1px solid rgba(212, 165, 116, 0.1);
}

.testimonial.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-text {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-lg);
  line-height: 1.8;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 4rem;
  color: var(--color-accent-gold);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--spacing-xs);
}

.testimonial-rating {
  color: var(--color-accent-bright);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-lg);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-round);
  background: var(--color-beige);
  cursor: pointer;
  transition: var(--transition-base);
  border: 2px solid transparent;
}

.dot:hover {
  background: var(--color-accent-metallic);
  transform: scale(1.2);
}

.dot.active {
  background: linear-gradient(135deg, var(--color-accent-gold), var(--color-accent-bright));
  width: 36px;
  border-radius: 6px;
  border-color: var(--color-accent-gold);
}

/* ===================================
   FORMS
   =================================== */
.form-group {
  margin-bottom: var(--spacing-md);
}

.form-label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
  color: var(--color-primary-dark);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--spacing-sm) var(--spacing-md);
  border: 2px solid var(--color-beige);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-base);
  background: var(--color-white);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-accent-gold);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: var(--color-bg-gradient);
  color: var(--color-text-white);
  padding: var(--spacing-2xl) 0 var(--spacing-md);
  position: relative;
  margin-top: var(--spacing-2xl);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-accent-gold), transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-section h3 {
  color: var(--color-text-white);
  margin-bottom: var(--spacing-md);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer-about .footer-tagline {
  color: var(--color-accent-gold);
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
  font-size: 0.95rem;
}

.footer-about .footer-desc {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
  font-size: 0.9rem;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: var(--spacing-xs);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  transition: var(--transition-fast);
  font-size: 0.9rem;
}

.footer-links a i {
  font-size: 0.75rem;
  opacity: 0.7;
}

.footer-links a:hover {
  color: var(--color-accent-gold);
  padding-left: var(--spacing-xs);
}

/* Footer Contact */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.footer-contact li i {
  font-size: 1.125rem;
  color: var(--color-accent-gold);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact li span {
  line-height: 1.5;
}

/* Social Links */
.social-links {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link i,
.social-link svg {
  display: block;
}

.social-link:hover {
  background: var(--color-text-white);
  color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  margin-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  margin: 0;
}

/* ===================================
   CART PAGE STYLES
   =================================== */
.cart-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

.cart-items {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-sm);
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  border-bottom: 1px solid var(--color-beige);
  align-items: center;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.cart-item-details h4 {
  margin-bottom: var(--spacing-xs);
}

.cart-item-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin: var(--spacing-sm) 0;
}

.quantity-btn {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--color-beige);
  color: var(--color-primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-btn:hover {
  background: var(--color-accent-gold);
}

.quantity-display {
  min-width: 40px;
  text-align: center;
  font-weight: 600;
}

.remove-btn {
  background: transparent;
  color: #dc3545;
  padding: var(--spacing-xs);
  font-size: 0.875rem;
  text-decoration: underline;
}

.cart-summary {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
  height: fit-content;
  position: sticky;
  top: 100px;
  border: 1px solid rgba(212, 165, 116, 0.1);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid var(--color-beige);
}

.summary-row.total {
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--color-primary);
  border-top: 2px solid var(--color-accent-gold);
  border-bottom: none;
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-lg);
  letter-spacing: -0.01em;
}

.checkout-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

/* ===================================
   ANIMATIONS
   =================================== */
/* ===================================
   ANIMATIONS
   =================================== */
.fade-in {
  animation: fadeIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0;
}

.slide-up {
  animation: slideUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0;
}

.slide-in-left {
  animation: slideInLeft 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0;
}

.slide-in-right {
  animation: slideInRight 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0;
}

.scale-in {
  animation: scaleIn 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@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);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

.float-animation {
  animation: float 6s ease-in-out infinite;
}

/* Stagger Delays */
.delay-100 {
  animation-delay: 100ms;
}

.delay-200 {
  animation-delay: 200ms;
}

.delay-300 {
  animation-delay: 300ms;
}

.delay-400 {
  animation-delay: 400ms;
}

.delay-500 {
  animation-delay: 500ms;
}

/* Button Shine Effect */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.6s;
}

.btn:hover::after {
  left: 100%;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 968px) {
  .cart-container {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .cart-container>* {
    width: 100%;
  }

  .cart-summary {
    position: static;
    width: 100%;
  }
}

@media (max-width: 768px) {

  /* Grid Reset for Mobile */
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr !important;
  }

  .mobile-toggle {
    display: block;
  }

  .announcement-bar {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: linear-gradient(135deg, #6f4a38 0%, #583b2d 100%);
    flex-direction: column;
    padding: var(--spacing-xl);
    transition: var(--transition-base);
    align-items: flex-start;
  }

  /* Conflicting .nav-menu.active removed */

  .nav-link {
    width: 100%;
    padding: var(--spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
  }

  .nav-link:hover,
  .nav-link.active {
    color: #c97f4e;
    background: rgba(218, 165, 32, 0.2);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .cart-item {
    grid-template-columns: 80px 1fr;
  }

  .cart-item-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

@media (max-width: 480px) {
  :root {
    --spacing-3xl: 3rem;
  }

  .section {
    padding: var(--spacing-xl) 0;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.mt-1 {
  margin-top: var(--spacing-xs);
}

.mt-2 {
  margin-top: var(--spacing-sm);
}

.mt-3 {
  margin-top: var(--spacing-md);
}

.mt-4 {
  margin-top: var(--spacing-lg);
}

.mt-5 {
  margin-top: var(--spacing-xl);
}

.mb-1 {
  margin-bottom: var(--spacing-xs);
}

.mb-2 {
  margin-bottom: var(--spacing-sm);
}

.mb-3 {
  margin-bottom: var(--spacing-md);
}

.mb-4 {
  margin-bottom: var(--spacing-lg);
}

.mb-5 {
  margin-bottom: var(--spacing-xl);
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

/* ===================================
   CUSTOM CURSOR
   =================================== */
.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-accent-gold);
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-accent-gold);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
}

body:hover .cursor-outline.hovered {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 183, 77, 0.1);
  border-color: transparent;
}

/* Hide default cursor on non-touch devices */
@media (hover: hover) and (pointer: fine) {
  body {
    cursor: none;
  }
}

/* ===================================
   SCROLL PROGRESS BAR
   =================================== */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  z-index: 10001;
  /* Above navbar */
}

.scroll-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent-gold), var(--color-accent-bright));
  width: 0%;
  transition: width 0.1s;
}

/* ===================================
   FLOATING SHAPES
   =================================== */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  animation: float 20s infinite linear;
  z-index: 0;
  pointer-events: none;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }

  100% {
    transform: translateY(0) rotate(360deg);
  }
}

/* ===================================
   ENHANCED CARD HOVER
   =================================== */
.card:hover,
.product-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18), 0 8px 16px rgba(212, 165, 116, 0.15);
}

/* ===================================
   PREMIUM ACCENTS
   =================================== */
.text-gradient {
  background: linear-gradient(135deg, var(--color-accent-gold), var(--color-accent-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Shimmer effect for gold elements */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}

.shimmer {
  animation: shimmer 3s infinite linear;
  background: linear-gradient(90deg,
      var(--color-accent-gold) 0%,
      var(--color-accent-metallic) 50%,
      var(--color-accent-gold) 100%);
  background-size: 1000px 100%;
}

/* ===================================
   NEW ANIMATION UTILITIES
   =================================== */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.2s;
}

.stagger-3 {
  transition-delay: 0.3s;
}

.stagger-4 {
  transition-delay: 0.4s;
}

/* Enhanced Typography Utilities */
.text-serif {
  font-family: var(--font-heading);
}

.font-light {
  font-weight: 300;
}

/* Glass Effect Overrides for new look */
.glass-panel {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-sm);
}

/* ===================================
   MOBILE RESPONSIVE OPTIMIZATIONS
   =================================== */

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
  .container {
    padding: 0 var(--spacing-md);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablets */
@media (max-width: 768px) {

  /* Typography Scaling */
  h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  h2 {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }

  /* Navigation */
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: linear-gradient(135deg, #6f4a38 0%, #583b2d 100%) !important;
    background-color: #6f4a38 !important;
    /* Fallback */
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: var(--spacing-xl) var(--spacing-md);
    transition: left var(--transition-smooth);
    z-index: 9999;
    /* Increased z-index */
    gap: var(--spacing-lg);
    /* Increased gap */
    align-items: center;
    justify-content: flex-start;
    /* Changed from center to allow scrolling if needed */
    overflow-y: auto;
    /* Allow scrolling for small screens */
  }

  .nav-menu.active {
    left: 0;
  }

  /* Staggered Animation for Menu Items */
  .nav-menu.active li {
    animation: slideInRight 0.5s ease forwards;
    opacity: 0;
  }

  .nav-menu.active li:nth-child(1) {
    animation-delay: 0.1s;
  }

  .nav-menu.active li:nth-child(2) {
    animation-delay: 0.2s;
  }

  .nav-menu.active li:nth-child(3) {
    animation-delay: 0.3s;
  }

  .nav-menu.active li:nth-child(4) {
    animation-delay: 0.4s;
  }

  .nav-menu.active li:nth-child(5) {
    animation-delay: 0.5s;
  }

  .nav-menu.active li:nth-child(6) {
    animation-delay: 0.6s;
  }

  .nav-menu.active li:nth-child(7) {
    animation-delay: 0.7s;
  }

  .nav-link {
    display: block;
    /* Ensure full width clickable area */
    font-size: 1.25rem;
    padding: var(--spacing-md) var(--spacing-xl);
    /* Larger touch target */
    width: 100%;
    max-width: 300px;
    text-align: center;
    color: var(--color-text-white) !important;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-sm);
    /* Fallback spacing */
    transition: all 0.3s ease;
  }

  .nav-link:hover,
  .nav-link.active {
    background: rgba(255, 255, 255, 0.25);
    color: var(--color-text-white) !important;
  }

  /* Animated Hamburger Icon */
  .mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
  }

  .mobile-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-text-dark);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
  }

  /* Hamburger to X Animation */
  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background-color: var(--color-secondary);
    /* Dark color to be visible on light navbar */
  }

  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    background-color: var(--color-secondary);
    /* Dark color to be visible on light navbar */
  }

  /* Premium Touch Feedback for Mobile */
  @media (hover: none) {

    .btn:active,
    .nav-link:active,
    .product-card:active,
    .mobile-toggle:active {
      transform: scale(0.96);
    }
  }

  /* Hero Section */
  .hero {
    min-height: 60vh;
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  /* Grids */
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  /* Cards */
  .product-card,
  .feature-card,
  .card {
    margin-bottom: var(--spacing-md);
  }

  /* Sections */
  .section {
    padding: var(--spacing-xl) 0;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    text-align: center;
  }

  .footer-section h3 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
  }

  .footer-section p,
  .footer-section a {
    font-size: 0.9rem;
    line-height: 1.8;
  }

  .footer-links li {
    margin-bottom: var(--spacing-sm);
  }

  .footer-contact li {
    justify-content: center;
    text-align: left;
    margin-bottom: var(--spacing-md);
  }

  .social-links {
    justify-content: center;
  }
}

/* Mobile Phones */
@media (max-width: 480px) {

  /* Base Spacing */
  :root {
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2.5rem;
    --spacing-2xl: 4rem;
  }

  /* Container */
  .container {
    padding: 0 var(--spacing-sm);
  }

  /* Typography */
  h1 {
    font-size: 1.75rem;
    line-height: 1.2;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  p {
    font-size: 0.95rem;
  }

  /* Buttons */
  .btn {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.9rem;
  }

  /* Navigation */
  .nav-logo img {
    height: 50px;
  }

  .nav-logo span {
    font-size: 1.25rem;
  }

  .navbar {
    padding: var(--spacing-xs) 0;
  }

  /* Hero */
  .hero {
    min-height: 50vh;
    padding: var(--spacing-xl) 0;
  }

  .hero h1 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-sm);
  }

  .hero p {
    font-size: 0.95rem;
    margin-bottom: var(--spacing-md);
  }

  /* Product Cards */
  .product-image {
    height: auto !important;
    width: 100% !important;
    aspect-ratio: 3/4 !important;
    /* Taller aspect ratio for bottles */
    object-fit: contain !important;
    /* Force full visibility */
    background: #fcfbf9;
    padding: 10px;
    /* Add internal breathing room */
  }

  .product-content {
    padding: var(--spacing-md);
  }

  .product-price {
    font-size: 1.5rem;
  }

  /* Feature Cards */
  .feature-card {
    padding: var(--spacing-lg);
  }

  .feature-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }

  /* Testimonials */
  .testimonial {
    padding: var(--spacing-lg);
  }

  .testimonial-text {
    font-size: 1rem;
  }

  /* Forms */
  .form-input,
  .form-textarea,
  .form-select {
    font-size: 16px;
    /* Prevents zoom on iOS */
  }
}

/* Extra Small Devices */
@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .product-card,
  .feature-card {
    padding: var(--spacing-md);
  }

  .btn {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    padding: var(--spacing-lg) 0;
  }

  .nav-menu {
    flex-direction: row;
    flex-wrap: wrap;
    height: auto;
    padding: var(--spacing-md);
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {

  .btn,
  .nav-link,
  .product-card,
  .feature-card {
    -webkit-tap-highlight-color: rgba(255, 107, 53, 0.1);
  }

  /* Larger touch targets */
  .btn {
    min-height: 44px;
    min-width: 44px;
  }

  .nav-link {
    min-height: 44px;
  }
}

/* ===================================
   KASUTAM-INSPIRED ELEMENTS
   =================================== */

/* Scalloped/Wavy Border Effect */
.scalloped-border {
  border-radius: 20% 80% 20% 80% / 80% 20% 80% 20%;
  overflow: hidden;
  position: relative;
}

.scalloped-border-alt {
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  overflow: hidden;
}

/* Wavy border using clip-path */
.wavy-border {
  clip-path: polygon(0% 10%, 10% 0%, 20% 5%, 30% 0%, 40% 5%, 50% 0%,
      60% 5%, 70% 0%, 80% 5%, 90% 0%, 100% 10%,
      100% 90%, 90% 100%, 80% 95%, 70% 100%, 60% 95%,
      50% 100%, 40% 95%, 30% 100%, 20% 95%, 10% 100%, 0% 90%);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
  color: white;
}

/* Pill-shaped badges (like Kasutam) */
.pill-badge {
  background: var(--color-cream);
  color: var(--color-primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-block;
  border: 2px solid var(--color-secondary);
  letter-spacing: 0.5px;
}

/* Save badge for products */
.save-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--color-secondary);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(212, 165, 116, 0.3);
  z-index: 10;
}

/* Vertical Timeline (for process section) */
.timeline-vertical {
  position: relative;
  padding-left: 40px;
}

.timeline-vertical::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-secondary);
}

.timeline-item {
  position: relative;
  margin-bottom: var(--spacing-xl);
}

.timeline-number {
  position: absolute;
  left: -40px;
  top: 0;
  width: 35px;
  height: 35px;
  background: var(--color-secondary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  border: 3px solid var(--color-cream);
}

/* Newsletter Section */
.newsletter-section {
  background: var(--color-beige);
  padding: var(--spacing-2xl);
  border-radius: var(--radius-xl);
  text-align: center;
}

.newsletter-form {
  display: flex;
  gap: var(--spacing-sm);
  max-width: 500px;
  margin: var(--spacing-lg) auto 0;
}

.newsletter-input {
  flex: 1;
  padding: var(--spacing-sm) var(--spacing-md);
  border: 2px solid var(--color-secondary);
  border-radius: var(--radius-md);
  font-size: 1rem;
  outline: none;
  transition: var(--transition-smooth);
}

.newsletter-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(27, 67, 50, 0.1);
}

/* Category Grid (like Kasutam's Farm Fresh Collection) */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.category-card {
  background: var(--color-secondary);
  padding: var(--spacing-2xl);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-smooth);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.category-card:hover::before {
  opacity: 1;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.category-card h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
}

.category-card .btn {
  background: white;
  color: var(--color-primary);
  border-radius: 50px;
  padding: var(--spacing-sm) var(--spacing-xl);
  font-weight: 600;
}

/* Mobile Bottom Navigation Removed as per user request */
.bottom-nav {
  display: none !important;
}

/* ===================================
   PRODUCT CATEGORY ENHANCEMENTS
   =================================== */
.category-nav .btn {
  transition: var(--transition-smooth);
}

.category-nav .btn:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.product-card-coming-soon {
  background: rgba(255, 255, 255, 0.5);
  border: 2px dashed rgba(218, 165, 32, 0.2);
  border-radius: var(--radius-2xl);
  padding: var(--spacing-2xl);
  text-align: center;
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.product-card-coming-soon:hover {
  border-color: var(--color-primary);
  background: rgba(218, 165, 32, 0.05);
  transform: translateY(-5px);
}

.product-card-coming-soon i {
  font-size: 3.5rem;
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
  opacity: 0.8;
}

.product-card-coming-soon h3 {
  color: var(--color-secondary-dark);
  margin-bottom: var(--spacing-sm);
}

.product-card-coming-soon p {
  font-size: 0.95rem;
  color: var(--color-text-gray);
  max-width: 250px;
}

[id$="-section"] {
  scroll-margin-top: 100px;
}

@media (max-width: 768px) {
  .bottom-nav {
    display: none !important;
  }

  /* body padding removed since bottom nav is gone */
  body {
    padding-bottom: 0;
  }

  .whatsapp-float {
    bottom: 20px;
  }

  .category-nav {
    top: 60px;
    padding: var(--spacing-xs) var(--spacing-sm);
  }

}



/* ===================================
   MOBILE & PREMIUM REFINEMENTS
   =================================== */

/* Safe Area Insets for Modern Mobile Devices (iPhone X+) */
:root {
  --safe-area-inset-top: env(safe-area-inset-top, 0px);
  --safe-area-inset-bottom: env(safe-area-inset-bottom, 0px);
  --safe-area-inset-left: env(safe-area-inset-left, 0px);
  --safe-area-inset-right: env(safe-area-inset-right, 0px);
}

body {
  padding-top: var(--safe-area-inset-top);
  padding-bottom: var(--safe-area-inset-bottom);
  padding-left: var(--safe-area-inset-left);
  padding-right: var(--safe-area-inset-right);
}

/* Mobile Typography & Spacing Adjustments */
@media (max-width: 768px) {
  :root {
    --spacing-xl: 1.5rem;
    /* Tighter spacing on mobile */
    --spacing-2xl: 2rem;
    --spacing-3xl: 3rem;
  }

  .hero {
    background-attachment: scroll;
    /* Disable parallax on mobile for performance */
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../assets/images/mobile-hero-new.jpg');
    background-position: center bottom !important;
    /* Anchor to bottom to keep person grounded */
    /* Focus on the top part of the image (face/product) */
    min-height: 90vh !important;
    height: 90vh !important;
    /* Full size image look */
    background-size: cover !important;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: center;
    padding: 0 !important;
    /* Remove padding that might push content */
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  h1 {
    font-size: 2.25rem;
    /* Smaller hero text */
    line-height: 1.2;
  }

  h2 {
    font-size: 1.75rem;
  }

  .container {
    padding: 0 1.25rem;
    /* More breathing room on sides */
  }

  .navbar {
    padding: 0.5rem 0 !important;
  }

  .nav-container {
    padding: 0 1rem;
  }

  /* Mobile Menu - Glass Sheet Style */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(255, 251, 240, 0.98);
    /* Match PC Navbar Cream Color */
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);


    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    /* iOS-like easing */
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding-top: var(--safe-area-inset-top);
    display: flex !important;
    /* Force flex for mobile menu */
  }

  /* Hide Footer on Specific Pages (Mobile Only) */
  .page-cart .footer,
  .page-cart .heritage-section,
  .page-about .footer,
  .page-about .heritage-section,
  .page-products .footer,
  .page-products .heritage-section {
    display: none !important;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    font-size: 1.25rem;
    width: 100%;
    text-align: center;
    padding: 1rem !important;
  }
}

/* Smooth Image Loading */
img {
  transition: opacity 0.4s ease-in-out;
}

img[loading="lazy"] {
  opacity: 0;
}

img.loaded {
  opacity: 1;
}

/* Veg Label - Giraffe Palette */
.veg-label {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(111, 74, 56, 0.1);
  color: #6f4a38;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.veg-mark {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #6f4a38;
  border-radius: 4px;
  position: relative;
  box-sizing: border-box;
  vertical-align: middle;
}

.veg-mark::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: #6f4a38;
  border-radius: 50%;
}

/* Utility to hide elements on desktop */
.mobile-only,
.go-to-cart-dynamic {
  display: none !important;
}

/* Ensure Grids Collapse on Mobile */
@media (max-width: 480px) {

  .mobile-only {
    display: flex !important;
  }

  /* Mobile Address Modal: Save Only Mode */
  #continuePaymentBtn,
  #cancelAddress {
    display: none !important;
  }

  #saveAddressBtn {
    display: flex !important;
    width: 100%;
    justify-content: center;
  }

  /* Dynamic Go to Cart Button (Mobile) */
  .go-to-cart-dynamic {
    display: flex !important;
    width: 100%;
    margin-top: 10px;
    justify-content: center;
    background-color: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
  }

  .product-actions {
    flex-wrap: wrap;
    /* Fallback */
    flex-direction: column !important;
    /* Force vertical stacking */
    gap: 10px;
    /* Add spacing between buttons */
    align-items: stretch;
    /* Make buttons full width */
  }

  .grid,
  .grid-2,
  .grid-3,
  .feature-grid,
  .footer-content {
    grid-template-columns: 1fr !important;
  }

  /* Allow 2 columns for products on mobile for better density */
  .grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: var(--spacing-sm) !important;
  }

  .desktop-separator {
    display: none !important;
  }

  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  /* My Story & Product Page Hero Fix */
  .page-about .hero,
  .page-products .hero {
    display: none !important;
  }

  /* Cart Page Hero Fix */
  .page-cart .hero {
    min-height: auto !important;
    height: auto !important;
    padding: var(--spacing-2xl) 0 !important;
    /* Less transparent overlay (lighter) and reuse expanded image */
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('../assets/images/mobile-hero-expanded.png') !important;
    background-size: cover !important;
    background-position: center 20% !important;
    /* Focus slightly higher up */
  }

  /* Mobile Product Page Stacking */
  .category-nav {
    display: none !important;
  }

  /* Force both sections to show and stack */
  #bilona-section,
  #buffalo-section {
    display: block !important;
    margin-bottom: var(--spacing-xl) !important;
  }
}