/* ==================================================
   GLOBAL DESIGN SYSTEM
================================================== */
:root {
  --primary: #07d83b;
  --primary-dark: #149e1d;
  --text-dark: #031428;
  --text-muted: #666;
  --bg-light: #f8f9fa;
  --radius-lg: 18px;
  --radius-md: 12px;
  --container: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, system-ui, -apple-system, sans-serif;
}

section {
  padding: 80px 24px;
}

@media (max-width: 768px) {
  section {
    padding: 60px 16px;
  }
}

.container {
  max-width: var(--container);
  margin: 0 auto;
}

/* ==================================================
   MAIN HERO
================================================== */
.product-main-hero {
  background:linear-gradient(180deg, #fbd86f 0% , rgb(222, 143, 25)70%);
  color: white;
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.product-main-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.product-main-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.product-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1s ease;
}

.product-main-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 0 0 20px 0;
  letter-spacing: -1px;
}

.product-main-hero p {
  font-size: 1.3rem;
  font-weight: 300;
  margin: 0;
  opacity: 0.95;
}

@media (max-width: 768px) {
  .product-main-hero {
    padding: 80px 24px;
  }

  .product-main-hero h1 {
    font-size: 2.5rem;
  }

  .product-main-hero p {
    font-size: 1.1rem;
  }
}

/* ==================================================
   PRODUCT LAYOUT
================================================== */
.product-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-bottom:0px;
  align-items: center;
}

@media (max-width: 968px) {
  .product-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ==================================================
   PRODUCT GALLERY (FIXED HEIGHT ISSUE)
================================================== */
.product-gallery {
  animation: fadeInLeft 0.8s ease;
}

.main-image-container {
  width: 100%;
  height: 100%;
  max-width: 700px;
  max-height: 480px;

  aspect-ratio: 1 / 1;
  margin: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-light);
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .main-image-container {
    aspect-ratio: 4 / 5;
  }
}

.main-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.main-product-image {
  transition: opacity 10s ease;
}

/* ===============================
   THUMBNAIL GALLERY – FIXED SIZE
   =============================== */
.thumbnail-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

/* Force uniform square */
.thumbnail-item {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;      /* 🔑 KEY FIX */
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  background: #f5f5f5;     /* fallback background */
}

.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* 🔑 crops evenly */
  display: block;
}

/* Active state */
.thumbnail-item.active {
  border-color: var(--primary);
}

/* Hover polish (optional) */
.thumbnail-item:hover img {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}
@media (max-width: 600px) {
  .thumbnail-gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===============================
   DESKTOP GALLERY WIDTH SYNC
   =============================== */
.product-gallery {
  max-width: 700px;      /* SINGLE source of truth */
  margin: 0 auto;
}

.main-image-container {
  width: 100%;
}

.thumbnail-gallery {
  width: 100%;
}


/* ==================================================
   PRODUCT DETAILS
================================================== */
.product-details-section {
  animation: fadeInRight 0.8s ease;
}

.product-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-dark);
}

.product-subtitle {
  color: rgb(217, 143, 32);
  font-weight: 600;
  margin-top: 6px;
}

.product-price {
  display: flex;
  gap: 30px;
  margin: 25px 0;
  padding: 20px 0;
  border-top: 2px solid #f0f0f0;
  border-bottom: 2px solid #f0f0f0;
}

.mrp {
  font-size: 1.3rem;
  font-weight: 700;
  color: #031428;
}
.product-description {
  line-height: 1.8;
  color: var(--text-muted);
}

.product-cta {
  display: flex;
  gap: 15px;
  margin: 30px 0;
}

.product-cta .btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
}

.btn-primary {
  background: rgb(217, 143, 32);
  color: #ffffff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(216, 136, 7, 0.35);
}

.product-badge {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(216, 178, 7, 0.1);
  color: rgb(217, 143, 32);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}
/* ==================================================
   BENEFITS SECTION */          

.benefits-editorial {
  padding: 50px 14px;
  background: linear-gradient(180deg, #fbd86f 0% , rgb(237, 170, 70)70%);
}

.benefits-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 90px;
  align-items: center;
}

/* LEFT CONTENT */
.benefits-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgb(217, 143, 32);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.benefits-content h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #031428;
  margin-bottom: 18px;
}

.benefits-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #2f0d0d;
  max-width: 440px;
}

/* RIGHT SIDE */
.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 36px;
}

/* BENEFIT ITEM */
.benefit-item {
  display: flex;
  gap: 18px;
  padding: 24px 26px;
  border-radius: 20px;
  background: linear-gradient(145deg, #ffffff, #f2fff7);
  transition: all 0.35s ease;
}

.benefit-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* ICON */
.benefit-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgb(217, 143, 32);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 22px linear-gradient(180deg, #907527 0% , rgb(237, 170, 70)70%);
}

.benefit-icon i {
  font-size: 18px;
  color: #ffffff;
}

/* TEXT */
.benefit-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #031428;
  margin-bottom: 6px;
}

.benefit-item p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #302f2f;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 992px) {
  .benefits-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .benefits-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .benefits-editorial {
    padding: 90px 16px;
  }

  .benefits-content h2 {
    font-size: 2.2rem;
  }
}
/* =========================================
   DESKTOP WIDTH ENHANCEMENT (ONLY DESKTOP)
========================================= */

@media (min-width: 1200px) {
  .benefits-wrapper {
    max-width: 1400px;   /* increased from 1200px */
    gap: 120px;          /* more breathing space */
  }

  .benefits-content h2 {
    font-size: 3.4rem;   /* slightly bolder hero feel */
  }

  .benefits-list {
    gap: 36px 48px;      /* wider grid spacing */
  }
}
/* ======= End BENEFITS SECTION ======= */


/* ================================
   Key Ingredients Section Styles
   ================================ */

.ingredients {
  text-align: center;
  margin: 0;

  font-family: 'Segoe UI', sans-serif;
}
.green-gradient-bg {
  background:(hsl(0, 0%, 100%));
  padding: 50px;
  border-radius: 12px;
  color: #fff; /* text color for contrast */
  text-align: center;
}


.ingredients h2
{
  font-size: 3rem;
  font-weight: 800;
  color: #031428;
  margin-bottom: 28px;
}



/* Default: Desktop grid layout */
.ingredients-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 25px;
  padding: 0 20px;
  margin-bottom: 35px;
}

.ingredient {
  background: radial-gradient(hsl(0, 0%, 100%), rgb(228, 180, 109));
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ingredient:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.ingredient img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.ingredient:hover img {
  transform: scale(1.05);
}

.ingredient p {
  margin-top: 12px;
  font-size: 1em;
  font-weight: 600;
  color: #444;
}

/* Tablet view */
@media (max-width: 1024px) {
  .ingredients-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Mobile view: horizontal swipe */
@media (max-width: 600px) {
  .ingredients {
    padding: 0;
    padding-bottom: 50px;
    margin: 0;
    width: 100vw;
    overflow-x: hidden;
  }

  .ingredients-row {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    margin: 0;
    padding: 0;
    width: 100vw;
  }

  .ingredient {
    flex: 0 0 100vw;
    scroll-snap-align: start;
    box-sizing: border-box;
    padding: 20px;
  }

  .ingredients-row::-webkit-scrollbar {
    display: none;
  }

  .ingredients-row {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}


/* ======= End Key Ingredients Section Styles ======= */
/* =========================================
   HOW TO USE – NUMBERED STEPS (PREMIUM)
========================================= */

.usage-editorial {
  padding: 120px 24px;
  background: linear-gradient(180deg, #fbd86f 0% , rgb(237, 170, 70)70%);
}

.usage-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 90px;
  align-items: center;
}

/* LEFT CONTENT */
.usage-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgb(217, 143, 32);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.usage-content h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #031428;
  margin-bottom: 18px;
}

.usage-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #2f0d0d;
  max-width: 420px;
}

/* RIGHT STEPS */
.usage-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

/* STEP CARD */
.usage-step {
  position: relative;
  padding: 36px 32px;
  border-radius: 22px;
  background: linear-gradient(145deg, #ffffff, #f2fff7);
  transition: all 0.35s ease;
  overflow: hidden;
}

.usage-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(225, 220, 220, 0.08);
}

/* NUMBER */
.step-number {
  display: block;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 18px;

  /* Hero gradient */
  background: rgb(217, 143, 32);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  opacity: 100%;
}

/* CONTENT */
.step-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #031428;
  margin-bottom: 10px;
}

.step-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #5b3407;
  max-width: 260px;
}

/* ACCENT LINE */
.usage-step::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 32px;
  width: 40px;
  height: 3px;
  border-radius: 2px;
  background: rgb(217, 143, 32);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (min-width: 1200px) {
  .usage-wrapper {
    max-width: 1400px; /* desktop width boost */
  }
}

@media (max-width: 992px) {
  .usage-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .usage-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .usage-editorial {
    padding: 90px 16px;
  }

  .usage-content h2 {
    font-size: 2.2rem;
  }

  .step-number {
    font-size: 2.6rem;
  }
}

/* =========================================
   PRODUCT DETAILS – MINIMAL SNAPSHOT
========================================= */

.product-details-minimal {
  padding: 120px 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f3fff8 100%);
}

.details-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 90px;
  align-items: center;
}

/* LEFT CONTENT */
.details-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(216, 192, 7, 0.15);
  color:rgb(217, 143, 32);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.details-content h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #031428;
  margin-bottom: 18px;
}

.details-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #1d0a0a;
  max-width: 420px;
}

/* RIGHT CARDS */
.details-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* CARD */
.detail-card {
  padding: 28px 26px;
  border-radius: 22px;
  background: rgb(217, 143, 32);
  transition: all 0.35s ease;
}

.detail-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* LABEL & VALUE */
.detail-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color:rgb(37, 27, 11);
  margin-bottom: 8px;
}

.detail-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
}

/* SPECIAL STYLES */
/* .detail-card.highlight {
  background:  linear-gradient(135deg, #07d83b, #149e1d);

.detail-card.wide {
  grid-column: span 2;
} */

/* =========================================
   RESPONSIVE
========================================= */

@media (min-width: 1200px) {
  .details-wrapper {
    max-width: 1400px;
  }
}

@media (max-width: 992px) {
  .details-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .details-cards {
    grid-template-columns: 1fr;
  }

  .detail-card.wide {
    grid-column: span 1;
  }
}

@media (max-width: 600px) {
  .product-details-minimal {
    padding: 90px 16px;
  }

  .details-content h2 {
    font-size: 2.2rem;
  }
}
/* =========================================
   END PRODUCT DETAILS – MINIMAL SNAPSHOT
========================================= */
/* =========================================
   EXPLORE OTHER PRODUCTS – COMPACT UI
========================================= */

.explore-products {
  padding: 80px 24px;
  background:linear-gradient(180deg, #60dd5e 0%, #16a552 100%);
}

.explore-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.explore-header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 50px;
}

.explore-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.explore-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #031428;
  margin-bottom: 10px;
}

.explore-header p {
  font-size: 0.95rem;
  color: #1c1b1b;
  line-height: 1.6;
}

/* GRID */
.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.explore-card {
  background: linear-gradient(145deg, #ffffff, #f2fff7);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.explore-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

/* IMAGE – SHORTER HEIGHT */
.card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.explore-card:hover img {
  transform: scale(1.05);
}

/* CONTENT */
.card-content {
  padding: 20px 20px 24px;
  text-align: center;
}

.card-content h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #031428;
  margin-bottom: 4px;
}

.card-content p {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 10px;
}

/* PRICE */
.card-price {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: #07d83b;
  margin-bottom: 12px;
}

/* BUTTON */
.card-btn {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #07d83b, #149e1d);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(7, 216, 59, 0.35);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (min-width: 1200px) {
  .explore-wrapper {
    max-width: 1300px;
  }
}

@media (max-width: 992px) {
  .explore-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .explore-products {
    padding: 70px 16px;
  }

  .explore-header h2 {
    font-size: 2rem;
  }

  .explore-grid {
    grid-template-columns: 1fr;
  }
}


/* ==================================================
   ANIMATIONS
================================================== */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}




/* CONTACT CTA SECTION */
.contact-cta-section {
  padding: 90px 24px;
  background: linear-gradient(180deg, #fbd86f 0% , rgb(237, 170, 70)70%);
  position: relative;
  overflow: hidden;
}

/* Decorative shapes */
.contact-cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.contact-cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 360px;
  height: 360px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.contact-cta-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

/* CONTENT */
.contact-cta-content {
  max-width: 760px;
  margin: auto;
  color: #ffffff;
  animation: fadeInUp 1s ease;
}

.cta-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background:rgb(217, 143, 32);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.contact-cta-content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.contact-cta-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  opacity: 0.95;
  margin-bottom: 36px;
}

/* BUTTONS */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 14px 34px;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.35s ease;
}

/* PRIMARY */
.cta-btn.primary {
  background: #ffffff;
  color:rgb(217, 143, 32);
}

.cta-btn.primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

/* SECONDARY */
.cta-btn.secondary {
  border: 2px solid #ffffff;
  color: #ffffff;
}

.cta-btn.secondary:hover {
  background: #ffffff;
  color: rgb(217, 143, 32);
  transform: translateY(-4px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-cta-content h2 {
    font-size: 2.2rem;
  }

  .contact-cta-content p {
    font-size: 1.05rem;
  }
}
