/* ==========================================================================
   GWellth Foods v2.0 — UI Component Library Stylesheet
   ========================================================================== */

/* 1. Hero & Banner structures */
.hero-section {
  position: relative;
  background-color: var(--color-valley-green);
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(22, 44, 33, 0.9) 0%, rgba(22, 44, 33, 0.5) 100%);
  z-index: 1;
}

.hero-content {
  max-width: 760px;
  margin-left: 8%;
  position: relative;
  z-index: 2;
  color: var(--color-ghee-cream);
}

.hero-badge {
  color: var(--color-wild-honey);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1.1;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 1.15rem;
  font-weight: 300;
  opacity: 0.95;
  margin-bottom: 35px;
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  gap: 15px;
}

/* 2. Traceability & Promise Row */
.traceability-row {
  background-color: var(--color-stone-oat);
  padding: 24px 20px;
  border-bottom: 1px solid rgba(20, 40, 30, 0.05);
}

.traceability-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.trace-item {
  display: flex;
  align-items: flex-start;
}

.trace-icon {
  font-size: 2.2rem;
  margin-right: 16px;
  background-color: var(--color-mist-white);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: var(--shadow-card);
  flex-shrink: 0;
}

.trace-info h3 {
  font-size: 1.05rem;
  color: var(--color-valley-green);
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-weight: 600;
}

.trace-info p {
  font-size: 0.82rem;
  color: var(--color-ragi-brown);
}

/* 3. Product Cards & Asymmetric Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background-color: var(--color-mist-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  border: 1px solid rgba(22, 44, 33, 0.04);
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--color-valley-green);
  color: var(--color-ghee-cream);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.product-badge.sugar { background-color: var(--color-wild-honey); color: var(--color-valley-green); }
.product-badge.luxury { background-color: var(--color-terracotta); }

.product-image-container {
  background-color: var(--color-ghee-cream);
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.product-details {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.rating {
  font-size: 0.85rem;
  color: var(--color-wild-honey);
  margin-bottom: 8px;
}

.rating span {
  color: var(--color-ragi-brown);
  margin-left: 4px;
}

.product-card h3 {
  font-size: 1.25rem;
  color: var(--color-valley-green);
  margin-bottom: 8px;
  font-weight: 600;
  line-height: 1.35;
}

.product-card p.description {
  font-size: 0.88rem;
  color: var(--color-ragi-brown);
  margin-bottom: 16px;
  flex-grow: 1;
}

.variant-selector {
  margin-bottom: 16px;
}

.variant-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-valley-green);
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.variant-options {
  display: flex;
  gap: 8px;
}

.variant-opt {
  font-size: 0.8rem;
  border: 1px solid var(--color-stone-oat);
  padding: 5px 12px;
  border-radius: 9999px;
  background-color: var(--color-ghee-cream);
  color: var(--color-valley-green);
  font-weight: 500;
}

.variant-opt.active {
  background-color: var(--color-valley-green);
  color: var(--color-ghee-cream);
  border-color: var(--color-valley-green);
}

/* The Whole Truth bold clean-label ingredient badge */
.twt-ingredient-badge {
  background-color: var(--primary-emerald-ultra-light);
  border: 1px solid rgba(22, 44, 33, 0.06);
  padding: 10px 12px;
  border-radius: var(--border-radius-sm);
  font-size: 0.78rem;
  color: var(--color-valley-green);
  line-height: 1.45;
  margin-bottom: 15px;
}

.twt-ingredient-badge span {
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-valley-green);
  display: block;
  margin-bottom: 2px;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

.twt-ingredient-badge strong {
  color: var(--color-terracotta);
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(22, 44, 33, 0.08);
  padding-top: 16px;
  margin-top: auto;
}

.price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-valley-green);
}

.price-original {
  font-size: 0.88rem;
  text-decoration: line-through;
  color: var(--color-ragi-brown);
  margin-right: 4px;
  font-weight: 400;
}

.btn-card-add {
  background-color: var(--primary-emerald-ultra-light);
  color: var(--color-valley-green);
  border: 1px solid var(--color-valley-green);
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 600;
}

.btn-card-add:hover {
  background-color: var(--color-valley-green);
  color: var(--color-ghee-cream);
}

/* 4. Wellness Box Hub Cards */
.box-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 20px 0 80px;
}

.box-card {
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.box-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  background-color: var(--color-mist-white);
}

.box-card-img {
  font-size: 4.5rem;
  background-color: var(--color-ghee-cream);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.target-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-valley-green);
  background-color: var(--primary-emerald-ultra-light);
  padding: 4px 10px;
  border-radius: 9999px;
  align-self: flex-start;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.target-badge.executive { background-color: hsl(36, 88%, 92%); color: hsl(36, 80%, 35%); }
.target-badge.senior { background-color: hsl(14, 62%, 92%); color: var(--color-terracotta); }
.target-badge.women { background-color: hsl(320, 50%, 93%); color: hsl(320, 50%, 45%); }
.target-badge.brain { background-color: hsl(200, 50%, 93%); color: hsl(200, 50%, 45%); }
.target-badge.detox { background-color: hsl(180, 50%, 93%); color: hsl(180, 50%, 45%); }
.target-badge.heart { background-color: hsl(0, 50%, 93%); color: hsl(0, 50%, 45%); }
.target-badge.sleep { background-color: hsl(260, 50%, 93%); color: hsl(260, 50%, 45%); }

.box-card h3 {
  font-size: 1.35rem;
  color: var(--color-valley-green);
  margin-bottom: 6px;
  font-weight: 600;
}

.box-card p.tagline {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--color-ragi-brown);
  margin-bottom: 20px;
  flex-grow: 1;
}

.box-meta {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(22, 44, 33, 0.08);
  padding-top: 12px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  font-weight: 600;
}

.price-range {
  color: var(--color-terracotta);
}

.box-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.combo-box {
  border-color: rgba(22, 44, 33, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 85%, var(--primary-emerald-ultra-light) 100%);
}

/* 5. Slide-Out Cart drawer */
.kart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(22, 44, 33, 0.4);
  backdrop-filter: blur(4px);
  z-index: 105;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.kart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mini-kart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 440px;
  background-color: var(--color-mist-white);
  z-index: 110;
  box-shadow: var(--shadow-kart);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: var(--transition-spring);
}

.mini-kart-drawer.active {
  transform: translateX(0);
}

.kart-header {
  padding: 20px;
  border-bottom: 1px solid var(--color-stone-oat);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.kart-header h2 {
  font-size: 1.4rem;
  color: var(--color-valley-green);
}

.close-kart-btn {
  color: var(--color-ragi-brown);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.close-kart-btn:hover {
  background-color: var(--color-ghee-cream);
  color: var(--color-valley-green);
}

.close-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Cart milestones progressive track */
.milestone-bar-container {
  background-color: var(--primary-emerald-ultra-light);
  padding: 15px 20px;
  border-bottom: 1px solid rgba(22, 44, 33, 0.05);
}

.milestone-status {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-valley-green);
  margin-bottom: 8px;
  line-height: 1.4;
}

.progress-track {
  height: 6px;
  background-color: var(--color-stone-oat);
  border-radius: 3px;
  position: relative;
  margin: 10px 0;
}

.progress-fill {
  height: 100%;
  background-color: var(--color-valley-green);
  border-radius: 3px;
  transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.marker {
  position: absolute;
  top: -8px;
  font-size: 1.1rem;
  transform: translateX(-50%);
}

.milestone-legend {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  color: var(--color-ragi-brown);
  font-weight: 500;
}

/* Cart Item List */
.kart-items-list {
  flex-grow: 1;
  overflow-y: auto;
  padding: 20px;
}

.empty-kart-state {
  text-align: center;
  padding: 40px 20px;
}

.empty-icon {
  font-size: 4rem;
  margin-bottom: 15px;
}

.empty-kart-state h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.empty-kart-state p {
  font-size: 0.82rem;
  color: var(--color-ragi-brown);
  margin-bottom: 24px;
}

.kart-item {
  display: flex;
  gap: 15px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-stone-oat);
  margin-bottom: 20px;
}

.kart-item-img {
  background-color: var(--color-ghee-cream);
  width: 70px;
  height: 70px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  border: 1px solid rgba(22, 44, 33, 0.05);
}

.kart-item-details {
  flex-grow: 1;
}

.kart-item-details h4 {
  font-size: 0.95rem;
  color: var(--color-valley-green);
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-weight: 600;
}

.kart-item-meta {
  font-size: 0.75rem;
  color: var(--color-ragi-brown);
  margin-bottom: 10px;
}

.kart-item-ops {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.item-qty-adjuster {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-stone-oat);
  padding: 2px;
  border-radius: 9999px;
  background-color: var(--color-ghee-cream);
}

.iq-btn {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50%;
}

.iq-btn:hover {
  background-color: var(--color-stone-oat);
}

.iq-val {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0 10px;
}

.kart-item-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-valley-green);
}

.remove-item-btn {
  font-size: 0.75rem;
  color: var(--color-terracotta);
  font-weight: 600;
}

.remove-item-btn:hover {
  text-decoration: underline;
}

/* Smart cross-sell trigger matrix */
.kart-upsell-section {
  background-color: hsl(36, 88%, 98%);
  border-top: 1px dashed var(--color-wild-honey);
  border-bottom: 1px dashed var(--color-wild-honey);
  padding: 15px 20px;
}

.upsell-heading {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: hsl(36, 80%, 35%);
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}

.upsell-card {
  display: flex;
  gap: 12px;
  align-items: center;
}

.upsell-emoji {
  font-size: 1.8rem;
  background-color: var(--color-mist-white);
  padding: 10px;
  border-radius: 8px;
  box-shadow: var(--shadow-card);
}

.upsell-details h4 {
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.upsell-details p {
  font-size: 0.75rem;
  color: var(--color-ragi-brown);
  margin-bottom: 5px;
}

.btn-upsell-add {
  background-color: var(--color-wild-honey);
  color: var(--color-valley-green);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 9999px;
}

.btn-upsell-add:hover {
  background-color: var(--color-wild-honey-light);
}

/* Cart calculation footer */
.kart-footer {
  padding: 20px;
  background-color: var(--color-ghee-cream);
  border-top: 1px solid var(--color-stone-oat);
}

.subtotal-row, .shipping-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--color-ragi-brown);
  margin-bottom: 8px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-valley-green);
  margin-bottom: 15px;
  border-top: 1px solid rgba(22, 44, 33, 0.08);
  padding-top: 10px;
}

.subscription-global-toggle {
  margin-bottom: 15px;
  background-color: var(--color-mist-white);
  padding: 12px;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--color-stone-oat);
}

.switch-container {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

.toggle-label {
  color: var(--color-valley-green);
  line-height: 1.4;
}

.btn-checkout {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
}

.checkout-trust-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 0.75rem;
  color: var(--color-ragi-brown);
  margin-top: 10px;
}

/* 6. Modal Popup core */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(22, 44, 33, 0.4);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background-color: var(--color-mist-white);
  border-radius: var(--border-radius-lg);
  max-width: 820px;
  width: 90%;
  padding: 35px;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: var(--transition-spring);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  color: var(--color-ragi-brown);
  line-height: 1;
}

.modal-close:hover {
  color: var(--color-valley-green);
}

/* Modal split view */
.modal-contents-header {
  border-bottom: 1px solid var(--color-stone-oat);
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.modal-contents-header h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-valley-green);
  margin-bottom: 5px;
}

.modal-contents-header p.tagline {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-ragi-brown);
}

.modal-layout-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 25px;
}

.modal-products-column h4, .modal-spec-column h4 {
  font-size: 1rem;
  color: var(--color-valley-green);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-body);
  font-weight: 700;
}

.modal-products-stack {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.modal-product-item {
  display: flex;
  gap: 12px;
}

.modal-prod-bullet {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--primary-emerald-ultra-light);
  color: var(--color-valley-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.modal-prod-info h5 {
  font-size: 0.92rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-valley-green);
  margin-bottom: 3px;
}

.modal-prod-info p {
  font-size: 0.78rem;
  color: var(--color-ragi-brown);
  line-height: 1.4;
  margin-bottom: 2px;
}

/* Modal spec widgets */
.box-spec-sidebar {
  background-color: var(--color-ghee-cream);
  padding: 20px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-stone-oat);
}

.box-spec-sidebar ul {
  list-style: none;
  font-size: 0.82rem;
  color: var(--color-ragi-brown);
}

.box-spec-sidebar li {
  margin-bottom: 12px;
  line-height: 1.45;
}

.modal-verify-badge {
  background-color: var(--primary-emerald-ultra-light);
  color: var(--color-valley-green);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 8px 12px;
  border-radius: 8px;
  display: inline-block;
  margin-top: 10px;
  border: 1px solid rgba(20,40,30,0.06);
}

.box-spec-spotlight {
  background-color: hsl(36, 88%, 98%);
  padding: 20px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-wild-honey);
  color: var(--color-valley-green);
}

.box-spec-spotlight p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--color-ragi-brown);
  margin-top: 10px;
}

/* Elder accessibility widgets */
.elder-friendly-header h2 {
  font-size: 2.2rem;
  color: var(--color-terracotta);
}

.elder-friendly-split .modal-prod-info h5 {
  font-size: 1.15rem;
}

.elder-friendly-split .modal-prod-info p {
  font-size: 0.95rem;
  color: var(--color-valley-green);
}

.box-spec-accessibility {
  background-color: hsl(14, 62%, 98%);
  padding: 20px;
  border-radius: var(--border-radius-md);
  border: 2px solid var(--color-terracotta);
}

.box-spec-accessibility p {
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 10px;
}

.box-spec-matrix {
  background-color: hsl(320, 50%, 98%);
  padding: 20px;
  border-radius: var(--border-radius-md);
  border: 1px solid hsl(320, 50%, 90%);
}

.matrix-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
}

.matrix-cell {
  background-color: var(--color-mist-white);
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 0.82rem;
  border: 1px solid rgba(22,44,33,0.05);
}

.box-spec-brain {
  background-color: hsl(200, 50%, 98%);
  padding: 20px;
  border-radius: var(--border-radius-md);
  border: 1px solid hsl(200, 50%, 90%);
}

.box-spec-brain p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--color-ragi-brown);
  margin-top: 10px;
}

.box-spec-calendar {
  background-color: hsl(180, 50%, 98%);
  padding: 20px;
  border-radius: var(--border-radius-md);
  border: 1px solid hsl(180, 50%, 90%);
}

.calendar-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 15px 0;
}

.cal-day {
  background-color: var(--color-mist-white);
  border: 1px solid var(--color-stone-oat);
  padding: 8px;
  text-align: center;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-ragi-brown);
}

.cal-day.done {
  background-color: var(--primary-emerald-ultra-light);
  color: var(--color-valley-green);
  border-color: rgba(22, 44, 33, 0.15);
}

.cal-day.current {
  background-color: var(--color-wild-honey);
  color: var(--color-valley-green);
  border-color: var(--color-wild-honey);
}

.box-spec-calendar p {
  font-size: 0.78rem;
  color: var(--color-ragi-brown);
}

.box-spec-heart {
  background-color: hsl(0, 50%, 98%);
  padding: 20px;
  border-radius: var(--border-radius-md);
  border: 1px solid hsl(0, 50%, 90%);
}

.box-spec-heart p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--color-ragi-brown);
  margin-top: 10px;
}

.box-spec-sleep {
  background-color: hsl(260, 50%, 98%);
  padding: 20px;
  border-radius: var(--border-radius-md);
  border: 1px solid hsl(260, 50%, 90%);
}

.sleep-checklist-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 15px 0;
}

.sleep-chk {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8rem;
  cursor: pointer;
}

.sleep-chk input {
  margin-top: 3px;
}

.sleep-subt {
  font-size: 0.78rem;
  color: var(--color-ragi-brown);
}

.modal-footer-buy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--color-stone-oat);
  padding-top: 20px;
}

.modal-price-box {
  font-size: 1.1rem;
  font-weight: 500;
}

.modal-bold-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-valley-green);
}

/* Toast Notifications */
.notification-toast {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: var(--color-valley-green);
  color: var(--color-ghee-cream);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  z-index: 300;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease;
}

.notification-toast.active {
  transform: translateY(0);
  opacity: 1;
}

/* Floating WhatsApp button */
.whatsapp-float-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: var(--color-ghee-cream);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 99;
}

.whatsapp-icon-svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}
