/* ===================================================
   NIVA FOODS — Multipage Styling Extensions
   Covers Breadcrumbs, Product Details, Recipes, 
   About Timeline, FAQ, and Policy pages.
   =================================================== */

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  padding: 1.5rem 0;
  font-size: 0.9rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.breadcrumbs a {
  color: var(--text-mid);
  transition: var(--transition);
  font-weight: 500;
}
.breadcrumbs a:hover {
  color: var(--green-700);
}
.breadcrumbs span.separator {
  color: var(--text-muted);
}
.breadcrumbs span.current {
  color: var(--text-dark);
  font-weight: 600;
}

/* ===== SUBPAGE HERO / BANNER ===== */
.subpage-banner {
  background: linear-gradient(135deg, var(--green-900) 0%, #174d17 100%);
  color: var(--white);
  padding: 1.8rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}
.subpage-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 10% 20%, rgba(92, 184, 92, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.subpage-banner h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.subpage-banner p {
  font-size: 0.92rem;
  color: var(--green-100);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== PRODUCT CATALOG PAGE SPECIFICS ===== */
.catalog-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.catalog-search-wrap {
  position: relative;
  flex: 1;
  max-width: 400px;
}
.catalog-search-input {
  width: 100%;
  padding: 12px 20px 12px 45px;
  background: var(--white);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.catalog-search-input:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(45, 125, 45, 0.15);
}
.catalog-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  pointer-events: none;
}
.catalog-filter-info {
  font-size: 0.95rem;
  color: var(--text-mid);
  font-weight: 500;
}

/* ===== PRODUCT DETAIL PAGE ===== */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 4rem;
  margin-bottom: 5rem;
  align-items: start;
}
@media (max-width: 992px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Gallery Section */
.product-gallery {
  position: sticky;
  top: 150px;
}
.gallery-main-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--cream-200);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-main-wrap:hover .gallery-main-img {
  transform: scale(1.05);
}

/* Info Section */
.product-info-panel h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--green-900);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.product-info-panel .product-badges {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.product-info-panel .product-badge {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 4px 12px;
  background: var(--green-100);
  color: var(--green-800);
  border-radius: var(--radius-full);
}
.product-info-panel .product-badge.orange-badge {
  background: #fef3c7;
  color: #d97706;
}

.product-info-panel .price-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.product-info-panel .price-curr {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green-900);
}
.product-info-panel .price-orig {
  font-size: 1.4rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.product-info-panel .price-save {
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--gold-500);
  color: var(--white);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.product-info-panel .product-short-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 2rem;
}

/* Weight Selector */
.selector-label {
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 0.75rem;
  display: block;
  font-size: 1rem;
}
.detail-weight-opts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.detail-weight-opts .weight-btn {
  background: var(--white);
  border: 2px solid var(--cream-300);
  border-radius: var(--radius-md);
  padding: 12px 6px;
  text-align: center;
  transition: var(--transition);
}
.detail-weight-opts .weight-btn strong {
  display: block;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.detail-weight-opts .weight-btn .btn-subtext {
  font-size: 0.75rem;
  color: var(--text-light);
}
.detail-weight-opts .weight-btn:hover {
  border-color: var(--green-300);
}
.detail-weight-opts .weight-btn.active {
  border-color: var(--green-600);
  background: var(--green-50);
}
.detail-weight-opts .weight-btn.active strong {
  color: var(--green-800);
}

/* Qty and Actions Row */
.purchase-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.qty-selector {
  display: flex;
  align-items: center;
  border: 2px solid var(--cream-300);
  border-radius: var(--radius-full);
  background: var(--white);
  padding: 4px;
  height: 52px;
}
.qty-selector button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  color: var(--text-dark);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.qty-selector button:hover {
  background: var(--cream-200);
}
.qty-selector input {
  width: 45px;
  text-align: center;
  border: none;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  background: transparent;
}
.qty-selector input::-webkit-outer-spin-button,
.qty-selector input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.purchase-row .btn-add-cart {
  flex: 2;
  min-width: 200px;
  height: 52px;
  border-radius: var(--radius-full);
  font-size: 1.1rem;
  font-weight: 600;
  background: var(--green-800);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.purchase-row .btn-add-cart:hover {
  background: var(--green-900);
  transform: translateY(-2px);
}

.purchase-row .btn-buy-whatsapp {
  flex: 1.5;
  min-width: 180px;
  height: 52px;
  border-radius: var(--radius-full);
  font-size: 1.05rem;
  font-weight: 600;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.purchase-row .btn-buy-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
}

/* Key Highlights Row */
.product-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
  border-top: 1px dashed var(--cream-300);
  border-bottom: 1px dashed var(--cream-300);
  padding: 1.5rem 0;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}
.highlight-item span.icon {
  font-size: 1.3rem;
}

/* Accordion Tab Styles */
.detail-accordions {
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
}
.accordion-item {
  border-bottom: 1px solid var(--cream-300);
}
.accordion-item:last-child {
  border-bottom: none;
}
.accordion-header {
  width: 100%;
  text-align: left;
  padding: 18px 24px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-900);
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}
.accordion-header:hover {
  background: var(--cream-100);
}
.accordion-header svg {
  transition: var(--transition);
  color: var(--green-600);
}
.accordion-item.active .accordion-header {
  background: var(--green-50);
}
.accordion-item.active .accordion-header svg {
  transform: rotate(180deg);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion-content-inner {
  padding: 20px 24px;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* Detailed styling inside accordions */
.accordion-content-inner p {
  margin-bottom: 1rem;
}
.accordion-content-inner p:last-child {
  margin-bottom: 0;
}
.accordion-content-inner ul {
  padding-left: 20px;
  list-style-type: disc;
  margin-bottom: 1rem;
}
.accordion-content-inner li {
  margin-bottom: 0.5rem;
}

/* ===== RECIPES HUB ===== */
.recipes-filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.recipe-filter-tab {
  background: var(--white);
  border: 1px solid var(--cream-300);
  color: var(--text-mid);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.recipe-filter-tab:hover {
  border-color: var(--green-300);
}
.recipe-filter-tab.active {
  background: var(--green-700);
  color: var(--white);
  border-color: var(--green-700);
}

.recipes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 5rem;
}
@media (max-width: 992px) {
  .recipes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .recipes-grid {
    grid-template-columns: 1fr;
  }
}

/* Extended Recipe Card */
.recipe-card-extended {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--cream-200);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.recipe-card-extended:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.recipe-card-extended .recipe-img-wrap {
  position: relative;
  aspect-ratio: 1.25 / 1;
  overflow: hidden;
  background: #f7f3ec;
}
.recipe-card-extended .recipe-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  image-rendering: -webkit-optimize-contrast;
}
.recipe-card-extended:hover .recipe-img-wrap img {
  transform: scale(1.05);
}
.recipe-card-extended .recipe-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--green-900);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.12);
  border: 1px solid rgba(255,255,255,0.8);
  z-index: 2;
}
.recipe-card-extended .recipe-details-panel {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.recipe-card-extended h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--green-900);
  margin-bottom: 0.5rem;
}
.recipe-card-extended .recipe-excerpt {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.recipe-card-extended .recipe-meta-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
  border-top: 1px solid var(--cream-200);
  padding-top: 1rem;
  margin-top: auto;
}
.recipe-card-extended .recipe-action-btn {
  width: 100%;
  padding: 12px;
  background: var(--green-700);
  color: #ffffff !important;
  border: none;
  border-radius: var(--radius-md);
  margin-top: 1.2rem;
  font-weight: 700;
  font-size: 0.92rem;
  text-align: center;
  cursor: pointer;
  outline: none;
  position: relative;
  z-index: 10;
  display: block;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(45, 125, 45, 0.25);
}
.recipe-card-extended .recipe-action-btn:hover {
  background: var(--green-800);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(45, 125, 45, 0.4);
}

/* Luxury Recipe Overlay Modal - Perfectly Centered Fixed Viewport */
.recipe-modal {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 999999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 20px !important;
  box-sizing: border-box !important;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.recipe-modal.open {
  opacity: 1 !important;
  pointer-events: auto !important;
}
.recipe-modal-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(7, 35, 15, 0.65) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}
.recipe-modal-content {
  position: relative !important;
  background: #ffffff !important;
  width: 100% !important;
  max-width: 680px !important;
  max-height: 84vh !important;
  margin: auto !important;
  border-radius: 24px !important;
  clip-path: inset(0 round 24px) !important;
  -webkit-clip-path: inset(0 round 24px) !important;
  overflow-y: auto !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2) !important;
  z-index: 1000000 !important;
  animation: recipeModalPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Custom Scrollbar for Modal to eliminate side bleed */
.recipe-modal-content::-webkit-scrollbar {
  width: 5px;
}
.recipe-modal-content::-webkit-scrollbar-track {
  background: transparent;
  margin: 16px 0;
}
.recipe-modal-content::-webkit-scrollbar-thumb {
  background: rgba(7, 59, 24, 0.25);
  border-radius: 10px;
}
.recipe-modal-content::-webkit-scrollbar-thumb:hover {
  background: #073b18;
}

@keyframes recipeModalPop {
  from { transform: translateY(24px) scale(0.96); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.recipe-modal-header {
  padding: 20px 26px;
  background: linear-gradient(135deg, #073b18 0%, #155e2b 100%);
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.recipe-modal-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  color: #ffffff;
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.recipe-modal-close {
  background: rgba(255, 255, 255, 0.15);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  line-height: 1;
}
.recipe-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.recipe-modal-body {
  padding: 24px 26px;
  background: #faf8f5;
}

/* Ingredients Pill Grid Items */
.recipe-modal-body ul.recipe-ing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 10px;
}
.recipe-modal-body ul.recipe-ing-list li {
  background: #ffffff;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  font-size: 0.88rem;
  color: #334155;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}
.recipe-modal-body ul.recipe-ing-list li::before {
  content: "🌿";
  font-size: 0.85rem;
}

/* Step Cards */
.recipe-modal-body ol.recipe-step-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  counter-reset: recipe-step;
}
.recipe-modal-body ol.recipe-step-list li {
  position: relative;
  counter-increment: recipe-step;
  background: #ffffff;
  padding: 12px 16px 12px 48px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  margin-bottom: 8px;
  font-size: 0.88rem;
  color: #334155;
  line-height: 1.55;
  box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}
.recipe-modal-body ol.recipe-step-list li::before {
  content: counter(recipe-step);
  position: absolute;
  left: 14px;
  top: 12px;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #073b18, #16a34a);
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.recipe-modal-body h4:first-of-type {
  margin-top: 0;
}

/* Sticky Modal Footer Bar */
.recipe-modal-footer {
  padding: 16px 28px 20px 28px !important;
  background: #ffffff !important;
  border-top: 1px solid #e2e8f0 !important;
  margin-top: 0 !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  position: sticky !important;
  bottom: 0 !important;
  z-index: 10 !important;
  border-radius: 0 0 24px 24px !important;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.03) !important;
}
.recipe-modal-footer .recipe-modal-buy-text {
  font-weight: 700 !important;
  color: #073b18 !important;
  font-size: 0.95rem !important;
}
.recipe-modal-footer .recipe-modal-buy-btn {
  background: linear-gradient(135deg, #073b18, #16a34a) !important;
  color: #ffffff !important;
  padding: 10px 22px !important;
  border-radius: 12px !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.28) !important;
  transition: all 0.25s ease !important;
}
.recipe-modal-footer .recipe-modal-buy-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(22, 163, 74, 0.4) !important;
}
.recipe-modal-body ul, .recipe-modal-body ol {
  padding-left: 20px;
  color: var(--text-mid);
  line-height: 1.7;
}
.recipe-modal-body li {
  margin-bottom: 0.5rem;
}
.recipe-modal-buy-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px dashed var(--cream-300);
  flex-wrap: wrap;
  gap: 1rem;
}
.recipe-modal-buy-text {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 600;
}
.recipe-modal-buy-btn {
  background: var(--green-700);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}
.recipe-modal-buy-btn:hover {
  background: var(--green-800);
}

/* ===== ABOUT PAGE SPECIFICS ===== */
.about-detailed-story {
  margin: 5rem 0;
}
.process-timeline {
  margin-top: 4rem;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0; width: 4px;
  background: var(--cream-300);
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .process-timeline::before {
    left: 20px;
  }
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  position: relative;
}
@media (max-width: 768px) {
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-left: 45px;
  }
}
.timeline-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--green-600);
  border: 4px solid var(--cream-100);
  position: absolute;
  left: 50%; top: 20px;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 0 4px var(--green-100);
}
@media (max-width: 768px) {
  .timeline-dot {
    left: 20px;
    transform: translateX(-50%);
  }
}
.timeline-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--cream-200);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.timeline-item:nth-child(even) .timeline-card {
  grid-column: 2;
}
.timeline-item:nth-child(odd) .timeline-card {
  grid-column: 1;
  text-align: right;
}
@media (max-width: 768px) {
  .timeline-item:nth-child(odd) .timeline-card {
    grid-column: auto;
    text-align: left;
  }
}
.timeline-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--green-900);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.timeline-card p {
  color: var(--text-mid);
  font-size: 0.95rem;
}

/* ===== CONTACT & FAQ ACCORDIONS ===== */
.faq-section {
  margin: 5rem 0;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 800px;
  margin: 3rem auto 0 auto;
}
.faq-item {
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
}
.faq-header {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  text-align: left;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--green-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}
.faq-header:hover {
  background: var(--cream-100);
}
.faq-header svg {
  transition: var(--transition);
  color: var(--green-600);
  flex-shrink: 0;
  margin-left: 15px;
}
.faq-item.active .faq-header {
  background: var(--green-50);
}
.faq-item.active .faq-header svg {
  transform: rotate(180deg);
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-content-inner {
  padding: 20px 24px;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
  border-top: 1px solid var(--cream-300);
}

/* ===== POLICY PAGES SPECIFICS ===== */
.policy-page-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
  align-items: start;
}
@media (max-width: 992px) {
  .policy-page-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.policy-sidebar {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--cream-200);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 150px;
}
.policy-sidebar h3 {
  color: var(--green-900);
  font-size: 1.15rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
  border-bottom: 2px solid var(--green-100);
  padding-bottom: 10px;
}
.policy-sidebar ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.policy-sidebar a {
  color: var(--text-mid);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  display: block;
}
.policy-sidebar a:hover,
.policy-sidebar li.active a {
  color: var(--green-700);
  font-weight: 600;
  padding-left: 4px;
}

.policy-content-card {
  background: var(--white);
  padding: 3rem 4rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-200);
  box-shadow: var(--shadow-md);
}
@media (max-width: 768px) {
  .policy-content-card {
    padding: 2rem;
  }
}
.policy-content-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--green-900);
  margin-bottom: 1.5rem;
}
.policy-content-card .policy-date {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  display: block;
}
.policy-content-card h4 {
  font-size: 1.2rem;
  color: var(--green-800);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.policy-content-card p {
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.98rem;
}
.policy-content-card ul {
  padding-left: 20px;
  list-style-type: disc;
  margin-bottom: 1.5rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.policy-content-card li {
  margin-bottom: 0.5rem;
}

/* ===== NAVIGATION FIXES & GLASSMORPHISM ===== */
.nav-link {
  white-space: nowrap !important;
}
.navbar.scrolled {
  background: rgba(250, 247, 242, 0.8) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

/* ===== PREMIUM UI/UX ENHANCEMENTS ===== */

/* 1. Dynamic Hover Glows on Product Cards */
.product-card {
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease !important;
}
.product-card.card-beetroot:hover {
  box-shadow: 0 12px 30px rgba(122, 12, 46, 0.15) !important;
  border-color: rgba(122, 12, 46, 0.25) !important;
}
.product-card.card-abc:hover {
  box-shadow: 0 12px 30px rgba(176, 48, 96, 0.15) !important;
  border-color: rgba(176, 48, 96, 0.25) !important;
}
.product-card.card-amla:hover {
  box-shadow: 0 12px 30px rgba(79, 121, 66, 0.15) !important;
  border-color: rgba(79, 121, 66, 0.25) !important;
}
.product-card.card-moringa:hover {
  box-shadow: 0 12px 30px rgba(46, 107, 46, 0.15) !important;
  border-color: rgba(46, 107, 46, 0.25) !important;
}
.product-card.card-banana:hover {
  box-shadow: 0 12px 30px rgba(138, 154, 91, 0.15) !important;
  border-color: rgba(138, 154, 91, 0.25) !important;
}
.product-card.card-carrot:hover {
  box-shadow: 0 12px 30px rgba(237, 145, 33, 0.15) !important;
  border-color: rgba(237, 145, 33, 0.25) !important;
}

/* 2. Micro-interactions for Detail Size & Quantity Selectors */
.detail-weight-opts .weight-btn {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  border-width: 2px !important;
}
.detail-weight-opts .weight-btn:hover {
  transform: translateY(-2px);
  border-color: var(--green-400) !important;
}
.detail-weight-opts .weight-btn.active {
  border-color: var(--green-600) !important;
  background: var(--green-50) !important;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 15px rgba(45, 125, 45, 0.12) !important;
}
.detail-weight-opts .weight-btn:active {
  transform: translateY(0);
}
.qty-selector button {
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.qty-selector button:active {
  transform: scale(0.85);
}

/* 3. Call To Action Pulse Animations */
@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.btn-buy-whatsapp {
  animation: pulse-whatsapp 2s infinite;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}
.btn-buy-whatsapp:hover {
  animation: none !important;
  background: #20ba59 !important;
  transform: translateY(-2.5px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35) !important;
}

@keyframes pulse-cta {
  0% { box-shadow: 0 0 0 0 rgba(45, 125, 45, 0.3); }
  70% { box-shadow: 0 0 0 10px rgba(45, 125, 45, 0); }
  100% { box-shadow: 0 0 0 0 rgba(45, 125, 45, 0); }
}
.nav-cta {
  animation: pulse-cta 2.5s infinite;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}
.nav-cta:hover {
  animation: none !important;
  transform: translateY(-1.5px);
  box-shadow: 0 6px 20px rgba(45, 125, 45, 0.25) !important;
}

/* 4. Beautiful Recipe Modal Badges & Typography */

/* 5. Interactive About Us Timeline Steps */
.timeline-item {
  opacity: 0.9;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.timeline-item:hover {
  opacity: 1;
  transform: translateY(-4px);
}
.timeline-item:hover .timeline-dot {
  background: var(--gold-500) !important;
  box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.25) !important;
  transform: translateX(-50%) scale(1.2);
}
.timeline-item:hover .timeline-card {
  border-color: var(--green-500) !important;
  box-shadow: var(--shadow-md) !important;
}
.timeline-card {
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

/* 6. Hover effects for FAQ Accordions */
.faq-item {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-color: var(--cream-300);
}
.faq-item:hover {
  border-color: var(--green-300);
  box-shadow: 0 4px 12px rgba(45, 125, 45, 0.03);
}
.faq-item.active {
  border-color: var(--green-500) !important;
  box-shadow: 0 6px 18px rgba(45, 125, 45, 0.06) !important;
}
.faq-header {
  transition: all 0.3s ease;
}
.faq-header:hover {
  color: var(--green-800) !important;
}

/* ===== NEW PREMIUM UI/UX ADDITIONS ===== */

/* 1. Cart Badge Pop Animation */
@keyframes cartPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.4); }
  100% { transform: scale(1); }
}
.pop-anim {
  animation: cartPop 0.3s ease-out;
}

/* 2. Card Image Zoom on Hover */
.product-card-img-wrap {
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.product-card-img {
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important;
}
.product-card:hover .product-card-img {
  transform: scale(1.06) !important;
}

/* 3. Gold-Leaf Heading Accents */
.related-products-section h2, 
.faq-section h2,
.timeline-section h2 {
  position: relative;
  padding-bottom: 25px !important;
}
.related-products-section h2::after,
.faq-section h2::after,
.timeline-section h2::after {
  content: '🌿';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.1rem;
  background: var(--cream-100);
  padding: 0 12px;
  z-index: 1;
}
.related-products-section h2::before,
.faq-section h2::before,
.timeline-section h2::before {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

/* 4. Luxurious Nutrition Table Layout */
.nutrition-table {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  border: 1px solid var(--cream-300) !important;
}
.nutrition-table tr:nth-child(odd) {
  background-color: rgba(250, 247, 242, 0.5);
}
.nutrition-table tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.8);
}
.nutrition-table tr.highlight {
  background-color: rgba(212, 175, 55, 0.08) !important;
  color: var(--green-900) !important;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}
.nutrition-table td {
  padding: 10px 14px !important;
}

/* 5. Scroll-Triggered Reveal Animations */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NEWSLETTER SIGNUP
============================================ */
.footer-newsletter {
  background: linear-gradient(135deg, #0f3d0f 0%, #1a5c1a 50%, #0f3d0f 100%);
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.newsletter-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 0.4rem;
}
.newsletter-text p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 360px;
}
.newsletter-form {
  flex: 1;
  min-width: 280px;
  max-width: 480px;
}
.newsletter-input-wrap {
  display: flex;
  gap: 0;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.newsletter-input-wrap input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  outline: none;
  font-size: 0.95rem;
  font-family: 'Outfit', sans-serif;
  background: rgba(255,255,255,0.95);
  color: #1a1a1a;
}
.newsletter-btn {
  padding: 14px 24px;
  background: linear-gradient(135deg, #d4af37, #b8960c);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}
.newsletter-btn:hover {
  background: linear-gradient(135deg, #e8c53a, #d4af37);
  transform: none;
}
.newsletter-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 10px;
  padding-left: 8px;
}
@media (max-width: 768px) {
  .newsletter-inner {
    flex-direction: column;
    text-align: center;
  }
  .newsletter-text p { max-width: 100%; }
  .newsletter-form { max-width: 100%; width: 100%; }
}

/* ============================================
   STICKY ADD-TO-CART BAR (Product Detail Pages)
============================================ */
.sticky-cart-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(45, 125, 45, 0.15);
  box-shadow: 0 -6px 30px rgba(0, 0, 0, 0.08);
  padding: 12px 20px;
  z-index: 500;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.sticky-cart-bar.visible {
  transform: translateY(0);
}
.sticky-cart-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.sticky-product-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.sticky-product-img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--cream-300);
}
.sticky-product-name {
  font-weight: 700;
  color: var(--green-900);
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-product-price {
  font-size: 0.85rem;
  color: var(--text-light);
}
.sticky-product-price strong {
  color: var(--green-700);
}
.sticky-cart-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-shrink: 0;
}
.sticky-add-btn {
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.sticky-add-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(45,125,45,0.3);
}
.sticky-whatsapp-btn {
  padding: 10px 18px;
  background: #25D366;
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sticky-whatsapp-btn:hover {
  background: #20ba59;
  transform: translateY(-1px);
}
@media (max-width: 576px) {
  .sticky-product-info { display: none; }
  .sticky-cart-actions { width: 100%; justify-content: center; }
  .sticky-add-btn, .sticky-whatsapp-btn { flex: 1; justify-content: center; }
}

/* ============================================
   CUSTOMER REVIEWS SECTION
============================================ */
.reviews-section {
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid var(--cream-300);
}
.reviews-section h2 {
  font-family: 'Playfair Display', serif;
  color: var(--green-900);
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 0.5rem;
}
.reviews-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 3rem;
}
.reviews-stars-summary {
  text-align: center;
  margin-bottom: 2.5rem;
}
.reviews-avg-score {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--green-900);
  line-height: 1;
}
.reviews-stars {
  color: #f5a623;
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin: 6px 0;
}
.reviews-total {
  font-size: 0.85rem;
  color: var(--text-light);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: white;
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 2px 15px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(45,125,45,0.08);
  border-color: var(--green-200);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.review-author-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--green-900);
  font-weight: 700;
}
.review-author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.review-rating {
  color: #f5a623;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.review-badge {
  font-size: 0.72rem;
  background: var(--green-50);
  color: var(--green-700);
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 600;
  border: 1px solid rgba(45,125,45,0.12);
  display: inline-block;
  margin-bottom: 0.75rem;
}
.review-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
  font-style: italic;
}

/* ============================================
   MOBILE RESPONSIVENESS FIXES
============================================ */
@media (max-width: 768px) {
  /* Product detail grid */
  .product-detail-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .gallery-main-wrap {
    max-width: 320px !important;
    margin: 0 auto !important;
  }
  /* About story grid */
  .about-detailed-story {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .about-detailed-story img {
    display: none;
  }
  /* Contact grid */
  .contact-grid {
    grid-template-columns: 1fr !important;
  }
  /* Policy page */
  .policy-page-container {
    flex-direction: column !important;
  }
  .policy-sidebar {
    width: 100% !important;
    position: static !important;
  }
  /* Subpage banner */
  .subpage-banner h1 {
    font-size: 1.8rem !important;
  }
  /* Purchase row wrap */
  .purchase-row {
    flex-wrap: wrap !important;
    gap: 0.75rem !important;
  }
  .purchase-row .btn-add-cart,
  .purchase-row .btn-buy-whatsapp {
    flex: 1 !important;
    justify-content: center !important;
    min-width: 140px !important;
  }
  /* Detail weight opts */
  .detail-weight-opts {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  /* Timeline */
  .process-timeline::before {
    left: 20px !important;
  }
  .timeline-dot {
    left: 20px !important;
  }
  .timeline-card {
    margin-left: 50px !important;
  }
  /* Related products 1 col */
  .related-products-section .products-grid {
    grid-template-columns: 1fr !important;
  }
  /* Recipe cards */
  .recipes-grid {
    grid-template-columns: 1fr !important;
  }
  /* Catalog controls */
  .catalog-controls {
    flex-direction: column !important;
    align-items: stretch !important;
  }
}

@media (max-width: 480px) {
  /* Hero on very small screens */
  .hero-title { font-size: 2rem !important; }
  .hero-desc { font-size: 0.9rem !important; }
  .hero-cta-row { flex-direction: column !important; }
  /* Nav CTA hide on tiny */
  .nav-cta { display: none !important; }
  /* Breadcrumbs font */
  .breadcrumbs { font-size: 0.78rem !important; }
  /* Section padding */
  main { padding-top: 110px !important; }
}

/* ============================================
   RECIPE MODAL BUY BUTTON FIX
============================================ */
.recipe-modal-buy-btn {
  background: linear-gradient(135deg, var(--green-600), var(--green-700)) !important;
  color: white !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  transition: all 0.3s ease !important;
  display: inline-block !important;
}
.recipe-modal-buy-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(45,125,45,0.25) !important;
}

/* ============================================
   HERO ANIMATED GRADIENT UPGRADE
============================================ */
.hero {
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(212, 175, 55, 0.04) 0%,
    rgba(45, 125, 45, 0.06) 50%,
    rgba(122, 12, 46, 0.04) 100%);
  animation: heroGradientShift 8s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
@keyframes heroGradientShift {
  0% { opacity: 0.5; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.03); }
}


/* ============================================
   PRODUCT GALLERY THUMBNAILS
============================================ */
.gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--green-300) transparent;
}
.gallery-thumbs::-webkit-scrollbar { height: 4px; }
.gallery-thumbs::-webkit-scrollbar-track { background: transparent; }
.gallery-thumbs::-webkit-scrollbar-thumb { background: var(--green-300); border-radius: 4px; }
.gallery-thumb-btn {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 12px;
  border: 2px solid var(--cream-300);
  background: white;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.gallery-thumb-btn img { width:100%; height:100%; object-fit:cover; display:block; transition: transform 0.3s ease; }
.gallery-thumb-btn:hover { border-color: var(--green-400); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(45,125,45,0.15); }
.gallery-thumb-btn:hover img { transform: scale(1.08); }
.gallery-thumb-btn.active { border-color: var(--green-600); box-shadow: 0 0 0 3px rgba(45,125,45,0.15); }
.gallery-main-img { transition: opacity 0.25s ease; }
@media (max-width: 576px) { .gallery-thumb-btn { width: 58px; height: 58px; } }

/* ============================================
   MASTER HERO & NAVBAR STYLING (PIXEL-PERFECT)
============================================ */

/* 1. Navbar Adjustments */
.navbar.navbar-master {
  background: #ffffff;
  border-bottom: 1px solid rgba(45, 125, 45, 0.1);
  box-shadow: 0 2px 15px rgba(0,0,0,0.03);
}

.nav-link {
  color: #1b381b;
  font-weight: 500;
}

.nav-link.active {
  color: #246524;
  font-weight: 700;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2.5px;
  background: #246524;
  border-radius: 2px;
}

.nav-cta {
  background: #246524;
  color: white;
  border-radius: 50px;
  padding: 10px 22px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: #1c521c;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(36, 101, 36, 0.25);
}

/* 2. Announcement Bar */
.announcement-bar.announcement-master {
  background: #174217;
  color: #ffffff;
  padding: 9px 0;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* 3. Hero Section Container */
.hero-master {
  background: #FAF7F2;
  padding: 50px 0 40px;
  position: relative;
  overflow: hidden;
}





/* Subtle organic blob decorations */
.hero-master::before {
  content: none;
}
.hero-master::after {
  content: none;
}

.hero-master-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 0;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Left Content */
.hero-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #246524;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
}

.eyebrow-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #246524;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(36,101,36,0.18);
}

.hero-editorial-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.6rem, 4.2vw, 4.2rem);
  font-weight: 700;
  color: #1a3a1a;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.title-leaf {
  font-size: 0.7em;
  margin-left: 6px;
  vertical-align: middle;
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  max-width: 320px;
}

.div-line {
  flex: 1;
  height: 1.5px;
  background: rgba(45, 125, 45, 0.25);
}

.div-leaf {
  font-size: 0.9rem;
}

.hero-editorial-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  color: #5a6e5a;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 440px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-master-solid {
  background: #246524;
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 25px rgba(36, 101, 36, 0.25);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  display: inline-flex;
  align-items: center;
}

.btn-master-solid:hover {
  background: #1b521b;
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(36, 101, 36, 0.35);
  color: #ffffff;
}

.btn-master-outline {
  background: rgba(255, 255, 255, 0.85);
  color: #246524;
  border: 2px solid #246524;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-master-outline:hover {
  background: #246524;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Right Showcase — Flat-Lay Image */
.hero-master-right {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0;
}

.botanical-leaf {
  position: absolute;
  font-size: 3rem;
  opacity: 0.8;
  pointer-events: none;
  z-index: 1;
}

.leaf-top-right {
  top: 0; right: 0;
  transform: rotate(25deg);
}

.leaf-bottom-right {
  bottom: 0; right: -10px;
  transform: rotate(-15deg);
}

/* Pouch Composition Layout (Percentage-based, 100% visible, ZERO clipping) */
/* ============================================================
   HERO PRODUCT SHOWCASE — Clean Flat-Lay Style
   No cards, no borders, no backgrounds. Pure product images.
   ============================================================ */

.pouch-composition {
  position: relative;
  width: 100%;
  max-width: 580px;
  height: 440px;
  margin: 0 auto;
}

/* Completely transparent pouch box — NO card, NO border, NO bg */
.pouch-box {
  position: absolute;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

.pouch-box:hover {
  z-index: 20 !important;
}

/* Images: pure product photo with soft real shadow */
.pouch-shadow-img {
  width: 100%;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 18px 28px rgba(20,50,20,0.22))
          drop-shadow(0 4px 10px rgba(20,50,20,0.12));
  transition: filter 0.4s ease, transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

.pouch-box:hover .pouch-shadow-img {
  filter: drop-shadow(0 28px 40px rgba(20,50,20,0.30))
          drop-shadow(0 8px 18px rgba(20,50,20,0.16));
  transform: scale(1.06);
}

/* Ingredient label — simple clean pill, no colors */
.ingredient-tag {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #173417;
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(0,0,0,0.10);
  border: 1px solid rgba(45,125,45,0.12);
}

/* ── LAYOUT: Natural scattered flat-lay positions ── */

/* Beetroot — TOP LEFT, slight tilt left */
.pouch-beetroot {
  width: 30%;
  top: 2%;
  left: 2%;
  z-index: 3;
  animation: floatBeet 6.2s ease-in-out infinite alternate;
}

/* Moringa — TOP CENTER, largest, hero product */
.pouch-moringa {
  width: 33%;
  top: 0%;
  left: 33%;
  z-index: 5;
  animation: floatMoringa 5.5s ease-in-out infinite alternate;
}

/* Carrot — TOP RIGHT, slight tilt right */
.pouch-carrot {
  width: 30%;
  top: 4%;
  right: 1%;
  z-index: 3;
  animation: floatCarrot 5.8s ease-in-out infinite alternate;
}

/* Amla — BOTTOM LEFT */
.pouch-amla {
  width: 29%;
  bottom: 4%;
  left: 10%;
  z-index: 4;
  animation: floatAmla 7.0s ease-in-out infinite alternate;
}

/* Raw Banana — BOTTOM RIGHT */
.pouch-banana {
  width: 29%;
  bottom: 2%;
  right: 10%;
  z-index: 4;
  animation: floatBanana 6.5s ease-in-out infinite alternate;
}

/* Natural float animations — gentle, organic */
@keyframes floatBeet {
  0%   { transform: translateY(0px)  rotate(-6deg); }
  100% { transform: translateY(-9px) rotate(-4deg); }
}
@keyframes floatMoringa {
  0%   { transform: translateY(0px)   rotate(2deg);  }
  100% { transform: translateY(-13px) rotate(4deg);  }
}
@keyframes floatCarrot {
  0%   { transform: translateY(0px)  rotate(7deg);  }
  100% { transform: translateY(-8px) rotate(5deg);  }
}
@keyframes floatAmla {
  0%   { transform: translateY(0px)   rotate(-3deg); }
  100% { transform: translateY(-11px) rotate(-1deg); }
}
@keyframes floatBanana {
  0%   { transform: translateY(0px)   rotate(2deg);  }
  100% { transform: translateY(-10px) rotate(0deg);  }
}

/* Botanical leaves — keep them natural */
.botanical-leaf {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 4px 8px rgba(45,125,45,0.2));
}
.leaf-top-right    { top: 2%;  right: -10px; font-size: 2.2rem; animation: leafSway 4s ease-in-out infinite; }
.leaf-bottom-right { bottom: 8%; right: -5px; font-size: 1.6rem; animation: leafSway 5.5s ease-in-out infinite reverse; }

@keyframes leafSway {
  0%,100% { transform: rotate(-6deg) scale(1);    }
  50%      { transform: rotate(8deg)  scale(1.07); }
}


/* Trust / Benefits Strip */
.hero-trust-bar-wrap {
  max-width: 1320px;
  margin: 40px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}

.hero-trust-bar {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(25, 55, 20, 0.07), 0 2px 8px rgba(0,0,0,0.02);
  border: 1px solid rgba(45, 125, 45, 0.12);
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  justify-content: center;
  transition: transform 0.25s ease;
}

.trust-bar-item:hover {
  transform: translateY(-2px);
}

.trust-bar-item:hover .trust-bar-icon {
  transform: scale(1.08);
}

.trust-bar-icon {
  transition: transform 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-bar-text strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #173417;
  line-height: 1.2;
}

.trust-bar-text span {
  font-size: 0.8rem;
  color: #637563;
  display: block;
  margin-top: 2px;
}

.trust-bar-divider {
  width: 1px;
  height: 34px;
  background: rgba(45, 125, 45, 0.15);
}

/* Responsive Media Queries */
@media (max-width: 1100px) {
  .hero-master-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding: 0 24px;
  }
  .hero-editorial-desc {
    margin: 0 auto 32px;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-eyebrow {
    justify-content: center;
  }
  .hero-master-right {
    max-width: 540px;
    margin: 0 auto;
  }
  .hero-trust-score {
    margin: 2rem auto 0;
  }
  .hero-trust-bar {
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px;
  }
  .trust-bar-divider {
    display: none;
  }
  .trust-bar-item {
    min-width: 45%;
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .hero-master {
    padding: 50px 0 0;
  }
  .hero-editorial-title {
    font-size: 2.3rem;
  }
  .hero-flatlay-wrap {
    max-width: 100%;
  }
  .trust-bar-item {
    min-width: 100%;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .pouch-box { animation: none !important; }
}


/* ============================================================
   HERO POUCH — FINAL FIX: Remove white JPEG backgrounds
   CSS filter breaks mix-blend-mode in Chrome.
   Use background-blend-mode + no filter approach.
   ============================================================ */

/* Remove ALL styling from pouch-box wrapper */
.pouch-box,
.pouch-beetroot,
.pouch-moringa,
.pouch-carrot,
.pouch-amla,
.pouch-banana {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  isolation: auto !important;
}

/* The image itself — multiply removes white bg */
.pouch-shadow-img {
  mix-blend-mode: multiply !important;
  filter: none !important;
  -webkit-filter: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  /* Soft shadow via outline trick doesn't work — use wrapper shadow */
}

/* Wrapper gets the shadow BEFORE mix-blend so it doesn't affect it */
.pouch-box::after {
  content: none !important;
}

/* Ingredient label stays clean */
.ingredient-tag {
  mix-blend-mode: normal !important;
  isolation: isolate !important;
}
/* Homepage reference hero override */
.hero-master {
  background:
    linear-gradient(90deg, rgba(250, 247, 242, 0.98) 0%, rgba(250, 247, 242, 0.98) 39%, rgba(250, 247, 242, 0.62) 58%, rgba(250, 247, 242, 0.28) 100%),
    #FAF7F2 !important;
  padding: 34px 0 28px !important;
  min-height: 0 !important;
  display: block !important;
  overflow: hidden;
}

.hero-master::before {
  inset: 0 !important;
  width: auto !important;
  height: auto !important;
  background:
    radial-gradient(circle at 2% 22%, rgba(47, 108, 47, 0.14) 0 56px, transparent 120px),
    radial-gradient(circle at 98% 82%, rgba(47, 108, 47, 0.13) 0 72px, transparent 150px) !important;
  border-radius: 0 !important;
}

.hero-master-container {
  max-width: 1360px !important;
  width: 100%;
  padding: 0 34px !important;
  grid-template-columns: minmax(340px, 40%) minmax(0, 60%) !important;
  gap: 18px !important;
  align-items: start !important;
}

.hero-master-left {
  padding: 6px 0 8px !important;
}

.eyebrow-option2 {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  font-size: 0.88rem !important;
  color: #0D4B22 !important;
  letter-spacing: 0 !important;
  margin-bottom: 18px !important;
}

.hero-title-option2 {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: clamp(3rem, 4.85vw, 5.05rem) !important;
  color: #0A3A1A !important;
  line-height: 0.98 !important;
  letter-spacing: 0 !important;
  margin-bottom: 28px !important;
}

.title-leaf {
  display: inline-block;
  margin-left: 14px;
  font-size: 0.44em;
  transform: translateY(-0.14em) rotate(-12deg);
}

.hero-desc-option2 {
  color: #243424 !important;
  line-height: 1.55 !important;
  margin-bottom: 24px !important;
  max-width: 520px !important;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-option2-emerald {
  background: #0D4B22 !important;
  padding: 14px 28px !important;
  letter-spacing: 0 !important;
  box-shadow: 0 12px 28px rgba(13, 75, 34, 0.25) !important;
}

.btn-option2-glass {
  background: rgba(255, 255, 255, 0.86) !important;
  border-color: rgba(13, 75, 34, 0.34) !important;
  color: #0D3018 !important;
  padding: 13px 28px !important;
  letter-spacing: 0 !important;
}

.hero-glass-stats {
  gap: 0 !important;
  margin-top: 18px !important;
  padding: 13px 18px !important;
  background: rgba(255, 255, 255, 0.92) !important;
  border: 1px solid rgba(13, 75, 34, 0.1) !important;
  border-radius: 8px !important;
  box-shadow: 0 20px 44px rgba(38, 55, 34, 0.12) !important;
}

.glass-stat-card {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 4px 26px !important;
  box-shadow: none !important;
  min-width: 132px !important;
}

.glass-stat-card + .glass-stat-card {
  border-left: 1px solid rgba(13, 75, 34, 0.18) !important;
}

.hero-master-right {
  min-height: 400px !important;
  align-items: flex-start !important;
  margin-right: -34px !important;
}

.hero-wrap-option2 {
  min-height: 400px !important;
  animation: none !important;
}

.hero-flatlay-img {
  height: 100% !important;
  min-height: 400px !important;
  object-fit: cover !important;
  object-position: center !important;
  filter: drop-shadow(0 18px 28px rgba(39, 59, 34, 0.12)) !important;
}

.hero-trust-bar-wrap {
  width: min(1180px, calc(100% - 48px));
  margin: 16px auto 0;
  position: relative;
  z-index: 3;
}

.hero-trust-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(13, 75, 34, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(31, 45, 27, 0.13);
  padding: 13px 18px;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  min-width: 0;
}

.trust-bar-icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
}

.trust-bar-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.trust-bar-text strong {
  color: #0D3018;
  font-size: 0.88rem;
  line-height: 1.15;
}

.trust-bar-text span {
  color: #405340;
  font-size: 0.72rem;
  line-height: 1.2;
}

.trust-bar-divider {
  width: 1px;
  height: 38px;
  background: rgba(13, 75, 34, 0.15);
}

@media (max-width: 992px) {
  .hero-master {
    padding: 34px 0 28px !important;
  }
  .hero-master-container {
    grid-template-columns: 1fr !important;
    padding: 0 24px !important;
    text-align: center;
    gap: 24px !important;
  }
  .hero-master-left {
    align-items: center;
    padding: 8px 0 0 !important;
  }
  .hero-glass-stats {
    justify-content: center;
    flex-wrap: wrap;
  }
  .glass-stat-card + .glass-stat-card {
    border-left: 0 !important;
  }
  .hero-master-right {
    min-height: 0 !important;
    margin-right: 0 !important;
    width: 100%;
  }
  .hero-wrap-option2 {
    max-width: 720px;
    min-height: 0 !important;
    margin: 0 auto;
  }
  .hero-flatlay-img {
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 644 / 376;
  }
  .hero-trust-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 10px;
  }
  .trust-bar-divider {
    display: none;
  }
}

@media (max-width: 560px) {
  .hero-title-option2 {
    font-size: clamp(2.65rem, 14vw, 3.55rem) !important;
  }
  .hero-cta-group {
    width: 100%;
  }
  .btn-option2-emerald,
  .btn-option2-glass {
    width: 100%;
    justify-content: center;
  }
  .hero-glass-stats {
    width: 100%;
    padding: 12px 8px !important;
  }
  .glass-stat-card {
    min-width: 30% !important;
    padding: 4px 8px !important;
  }
  .stat-lbl {
    white-space: normal;
  }
  .hero-trust-bar-wrap {
    width: min(100% - 28px, 1180px);
  }
  .hero-trust-bar {
    grid-template-columns: 1fr;
    padding: 15px;
  }
  .trust-bar-item {
    justify-content: flex-start;
  }
}

/* ============================================================
   DEDICATED SHOPPING CART & CHECKOUT PAGE STYLING (REDESIGNED)
   ============================================================ */
.page-cart {
  background: #FAF7F2;
}

.cart-page-header {
  padding: 40px 0 25px;
  background: linear-gradient(180deg, #EBF3EA 0%, #FAF7F2 100%);
  border-bottom: 1px solid rgba(27, 82, 27, 0.08);
}

.cart-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

.cart-page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: #0d3018;
  display: flex;
  align-items: center;
  gap: 14px;
}

.cart-count-pill {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1B521B;
  background: rgba(27, 82, 27, 0.12);
  padding: 4px 16px;
  border-radius: 50px;
}

.checkout-steps {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkout-steps .step {
  font-size: 0.88rem;
  font-weight: 700;
  color: #7A8C7A;
}

.checkout-steps .step.active {
  color: #1B521B;
}

.checkout-steps .step-line {
  width: 24px;
  height: 2px;
  background: #D5E2D4;
}

/* Free Shipping Progress Meter */
.free-shipping-meter-wrap {
  background: #ffffff;
  border: 1px solid rgba(27, 82, 27, 0.14);
  border-radius: 16px;
  padding: 18px 24px;
  margin-top: 30px;
  margin-bottom: 35px;
  box-shadow: 0 4px 20px rgba(27, 82, 27, 0.04);
}

.meter-text-flex {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.meter-icon {
  font-size: 1.3rem;
}

.meter-text {
  font-size: 0.98rem;
  color: #0d3018;
}

.meter-bar-bg {
  width: 100%;
  height: 10px;
  background: #E8E2D6;
  border-radius: 10px;
  overflow: hidden;
}

.meter-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #1B521B, #4CAF50);
  border-radius: 10px;
  transition: width 0.5s ease;
}

/* 2-Column Cart Grid */
.cart-layout-grid {
  display: grid;
  grid-template-columns: 66% 32%;
  gap: 2%;
  align-items: start;
  padding-bottom: 80px;
}

/* Left Column Table */
.cart-table-card {
  background: #ffffff;
  border: 1px solid rgba(27, 82, 27, 0.12);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}

.cart-table-header {
  display: grid;
  grid-template-columns: 42% 16% 20% 16% 6%;
  padding: 18px 24px;
  background: #F2EBE0;
  font-weight: 800;
  font-size: 0.82rem;
  color: #0d3018;
  letter-spacing: 0.8px;
}

.cart-table-body {
  padding: 0;
}

.cart-table-row {
  display: grid;
  grid-template-columns: 42% 16% 20% 16% 6%;
  align-items: center;
  padding: 22px 24px;
  border-bottom: 1px solid #F0EAE1;
  transition: background 0.2s;
}

.cart-table-row:last-child {
  border-bottom: none;
}

.cart-table-row:hover {
  background: #FAF7F4;
}

.col-prod {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-prod-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #E4DCD0;
}

.cart-prod-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  color: #0d3018;
  margin-bottom: 6px;
}

.cart-weight-pills {
  display: flex;
  gap: 5px;
}

.cart-weight-pill {
  padding: 3px 9px;
  border: 1px solid #D2C9BB;
  background: #ffffff;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #5A6E5A;
  cursor: pointer;
  transition: all 0.2s;
}

.cart-weight-pill.active {
  background: #1B521B;
  color: #ffffff;
  border-color: #1B521B;
}

.col-price {
  font-weight: 700;
  color: #0d3018;
  font-size: 1.05rem;
}

.qty-counter {
  display: inline-flex;
  align-items: center;
  border: 1px solid #C8C0B2;
  border-radius: 50px;
  padding: 3px 10px;
  background: #ffffff;
}

.qty-counter button {
  background: none;
  border: none;
  font-size: 1.15rem;
  font-weight: 800;
  color: #0d3018;
  cursor: pointer;
  width: 24px;
  height: 24px;
}

.qty-counter span {
  font-weight: 800;
  padding: 0 10px;
  font-size: 0.98rem;
  color: #0d3018;
}

.col-total {
  font-weight: 900;
  color: #1B521B;
  font-size: 1.12rem;
}

.btn-remove-row {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #A09585;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
}

.btn-remove-row:hover {
  color: #E53935;
  transform: scale(1.2);
}

/* Empty Cart State */
.cart-empty-page-state {
  text-align: center;
  padding: 70px 20px;
}

.cart-empty-page-state .empty-icon {
  font-size: 4.5rem;
  margin-bottom: 18px;
}

.cart-empty-page-state h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: #0d3018;
  margin-bottom: 10px;
}

.cart-empty-page-state p {
  color: #5A6E5A;
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.btn-explore-products {
  display: inline-block;
  background: #1B521B;
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(27, 82, 27, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-explore-products:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(27, 82, 27, 0.35);
}

/* Cart Action Bar */
.cart-action-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}

.btn-continue-shopping {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1B521B;
  font-weight: 800;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.btn-continue-shopping:hover {
  color: #0d3018;
}

.btn-clear-cart {
  background: none;
  border: 1.5px solid #D2C9BB;
  padding: 9px 20px;
  border-radius: 50px;
  font-weight: 700;
  color: #7A6D5A;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-clear-cart:hover {
  background: #E53935;
  color: #ffffff;
  border-color: #E53935;
}

/* Right Order Summary Card */
.order-summary-card {
  background: #ffffff;
  border: 1px solid rgba(27, 82, 27, 0.12);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}

.summary-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #0d3018;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1.5px solid #F0EAE1;
}

/* Promo Box */
.promo-box {
  margin-bottom: 22px;
}

.promo-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0d3018;
  margin-bottom: 6px;
}

.promo-input-group {
  display: flex;
  gap: 8px;
}

.promo-input-group input {
  flex: 1;
  padding: 11px 14px;
  border: 1.5px solid #D2C9BB;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  outline: none;
}

.promo-input-group button {
  background: #1B521B;
  color: #ffffff;
  border: none;
  padding: 11px 20px;
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s;
}

.promo-input-group button:hover {
  background: #0d3018;
}

.promo-msg {
  font-size: 0.82rem;
  margin-top: 6px;
  font-weight: 700;
}

.promo-msg.success { color: #2E7D32; }
.promo-msg.error { color: #C62828; }

/* Price Breakdown Rows */
.price-summary-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1.5px solid #F0EAE1;
}

.price-summary-rows .summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.98rem;
  color: #5A6E5A;
}

.price-summary-rows .discount-row {
  color: #2E7D32;
  font-weight: 700;
}

.price-summary-rows .total-row {
  font-size: 1.3rem;
  font-weight: 900;
  color: #0d3018;
  padding-top: 10px;
  border-top: 1.5px dashed #D2C9BB;
}

.grand-total-val {
  color: #1B521B;
}

/* Delivery Details Form */
.checkout-form-section {
  margin-bottom: 24px;
}

.form-section-heading {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0d3018;
  margin-bottom: 14px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0d3018;
  margin-bottom: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #D2C9BB;
  border-radius: 10px;
  font-size: 0.92rem;
  font-family: 'Outfit', sans-serif;
  outline: none;
  background: #ffffff;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #1B521B;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Action Buttons */
.checkout-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

.btn-pay-online {
  width: 100%;
  background: linear-gradient(135deg, #1B521B 0%, #2E7D2E 100%);
  color: #ffffff;
  border: none;
  padding: 17px 20px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.98rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(27, 82, 27, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-pay-online:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(27, 82, 27, 0.4);
}

.btn-order-whatsapp {
  width: 100%;
  background: #25D366;
  color: #ffffff;
  border: none;
  padding: 16px 20px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.98rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-order-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

/* Summary Guarantees */
.summary-guarantees {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid #F0EAE1;
}

.guarantee-item {
  font-size: 0.8rem;
  color: #5A6E5A;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Responsive Cart Page */
@media (max-width: 992px) {
  .cart-layout-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .cart-table-header {
    display: none;
  }
  .cart-table-row {
    grid-template-columns: 1fr;
    gap: 12px;
    position: relative;
    padding: 18px;
  }
  .col-prod {
    width: 100%;
  }
  .col-price, .col-qty, .col-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

/* ULTRA COMPACT SINGLE-SCREEN SUMMARY PANEL */
.order-summary-card.compact-summary-card {
  padding: 16px 20px;
  border-radius: 16px;
}

.compact-promo {
  margin-bottom: 10px;
}

.compact-promo input {
  padding: 7px 11px;
  font-size: 0.82rem;
  border-radius: 8px;
}

.compact-promo button {
  padding: 7px 14px;
  font-size: 0.82rem;
  border-radius: 8px;
}

.price-summary-rows.compact-rows {
  gap: 6px;
  margin-bottom: 14px;
  padding-bottom: 10px;
}

.price-summary-rows.compact-rows .summary-row {
  font-size: 0.88rem;
}

.price-summary-rows.compact-rows .total-row {
  font-size: 1.15rem;
  padding-top: 6px;
}

.checkout-form-section.compact-form {
  margin-bottom: 14px;
}

.checkout-form-section.compact-form .form-section-heading {
  font-size: 0.92rem;
  margin-bottom: 8px;
}

.checkout-form-section.compact-form .form-group {
  margin-bottom: 8px;
}

.checkout-form-section.compact-form input,
.checkout-form-section.compact-form select {
  padding: 7px 11px;
  font-size: 0.84rem;
  border-radius: 8px;
}

.checkout-action-buttons.compact-buttons {
  gap: 8px;
  margin-bottom: 12px;
}

.btn-compact {
  padding: 11px 14px !important;
  font-size: 0.86rem !important;
  border-radius: 40px !important;
}

/* PROCEED TO CHECKOUT BUTTON */
.btn-proceed-checkout,
button#btnProceedCheckout {
  width: 100% !important;
  background: linear-gradient(135deg, #0d4b22 0%, #1c6b33 50%, #298c45 100%) !important;
  color: #ffffff !important;
  border: none !important;
  padding: 16px 28px !important;
  border-radius: 50px !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 800 !important;
  font-size: 1.05rem !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  box-shadow: 0 10px 28px rgba(13, 75, 34, 0.35), 0 4px 10px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
  margin-top: 15px !important;
  margin-bottom: 16px !important;
  outline: none !important;
}

.btn-proceed-checkout:hover,
button#btnProceedCheckout:hover {
  background: linear-gradient(135deg, #083818 0%, #155727 50%, #217537 100%) !important;
  transform: translateY(-3px) scale(1.01) !important;
  box-shadow: 0 14px 34px rgba(13, 75, 34, 0.45), 0 6px 14px rgba(0, 0, 0, 0.15) !important;
}

.btn-proceed-checkout svg,
button#btnProceedCheckout svg {
  width: 20px !important;
  height: 20px !important;
  stroke: #ffffff !important;
  stroke-width: 2.5 !important;
  transition: transform 0.3s ease !important;
}

.btn-proceed-checkout:hover svg,
button#btnProceedCheckout:hover svg {
  transform: translateX(5px) !important;
}


/* CHECKOUT MODAL STYLING */
.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.checkout-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.checkout-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 48, 24, 0.6);
  backdrop-filter: blur(5px);
}

.checkout-modal-card {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  width: 90%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  border: 1px solid rgba(27, 82, 27, 0.15);
  z-index: 10000;
  animation: modalSlideUp 0.35s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes modalSlideUp {
  from { transform: translateY(30px) scale(0.95); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.checkout-modal-header {
  padding: 20px 24px;
  background: #F4EFE6;
  border-bottom: 1px solid #E4DCD0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.checkout-modal-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #0d3018;
  margin: 0;
}

.checkout-modal-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #7A6D5A;
  cursor: pointer;
  line-height: 1;
}

.checkout-modal-body {
  padding: 24px;
}

.modal-order-recap {
  display: flex;
  justify-content: space-between;
  background: #FAF7F4;
  border: 1px solid #EAE5DC;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.88rem;
  color: #0d3018;
  margin-bottom: 18px;
}

/* ============================================================
   UNIQUE BOTANICAL E-COMMERCE CART & CHECKOUT STYLING
   ============================================================ */

/* Unique Stepper */
.unique-stepper {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 40px;
  border: 1px solid rgba(27, 82, 27, 0.15);
  box-shadow: 0 4px 15px rgba(27, 82, 27, 0.05);
}

.unique-step {
  font-size: 0.88rem;
  font-weight: 700;
  color: #7A6D5A;
  display: flex;
  align-items: center;
  gap: 6px;
}

.unique-step.active {
  color: #1B521B;
}

.unique-step.completed {
  color: #2E7D2E;
}

.step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #E4DCD0;
  color: #5A6E5A;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
}

.unique-step.active .step-num {
  background: #1B521B;
  color: #ffffff;
}

.unique-step.completed .step-num {
  background: #25D366;
  color: #ffffff;
}

.unique-step-arrow {
  color: #C2B8A8;
  font-size: 0.8rem;
}

/* Gamified Free Shipping Meter */
.free-shipping-card {
  background: linear-gradient(135deg, #ffffff 0%, #FAF7F2 100%);
  border: 1px solid rgba(27, 82, 27, 0.12);
  border-radius: 16px;
  padding: 16px 20px;
  margin-bottom: 25px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.meter-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.meter-icon {
  font-size: 1.3rem;
}

.meter-text {
  font-size: 0.92rem;
  color: #0d3018;
}

.meter-track {
  width: 100%;
  height: 8px;
  background: #EAE5DC;
  border-radius: 20px;
  overflow: hidden;
}

.meter-fill {
  height: 100%;
  background: linear-gradient(90deg, #1B521B 0%, #25D366 100%);
  border-radius: 20px;
  transition: width 0.4s ease;
}

/* Cart Table Row Styles */
.cart-weight-selector {
  display: flex;
  gap: 6px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.cart-weight-pill {
  background: #FAF7F2;
  border: 1px solid #D2C9BB;
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #5A6E5A;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cart-weight-pill:hover,
.cart-weight-pill.active {
  background: #1B521B;
  color: #ffffff;
  border-color: #1B521B;
}

.cart-qty-ctrl {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #D2C9BB;
  border-radius: 30px;
  background: #ffffff;
  overflow: hidden;
}

.cart-qty-ctrl button {
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0d3018;
  cursor: pointer;
  transition: background 0.2s;
}

.cart-qty-ctrl button:hover {
  background: #F4EFE6;
}

.cart-qty-ctrl span {
  padding: 0 10px;
  font-size: 0.92rem;
  font-weight: 800;
  color: #0d3018;
}

/* Unique Summary Card */
.unique-summary-card {
  background: #ffffff;
  border: 1px solid rgba(27, 82, 27, 0.12);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.04);
}

.btn-unique-checkout {
  width: 100%;
  background: linear-gradient(135deg, #0d4b22 0%, #1c6b33 50%, #298c45 100%);
  color: #ffffff !important;
  border: none;
  padding: 16px 24px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 28px rgba(13, 75, 34, 0.35);
  transition: all 0.3s ease;
  margin: 18px 0 14px;
  text-decoration: none;
}

.btn-unique-checkout:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 14px 34px rgba(13, 75, 34, 0.45);
}

.btn-unique-checkout.btn-whatsapp {
  background: linear-gradient(135deg, #128C7E 0%, #25D366 100%) !important;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35) !important;
}

/* Checkout Form Grid */
.unique-form-card {
  background: #ffffff;
  border: 1px solid rgba(27, 82, 27, 0.12);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.04);
}

.form-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #0d3018;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid #F0EAE1;
}

.checkout-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.col-full {
  grid-column: span 2;
}

.col-half {
  grid-column: span 1;
}

.pincode-hint {
  font-size: 0.75rem;
  font-weight: 600;
  color: #2E7D2E;
}

.checkout-form-grid label {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: #0d3018;
  margin-bottom: 5px;
}

.checkout-form-grid input,
.checkout-form-grid select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #D2C9BB;
  border-radius: 10px;
  font-size: 0.92rem;
  font-family: 'Outfit', sans-serif;
  outline: none;
  background: #ffffff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.checkout-form-grid input:focus,
.checkout-form-grid select:focus {
  border-color: #1B521B;
  box-shadow: 0 0 0 3px rgba(27, 82, 27, 0.1);
}

/* Payment Selector Tabs */
.payment-method-selector {
  margin: 16px 0;
  padding-top: 14px;
  border-top: 1px solid #F0EAE1;
}

.payment-label {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: #0d3018;
  margin-bottom: 8px;
}

.payment-tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pay-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1.5px solid #D2C9BB;
  border-radius: 12px;
  cursor: pointer;
  background: #FAF7F2;
  transition: all 0.2s ease;
}

.pay-tab:hover,
.pay-tab.active {
  border-color: #1B521B;
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(27, 82, 27, 0.08);
}

.pay-tab-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #D2C9BB;
  position: relative;
}

.pay-tab.active .pay-tab-radio {
  border-color: #1B521B;
}

.pay-tab.active .pay-tab-radio::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #1B521B;
}

.pay-tab-text strong {
  display: block;
  font-size: 0.88rem;
  color: #0d3018;
}

.pay-tab-text span {
  display: block;
  font-size: 0.76rem;
  color: #7A6D5A;
}

/* Checkout Items Recap List */
.checkout-items-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 200px;
  overflow-y: auto;
  margin-bottom: 14px;
  padding-right: 4px;
}

.checkout-item-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #F0EAE1;
}

.checkout-item-img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #EAE5DC;
}

.checkout-item-info {
  flex: 1;
}

.checkout-item-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: #0d3018;
  margin: 0 0 2px;
}

.checkout-item-meta {
  font-size: 0.76rem;
  color: #5A6E5A;
  font-weight: 600;
}

.checkout-item-price {
  font-size: 0.9rem;
  font-weight: 800;
  color: #1B521B;
}

/* Empty Cart View */
.empty-cart-card {
  grid-column: span 2;
  text-align: center;
  padding: 60px 20px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(27, 82, 27, 0.12);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.empty-icon {
  font-size: 3.5rem;
  margin-bottom: 14px;
}

.empty-cart-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #0d3018;
  margin-bottom: 8px;
}

.empty-cart-card p {
  color: #5A6E5A;
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.btn-shop-now {
  display: inline-block;
  background: linear-gradient(135deg, #1B521B 0%, #2E7D2E 100%);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(27, 82, 27, 0.3);
  transition: transform 0.2s;
}

/* ============================================================
   EXACT 3-COLUMN CHECKOUT REPLICA STYLING
   ============================================================ */
.page-checkout-replica {
  background: #F4F7F4;
  font-family: 'Outfit', sans-serif;
  color: #1a201c;
}

/* Header */
.replica-checkout-header {
  background: #ffffff;
  border-bottom: 1px solid #e2e8e4;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.replica-header-container {
  width: min(100% - 40px, 1280px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.replica-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.replica-logo .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #073b18;
}

.replica-logo .logo-leaf {
  font-size: 1.3rem;
}

/* Stepper */
.replica-stepper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stepper-step {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.55;
}

.stepper-step.active {
  opacity: 1;
}

.stepper-badge {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e2e8e4;
  color: #4a554e;
  font-size: 0.8rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.stepper-step.active .stepper-badge {
  background: #073b18;
  color: #ffffff;
}

.stepper-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: #073b18;
}

.stepper-line {
  width: 40px;
  height: 2px;
  background: #d8e0da;
}

/* Main Section */
.replica-checkout-main {
  padding: 30px 0 60px;
}

.replica-main-container {
  width: min(100% - 40px, 1280px);
  margin: 0 auto;
}

/* 3-Column Grid */
.checkout-3col-grid {
  display: flex !important;
  flex-direction: row !important;
  gap: 20px !important;
  align-items: flex-start !important;
  width: 100% !important;
}

.checkout-3col-grid > .checkout-col {
  flex: 1 !important;
  min-width: 0 !important;
}

.checkout-3col-grid > .col-delivery {
  flex: 1.25 !important;
}

.checkout-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Replica Card */
.replica-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e0e6e2;
  padding: 24px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.02);
}

.replica-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #073b18;
  margin-bottom: 18px;
}

/* Form Styles */
.replica-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.replica-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.replica-form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.replica-form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #526056;
}

.replica-form-group input,
.replica-form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #d2dcd5;
  border-radius: 10px;
  font-size: 0.92rem;
  font-family: 'Outfit', sans-serif;
  color: #1a201c;
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.replica-form-group input:focus,
.replica-form-group select:focus {
  border-color: #073b18;
  box-shadow: 0 0 0 3px rgba(7, 59, 24, 0.08);
}

/* Custom Checkbox */
.save-address-checkbox {
  margin-top: 4px;
}

.custom-checkbox-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.custom-checkbox-wrap input {
  display: none;
}

.custom-checkbox-wrap .checkmark {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: #073b18;
  color: #ffffff;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.custom-checkbox-wrap .cb-label {
  font-size: 0.84rem;
  font-weight: 600;
  color: #354238;
}

/* Delivery Option Boxes */
.delivery-options-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.delivery-option-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid #d8e0da;
  border-radius: 12px;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.delivery-option-box.active {
  border-color: #073b18;
  background: #f0f7f2;
}

.delivery-option-box input {
  display: none;
}

.delivery-option-box .radio-circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #b8c4bc;
  position: relative;
  flex-shrink: 0;
}

.delivery-option-box.active .radio-circle {
  border-color: #073b18;
}

.delivery-option-box.active .radio-circle::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #073b18;
}

.option-details {
  flex: 1;
}

.option-title {
  display: block;
  font-size: 0.88rem;
  color: #073b18;
  font-weight: 800;
}

.option-sub {
  display: block;
  font-size: 0.76rem;
  color: #68786c;
}

.option-price {
  font-size: 0.95rem;
  font-weight: 800;
  color: #073b18;
}

/* Middle Column: Summary Items List */
.replica-summary-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
  max-height: 220px;
  overflow-y: auto;
  padding-right: 4px;
}

.summary-item-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.item-thumb {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e0e6e2;
}

.item-details {
  flex: 1;
}

.item-name {
  font-size: 0.92rem;
  font-weight: 800;
  color: #073b18;
  margin: 0 0 2px;
}

.item-meta {
  font-size: 0.78rem;
  color: #68786c;
}

.item-price {
  font-size: 0.95rem;
  font-weight: 800;
  color: #073b18;
}

/* Price Breakdown */
.replica-price-breakdown {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: #526056;
}

.price-row.discount-row {
  color: #25D366;
}

.price-row.cod-row {
  color: #b91c1c;
  font-weight: 600;
}

.replica-total-divider {
  height: 1px;
  background: #e2e8e4;
  margin: 6px 0;
  border-style: dashed;
}

.price-row.total-row {
  font-size: 1.15rem;
  font-weight: 800;
  color: #073b18;
}

.total-label {
  display: block;
  color: #073b18;
}

.taxes-sub {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: #7a8a7e;
}

.grand-total-amount {
  font-size: 1.35rem;
  font-weight: 900;
  color: #073b18;
}

/* Middle Trust List */
.middle-trust-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 20px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e0e6e2;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #354238;
}

.trust-icon {
  font-size: 1.1rem;
}

/* Right Column: Payment Options */
.payment-options-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payment-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid #d8e0da;
  border-radius: 12px;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.payment-box.active {
  border-color: #073b18;
  background: #f0f7f2;
}

.payment-box input {
  display: none;
}

.payment-box .radio-circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #b8c4bc;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
}

.payment-box.active .radio-circle {
  border-color: #073b18;
}

.payment-box.active .radio-circle::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #073b18;
}

.pay-details {
  flex: 1;
}

.pay-title {
  display: block;
  font-size: 0.92rem;
  color: #073b18;
  font-weight: 800;
}

.pay-sub {
  display: block;
  font-size: 0.76rem;
  color: #68786c;
  margin-bottom: 6px;
}

/* Promo Code Card */
.promo-card-block {
  margin-bottom: 14px !important;
}

.promo-card-block.compact-promo-card {
  padding: 12px 16px !important;
}

.promo-input-group {
  display: flex !important;
  gap: 8px !important;
  margin-top: 0 !important;
}

.promo-input-group input {
  flex: 1 !important;
  padding: 8px 12px !important;
  border: 1.5px solid #d8e0da !important;
  border-radius: 6px !important;
  font-size: 0.86rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  outline: none !important;
  transition: border-color 0.2s ease !important;
}

.promo-input-group input:focus {
  border-color: #073b18 !important;
}

.btn-apply-promo {
  padding: 8px 16px !important;
  background: #073b18 !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 0.84rem !important;
  border: none !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.btn-apply-promo:hover {
  background: #0b5925 !important;
}

.promo-message {
  margin-top: 8px !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  padding: 6px 10px !important;
  border-radius: 6px !important;
}

.promo-message.success {
  background: #eef9ed !important;
  color: #073b18 !important;
  border: 1px solid #c3e6cb !important;
}

.promo-message.error {
  background: #f8d7da !important;
  color: #721c24 !important;
  border: 1px solid #f5c6cb !important;
}

/* Order Summary Multiple Product Lines Scrollable */
.replica-summary-items {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  max-height: 280px !important;
  overflow-y: auto !important;
  padding-right: 6px !important;
  margin-bottom: 16px !important;
}

.replica-summary-items::-webkit-scrollbar {
  width: 5px !important;
}
.replica-summary-items::-webkit-scrollbar-track {
  background: #f1f5f1 !important;
  border-radius: 4px !important;
}
.replica-summary-items::-webkit-scrollbar-thumb {
  background: #073b18 !important;
  border-radius: 4px !important;
}

.brand-badges {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 8px !important;
  margin-top: 10px !important;
  width: 100% !important;
}

.brand-badges.card-badges {
  grid-template-columns: repeat(3, 1fr) !important;
}

.card-badges .badge-brand {
  height: 42px !important;
  padding: 6px 10px !important;
  overflow: visible !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #ffffff !important;
  border: 1.5px solid #d8e0da !important;
  border-radius: 10px !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04) !important;
}

.card-badges .pay-logo-img {
  height: 28px !important;
  max-height: 28px !important;
  width: auto !important;
  max-width: 100% !important;
  object-fit: contain !important;
  display: block !important;
}

.badge-brand {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 6px 8px !important;
  height: 40px !important;
  background: #ffffff !important;
  border: 1.5px solid #d8e0da !important;
  border-radius: 10px !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04) !important;
  transition: all 0.25s ease !important;
}

.badge-brand:hover {
  transform: translateY(-2px) !important;
  border-color: #073b18 !important;
  box-shadow: 0 4px 12px rgba(7,59,24,0.1) !important;
}

.pay-logo-img {
  height: 26px !important;
  max-height: 26px !important;
  width: auto !important;
  max-width: 100% !important;
  object-fit: contain !important;
  display: block !important;
}

/* Pay Action Card */
.pay-action-card {
  background: #f0f7f2;
  border: 1px solid #cce0d2;
  border-radius: 16px;
  padding: 20px;
}

.pay-action-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  color: #073b18;
  margin-bottom: 8px;
}

.pay-action-total strong {
  font-size: 1.4rem;
  font-weight: 900;
}

.secure-badge-row {
  font-size: 0.76rem;
  font-weight: 700;
  color: #073b18;
  text-align: center;
  margin-bottom: 14px;
}

.secure-badge-row strong {
  color: #0c2340;
  font-weight: 800;
}

.btn-replica-pay {
  width: 100%;
  background: #073b18 !important;
  color: #ffffff !important;
  border: none;
  padding: 15px 24px;
  border-radius: 40px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(7, 59, 24, 0.25);
  transition: all 0.25s ease;
}

.btn-replica-pay:hover {
  background: #04250f !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(7, 59, 24, 0.35);
}

/* Bottom 4-Grid Trust Bar */
.bottom-trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 35px;
}

.bottom-trust-box {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e0e6e2;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.bt-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f0f7f2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.bt-text strong {
  display: block;
  font-size: 0.86rem;
  color: #073b18;
}

.bt-text span {
  display: block;
  font-size: 0.75rem;
  color: #68786c;
}

@media (max-width: 768px) {
  .checkout-3col-grid {
    flex-direction: column !important;
  }
  .bottom-trust-bar {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
/* ===== BRAND NEW FRESH LUXURY CONTACT PAGE REDESIGN ===== */
.niva-clean-contact-page {
  background: linear-gradient(180deg, #faf7f2 0%, #f4efe6 50%, #ffffff 100%) !important;
  padding: 40px 0 80px 0 !important;
}

.niva-contact-hero-banner {
  text-align: center !important;
  max-width: 800px !important;
  margin: 0 auto 50px auto !important;
  padding: 0 20px !important;
}

.niva-contact-hero-banner .hero-pill-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: #eef6ee !important;
  color: #1b5e20 !important;
  border: 1px solid #c8e6c9 !important;
  padding: 6px 16px !important;
  border-radius: 30px !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  margin-bottom: 16px !important;
}

.niva-contact-hero-banner h1 {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(2.2rem, 5vw, 3.2rem) !important;
  color: #073b18 !important;
  font-weight: 700 !important;
  margin: 0 0 14px 0 !important;
  line-height: 1.2 !important;
}

.niva-contact-hero-banner p {
  font-size: 1.1rem !important;
  color: #475569 !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

/* 2-Column Split Layout */
.niva-contact-split-grid {
  max-width: 1240px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 40px !important;
  align-items: start !important;
}

@media (max-width: 992px) {
  .niva-contact-split-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}

/* Left Side Cards Container */
.niva-contact-cards-stack {
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
}

.niva-contact-item-card {
  background: #ffffff !important;
  border: 1px solid #e8e3d8 !important;
  border-radius: 20px !important;
  padding: 24px !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 20px !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03) !important;
  transition: all 0.3s ease !important;
}

.niva-contact-item-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 15px 35px rgba(7, 59, 24, 0.08) !important;
  border-color: #cbd5e1 !important;
}

.niva-card-icon-box {
  width: 56px !important;
  min-width: 56px !important;
  height: 56px !important;
  border-radius: 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08) !important;
  flex-shrink: 0 !important;
}

.icon-box-facility { background: linear-gradient(135deg, #073b18, #16a34a) !important; }
.icon-box-support { background: linear-gradient(135deg, #128c7e, #25d366) !important; }
.icon-box-email { background: linear-gradient(135deg, #1e3a8a, #3b82f6) !important; }
.icon-box-fssai { background: linear-gradient(135deg, #b45309, #f59e0b) !important; }

.niva-card-body {
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  flex: 1 !important;
}

.niva-card-body .card-tag {
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
  color: #64748b !important;
}

.niva-card-body .card-title {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin: 2px 0 4px 0 !important;
}

.niva-card-body .card-desc {
  font-size: 0.9rem !important;
  color: #475569 !important;
  margin: 0 0 10px 0 !important;
  line-height: 1.4 !important;
}

.niva-card-action-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 0.84rem !important;
  font-weight: 700 !important;
  color: #073b18 !important;
  text-decoration: none !important;
  padding: 6px 14px !important;
  background: #f0fdf4 !important;
  border: 1px solid #bbf7d0 !important;
  border-radius: 8px !important;
  width: fit-content !important;
  transition: all 0.2s ease !important;
}

.niva-card-action-link:hover {
  background: #dcfce7 !important;
}

.dual-action-flex {
  display: flex !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
  margin-top: 4px !important;
}

.call-btn-link {
  background: #f0fdf4 !important;
  color: #166534 !important;
  border: 1px solid #bbf7d0 !important;
}

.wa-btn-link {
  background: #25d366 !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.25) !important;
}

.fssai-pill-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  color: #92400e !important;
  background: #fef3c7 !important;
  border: 1px solid #fde68a !important;
  padding: 4px 10px !important;
  border-radius: 20px !important;
  width: fit-content !important;
}

/* Right Side Elevated Contact Form */
.niva-contact-form-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 24px !important;
  padding: 36px !important;
  box-shadow: 0 20px 40px rgba(7, 59, 24, 0.06) !important;
}

.niva-contact-form-card h2 {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.8rem !important;
  color: #073b18 !important;
  margin-bottom: 20px !important;
}

/* =====================================================
   NIVA FOODS — MOBILE FIXES FOR ALL INNER PAGES
   ===================================================== */

@media (max-width: 768px) {

  /* ---- CART PAGE ---- */
  .cart-layout { flex-direction: column !important; gap: 20px !important; }
  .cart-items-section { width: 100% !important; }
  .cart-summary-section { width: 100% !important; position: static !important; }
  .cart-item-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    padding: 14px 0 !important;
    width: 100% !important;
    border-bottom: 1px solid #eef2ef !important;
  }
  .cart-item-img {
    width: 64px !important;
    height: 64px !important;
    max-width: 64px !important;
    border-radius: 10px !important;
    object-fit: cover !important;
    flex-shrink: 0 !important;
  }
  .cart-item-info {
    flex: 1 !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
  }
  .cart-item-name {
    font-size: 0.92rem !important;
    font-weight: 800 !important;
    color: #073b18 !important;
    margin: 0 !important;
    white-space: normal !important;
    line-height: 1.25 !important;
  }
  .cart-item-weight-tag {
    font-size: 0.72rem !important;
    padding: 1px 8px !important;
    border-radius: 12px !important;
    width: fit-content !important;
  }
  .cart-qty-ctrl {
    display: inline-flex !important;
    border: 1.5px solid #d8e0da !important;
    border-radius: 8px !important;
    width: fit-content !important;
    margin-top: 4px !important;
  }
  .cart-item-right {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    justify-content: center !important;
    gap: 6px !important;
    flex-shrink: 0 !important;
  }
  .cart-item-total-price {
    font-size: 1rem !important;
    font-weight: 800 !important;
    color: #073b18 !important;
  }
  .cart-item-unit {
    font-size: 0.72rem !important;
    color: #889988 !important;
  }
  .btn-remove {
    font-size: 0.76rem !important;
    color: #94a3b8 !important;
  }

  /* ---- CHECKOUT PAGE (TRUE STEP-BY-STEP WIZARD ON MOBILE) ---- */
  .co-grid {
    display: block !important;
  }
  .co-col-left, .co-col-mid, .co-col-right {
    display: none !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .co-col-left.mobile-active-step,
  .co-col-mid.mobile-active-step,
  .co-col-right.mobile-active-step {
    display: block !important;
  }
  .co-form-row { grid-template-columns: 1fr !important; }
  .co-bottom-bar { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
  .co-pay-btn { font-size: 0.95rem !important; padding: 14px !important; }
  .co-card { padding: 16px !important; border-radius: 14px !important; }
  .co-pay-logos { gap: 5px !important; }
  .co-pay-logo { height: 24px !important; padding: 2px 6px !important; }

  /* ---- PRODUCT DETAIL PAGE ---- */
  .product-detail-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .product-gallery { position: static !important; top: auto !important; }
  .gallery-thumbs { gap: 6px !important; }
  .gallery-thumb-btn { width: 56px !important; height: 56px !important; }
  .product-actions-row { flex-direction: column !important; gap: 10px !important; }
  .btn-add-cart, .btn-buy-now { width: 100% !important; justify-content: center !important; }
  .tabs-nav { overflow-x: auto !important; white-space: nowrap !important; -webkit-overflow-scrolling: touch; }
  .tab-btn { padding: 10px 14px !important; font-size: 0.85rem !important; }

  /* ---- PRODUCTS CATALOG ---- */
  .catalog-controls { flex-direction: column !important; gap: 12px !important; align-items: stretch !important; }
  .sort-select, .filter-select { width: 100% !important; }
  .catalog-grid { grid-template-columns: 1fr 1fr !important; gap: 12px !important; }

  /* ---- ABOUT PAGE ---- */
  .about-hero-grid { grid-template-columns: 1fr !important; }
  .team-grid { grid-template-columns: 1fr 1fr !important; }
  .values-grid { grid-template-columns: 1fr !important; }

  /* ---- CONTACT PAGE ---- */
  .niva-contact-split-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .niva-contact-cards-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .niva-contact-form-card { padding: 20px !important; border-radius: 18px !important; }

  /* ---- INNER PAGE BANNERS ---- */
  .subpage-banner { padding: 1.4rem 1rem !important; margin-bottom: 1.2rem !important; }
  .subpage-banner h1 { font-size: 1.5rem !important; }
  .subpage-banner p { font-size: 0.82rem !important; }

  /* ---- BREADCRUMBS ---- */
  .breadcrumbs { font-size: 0.76rem !important; margin-bottom: 10px !important; }

  /* ---- RECIPES PAGE ---- */
  .recipes-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .recipe-modal-content { padding: 20px !important; }

  /* ---- FOOTER (COMPACT MULTI-COLUMN LIKE WEB VIEW) ---- */
  .footer-top { padding: 40px 0 24px !important; }
  .footer-container { 
    grid-template-columns: repeat(2, 1fr) !important; 
    gap: 28px 16px !important; 
    padding: 0 16px !important; 
    text-align: left !important; 
  }
  .footer-brand { 
    grid-column: 1 / -1 !important; 
    align-items: flex-start !important; 
    text-align: left !important; 
    gap: 12px !important;
    padding-bottom: 8px !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
  }
  .footer-logo { justify-content: flex-start !important; }
  .footer-certifications { justify-content: flex-start !important; flex-wrap: wrap !important; gap: 8px !important; }
  .footer-links-col { text-align: left !important; }
  .footer-links-col:last-child { grid-column: 1 / -1 !important; }
  .footer-links-col h4 { font-size: 0.85rem !important; margin-bottom: 10px !important; color: #4ade80 !important; }
  .footer-links-col ul { gap: 8px !important; padding: 0 !important; }
  .footer-links-col a { font-size: 0.82rem !important; }
  .footer-bottom-inner { flex-direction: column !important; gap: 6px !important; text-align: center !important; font-size: 0.78rem !important; }
}

@media (max-width: 480px) {
  /* ---- CART ---- */
  .cart-qty-controls { gap: 6px !important; }
  .qty-display { font-size: 0.9rem !important; }

  /* ---- CHECKOUT ---- */
  .co-bottom-bar { grid-template-columns: 1fr 1fr !important; }
  .co-pay-action { padding: 14px !important; }
  .co-total-amount { font-size: 1.1rem !important; }

  /* ---- CATALOG ---- */
  .catalog-grid { grid-template-columns: 1fr !important; }

  /* ---- INNER PAGE BANNERS ---- */
  .subpage-banner h1 { font-size: 1.3rem !important; }
  .subpage-banner { padding: 1.2rem 1rem !important; }
}
