@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;600;700;800&display=swap');

:root {
  /* Colors - Modern Natural Palette */
  --color-primary: #C5A02B;
  /* Gold */
  --color-primary-dark: #A68521;
  --color-secondary: #3D5A20;
  /* Deep Leaf Green */
  --color-secondary-light: #5B7F30;
  --color-text: #1A1A1A;
  --color-text-muted: #666666;
  --color-bg-body: #FDFDFB;
  --color-white: #FFFFFF;
  --color-danger: #D63031;
  --color-border: #EEEEEE;

  /* Layout */
  --container-width: 1140px;
  --spacing-lg: 4rem;
  --spacing-md: 2rem;
  --spacing-sm: 1rem;

  /* Effects */
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.08);
  --border-radius: 12px;

  /* Aliases for better compatibility */
  --primary: var(--color-primary);
  --secondary: var(--color-secondary);
}

/* Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--color-text);
  background-color: var(--color-bg-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Utilities */
.text-center {
  text-align: center;
}

.m-b-1 {
  margin-bottom: 1rem;
}

.m-b-2 {
  margin-bottom: 2rem;
}

/* Sticky Bar */
.sticky-bar {
  background: var(--color-secondary);
  color: #fff;
  text-align: center;
  padding: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
  letter-spacing: 0.5px;
  font-family: 'Outfit', sans-serif;
  width: 100%;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(197, 160, 43, 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 160, 43, 0.4);
}

.btn-secondary {
  background: #fff;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  background: #f8f8f8;
  border-color: #ddd;
}

/* Hero Section */
.hero {
  padding: 4rem 0;
  text-align: center;
  background: radial-gradient(circle at 10% 20%, #FDFDFB 0%, #F5F5F0 100%);
}

.hero-badge {
  display: inline-block;
  background: var(--color-danger);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.hero p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.hero-image-wrapper {
  margin-bottom: 2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper img {
  max-width: 100%;
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  /* More organic blob */
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1), -20px -20px 60px rgba(255, 255, 255, 0.8);
  z-index: 2;
  border: 8px solid #fff;
  transform: rotate(-2deg);
  transition: transform 0.5s ease;
}

.hero-image-wrapper img:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-image-decor {
  position: absolute;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(197, 160, 43, 0.25) 0%, rgba(197, 160, 43, 0) 70%);
  z-index: 1;
  border-radius: 50%;
  animation: pulse-glow 4s infinite alternate;
}

.hero-decor-element {
  position: absolute;
  background: var(--color-secondary-light);
  opacity: 0.15;
  border-radius: 50%;
  filter: blur(35px);
  z-index: 1;
}

.decor-1 {
  width: 120px;
  height: 120px;
  top: -30px;
  right: 15%;
}

.decor-2 {
  width: 180px;
  height: 180px;
  bottom: -50px;
  left: 10%;
}

@keyframes pulse-glow {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }

  100% {
    transform: scale(1.1);
    opacity: 0.7;
  }
}

@keyframes floating {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-15px);
  }
}

.floating {
  animation: floating 3s ease-in-out infinite alternate;
}

/* Desktop Hero Adjustment */
@media (min-width: 992px) {
  .hero {
    text-align: left;
    padding: 6rem 0;
    overflow: hidden;
  }

  .hero .container {
    display: flex;
    align-items: center;
    gap: 4rem;
  }

  .hero-content {
    flex: 1;
  }

  .hero-image-wrapper {
    flex: 1;
    margin-bottom: 0;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero p {
    margin-left: 0;
  }

  .btn {
    width: auto;
  }

  .hero-image-decor {
    width: 450px;
    height: 450px;
  }
}

/* Products Section */
.products-section {
  padding: 6rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.section-title p {
  color: var(--color-danger);
  font-weight: 600;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.product-card {
  background: #fff;
  border-radius: var(--border-radius);
  padding: 2.5rem;
  text-align: center;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-primary);
}

.product-card.featured {
  background: #fff;
  border: 2px solid var(--color-primary);
  box-shadow: var(--shadow-card);
}

.product-card .card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--color-primary);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.product-image {
  height: 200px;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

.product-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.product-card .price {
  font-size: 2.2rem;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

/* Desktop Grid */
@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Benefits */
.benefits {
  background: #F5F5F0;
  padding: 6rem 0;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.benefit-item {
  text-align: center;
}

.benefit-item i {
  font-size: 2.5rem;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .benefit-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Testimonials Slider */
.testimonials {
  padding: 6rem 0;
  background: #fff;
}

.testimonial-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 2rem;
  padding: 1rem 0;
  scrollbar-width: none;
}

.testimonial-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 100%;
  scroll-snap-align: center;
  background: #FDFDFB;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--color-border);
}

.testimonial-card p {
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.testimonial-author {
  font-weight: 700;
  color: var(--color-secondary);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
}

.dot.active {
  background: var(--color-primary);
}

/* Form Area */
.checkout-section {
  padding: 6rem 0;
  background: #fff;
}

.checkout-card {
  max-width: 600px;
  margin: 0 auto;
  background: #FDFDFB;
  padding: 3rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(197, 160, 43, 0.1);
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

/* Mobile Sticky CTA */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
}

@media (min-width: 992px) {
  .sticky-mobile-cta {
    display: none;
  }
}

/* Quantity Selector & Add Button */
.qty-container {
  margin-top: 1.5rem;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-add-initial {
  background: var(--color-secondary);
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(61, 90, 32, 0.2);
}

.btn-add-initial:hover {
  background: var(--color-secondary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(61, 90, 32, 0.3);
}

.btn-add-initial i {
  font-size: 1.1rem;
}

.qty-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  background: #f0f4ec;
  padding: 0.4rem;
  border-radius: 50px;
  width: 100%;
  animation: slideUpFade 0.3s ease-out;
  border: 1px solid rgba(61, 90, 32, 0.1);
}

@keyframes slideUpFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.qty-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--color-primary);
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.qty-btn:hover {
  background: var(--color-secondary);
  transform: scale(1.1);
}

.qty-val {
  font-size: 1.3rem;
  font-weight: 800;
  min-width: 25px;
  text-align: center;
  color: var(--color-secondary);
}

/* Selected State for Card */
.product-card.selected {
  border: 2px solid var(--color-primary);
  background: #fff;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(197, 160, 43, 0.15);
}

.product-card.selected::after {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  border: 2px solid white;
}

/* Pulse for Empty Cart Attention */
@keyframes pulse-soft {
  0% { box-shadow: 0 0 0 0 rgba(61, 90, 32, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(61, 90, 32, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 90, 32, 0); }
}

.btn-add-initial.pulse {
  animation: pulse-soft 2s infinite;
}

.shipping-info {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
}

.shipping-info.local {
  background: rgba(61, 90, 32, 0.1);
  color: var(--color-secondary);
  border: 1px solid rgba(61, 90, 32, 0.2);
}

.shipping-info.national {
  background: rgba(214, 48, 49, 0.1);
  color: var(--color-danger);
  border: 1px solid rgba(214, 48, 49, 0.2);
}

/* Mobile Adjustments */
@media (max-width: 992px) {
  .hero-image-wrapper img {
    width: 300px !important;
    height: 300px !important;
  }

  .checkout-card {
    padding: 1.5rem !important;
    margin: 0 15px !important;
    border-radius: 12px !important;
    background: #fff !important;
    border: 1px solid var(--color-border) !important;
    box-shadow: var(--shadow-card) !important;
  }

  .whatsapp-float {
    bottom: 110px !important;
    right: 20px !important;
    width: 55px !important;
    height: 55px !important;
    font-size: 1.6rem !important;
    display: flex !important;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem !important;
  }

  .section-title h2 {
    font-size: 2rem !important;
  }

  .product-card {
    padding: 1.5rem !important;
  }
}

/* Social Proof Notifications */
.social-proof-toast {
  position: fixed;
  bottom: 30px;
  left: 20px;
  background: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  z-index: 10000;
  width: auto;
  min-width: 250px;
  max-width: 320px;
  animation: slide-up-social 0.5s ease-out forwards;
  transition: opacity 0.5s, transform 0.5s;
  border-left: 4px solid var(--color-primary);
}

.social-proof-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-proof-img {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: #f8f8f8;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-proof-img img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.social-proof-text {
  font-size: 0.85rem;
  line-height: 1.3;
}

.social-proof-title {
  color: var(--color-text);
  margin-bottom: 2px;
}

.social-proof-desc {
  color: var(--color-text-muted);
}

.social-proof-time {
  font-size: 0.75rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-top: 4px;
}

.social-proof-close {
  position: absolute;
  top: 5px;
  right: 5px;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #ccc;
  cursor: pointer;
  line-height: 1;
}

.social-proof-close:hover {
  color: var(--color-text);
}

@keyframes slide-up-social {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 992px) {
  .social-proof-toast {
    bottom: 90px !important;
    left: 10px !important;
    max-width: 280px;
    padding: 10px 12px;
  }
}