/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: 'Inter', sans-serif;
  background: #fefaf5;
  color: #1e2a1e;
  overflow-x: hidden;
}

h1, h2, h3, h4, .logo-font, .serif {
  font-family: 'Playfair Display', serif;
}

/* COLORS */
:root {
  --green-deep: #2c5e2f;
  --green-soft: #e9f3e6;
  --cream: #fefaf5;
}

/* BUTTON */
.btn-primary {
  background: var(--green-deep);
  transition: all 0.25s ease;
}

.btn-primary:hover {
  background: #1f4522;
  transform: translateY(-2px);
}

/* PRODUCT CARD */
.product-card {
  background: white;
  border-radius: 28px;
  transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
  border: 1px solid rgba(44, 94, 47, 0.08);
  overflow: visible;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 35px -12px rgba(0, 0, 0, 0.12);
  border-color: rgba(44, 94, 47, 0.2);
}

/* BADGE */
.badge {
  position: absolute;
  top: -12px;
  right: 16px;
  background: var(--green-deep);
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 50px;
  font-weight: 600;
  z-index: 20;
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

/* IMAGE CONTAINER */
.img-container,
.product-image-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  overflow: hidden;
  background: none !important;
}

/* PRODUCT IMAGES */
.img-container img,
.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(0.95);
  transition: transform 0.4s ease;
  border-radius: 28px;
}

/* HOVER EFFECT */
.product-card:hover .img-container img {
  transform: scale(0.99);
}

/* SHAMPOO EXTRA ZOOM OUT */
.zoom-out {
  transform: scale(0.82) !important;
}

/* COMBO */
.combo-zoom {
  transition: transform 0.4s ease;
}

.product-card.featured:hover .combo-zoom {
  transform: scale(1.06);
}

/* ========================================= */
/* ✅ ABOUT SECTION - FINAL PERFECT FIX */
/* ========================================= */

.about-img-wrapper {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08); /* 🔥 premium shadow */
}

/* PERFECT IMAGE */
.about-img-wrapper .about-img-fixed {
  width: 100%;
  height: auto;          /* ✅ full image visible */
  display: block;
  border-radius: 28px;
  will-change: transform;
}

/* subtle hover (safe) */
.about-img-wrapper:hover .about-img-fixed {
  transform: scale(1.02); /* 🔥 very slight zoom */
}

/* NAV */
.nav-link {
  position: relative;
  font-weight: 500;
}

.nav-link.active {
  color: var(--green-deep);
  font-weight: 600;
}

.nav-link.active:after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--green-deep);
  border-radius: 4px;
}

/* WHATSAPP */
.wa-float {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 50;
  background: #25D366;
  border-radius: 60px;
  padding: 12px;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.3);
  transition: 0.2s;
}

.wa-float:hover {
  transform: scale(1.07);
  background: #20b859;
}

/* TESTIMONIAL */
.testimonial-card {
  background: white;
  border-radius: 1.5rem;
  transition: all 0.2s;
  border: 1px solid #f0e8de;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.1);
}

/* INGREDIENT */
.ingredient-badge {
  background: rgba(44, 94, 47, 0.08);
  border-radius: 100px;
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--green-deep);
}

/* GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

/* MARQUEE */
@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

.animate-marquee {
  animation: marquee 24s linear infinite;
}
