/* =============================================
   SHAKTI BITES — MAIN STYLESHEET
   assets/css/style.css
   ============================================= */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

/* ---- CSS Variables ---- */
:root {
  --orange:        #E07B2A;
  --orange-dark:   #C5611A;
  --orange-light:  #F5A623;
  --cream:         #FDF6EC;
  --cream2:        #FAF0DE;
  --brown:         #5C3A1E;
  --dark-brown:    #2B1A0E;
  --green:         #4A7C59;
  --green-dark:    #2F5C3C;
  --red-x:         #D94F4F;
  --text:          #2B1A0E;
  --text-muted:    #6B6B6B;
  --white:         #FFFFFF;
  --star-color:    #F5A623;
  --shadow-sm:     0 4px 16px rgba(0,0,0,0.07);
  --shadow-md:     0 8px 28px rgba(0,0,0,0.10);
  --radius-card:   18px;
  --radius-pill:   40px;
}

/* ---- Base Reset ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; }

/* ============================================
   NAVBAR
   ============================================ */
.sb-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 10px 0;
}

.sb-brand img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.sb-nav-link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: var(--text) !important;
  padding: 8px 16px !important;
  border-radius: var(--radius-pill);
  transition: color 0.2s, background 0.2s;
}

.sb-nav-link:hover,
.sb-nav-link.active {
  color: var(--orange) !important;
  background: rgba(224, 123, 42, 0.08);
}

/* Mobile nav spacing */
@media (max-width: 991px) {
  .sb-nav-link { padding: 10px 14px !important; }
}

/* ============================================
   SHARED UTILITIES
   ============================================ */
.section-title {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}

.section-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* Bag color helpers */
.peanut-bg,  .bg-peanut  { background: linear-gradient(160deg, #E07B2A, #C5611A); }
.cacao-bg,   .bg-cacao   { background: linear-gradient(160deg, #8B4513, #5C2A00); }
.dryfruit-bg,.bg-dryfruit{ background: linear-gradient(160deg, #4A7C59, #2F5C3C); }

/* ============================================
   BUTTONS
   ============================================ */
.btn-hero-white {
  background: var(--white);
  color: var(--orange-dark);
  border: none;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-hero-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
  color: var(--orange-dark);
}

.btn-hero-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.75);
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
  transition: background 0.2s;
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.btn-try {
  display: block;
  width: 100%;
  margin-top: 16px;
  padding: 11px 16px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--orange);
  background: transparent;
  color: var(--orange);
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}
.btn-try:hover,
.btn-try-filled {
  background: var(--orange);
  color: var(--white) !important;
}
.btn-try-filled:hover { background: var(--orange-dark); }

.btn-buy {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-pill);
  border: none;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  transition: background 0.2s, transform 0.2s;
}
.btn-buy:hover {
  background: var(--orange-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-cta {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 16px 54px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 17px;
  box-shadow: 0 6px 24px rgba(224,123,42,0.38);
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}
.btn-cta:hover {
  background: var(--orange-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(224,123,42,0.45);
}

/* ============================================
    HERO SECTION
    ============================================ */
.hero-section {
  background: url('../images/Banner.png') center/cover no-repeat;
  padding: 100px 0 100px;
  position: relative;
}

.hero-inner {
  max-width: 500px;
  position: relative;
  z-index: 2;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.hero-heading {
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
}

.hero-sub {
  color: rgba(255,255,255,0.90);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 28px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.launch-badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.25);
}

/* ============================================
    TRUST BAR
    ============================================ */
.trust-bar {
  background: #f7e0c4;
  padding: 16px 0;
  border-bottom: 1px solid #F0E8DC;
}
.trust-brand {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--orange);
  text-align: center;
  margin-bottom: 10px;
}
.trust-pills {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-pill {
    font-size: 16px;
    font-weight: 600;
    color: #4a2d03;
    padding: 4px 35px;
    border-right: 2px solid #4a2d03;
    line-height: 1.4;
}
.trust-pill:last-child { border-right: none; }

/* ============================================
   WHY SWITCH
   ============================================ */
.why-section {
  background: var(--cream);
  padding: 64px 0 0;
}
.why-section .section-title { margin-bottom: 36px; }

.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 0 auto 40px;
}

.compare-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}
.compare-card.featured-card {
  background: var(--cream2);
  border: 2px solid var(--orange);
}

.compare-card h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--text);
}
.compare-card.featured-card h3 { color: var(--orange-dark); }

.compare-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 10px;
  font-size: 13.5px;
  font-weight: 500;
}

.icon-x     { color: var(--red-x);   font-weight: 800; font-size: 15px; flex-shrink: 0; }
.icon-check { color: var(--orange);  font-weight: 800; font-size: 15px; flex-shrink: 0; }
.icon-green { color: var(--green);   font-weight: 800; font-size: 15px; flex-shrink: 0; }

/* Why Switch Section Background */
.why-section {
  background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    padding: 90px 0 165px 0px;
}

/* ============================================
    PRODUCT RANGE
    ============================================ */
.product-range-section {
  background: var(--cream);
  padding: 64px 0 56px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.product-card.bestseller-card {
  border: 2px solid var(--orange);
}

.prod-label {
  padding: 8px 20px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.label-everyday { background: #F2F2F2; color: var(--text-muted); }
.label-bestseller{ background: var(--orange); color: var(--white); text-align:center; }
.label-premium  { background: #E8F5EE; color: var(--green-dark); }

.prod-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.prod-img-wrap img {
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.22));
  transition: transform 0.25s;
}
.product-card:hover .prod-img-wrap img { transform: scale(1.05); }

.peanut-light  { background: linear-gradient(135deg,#FDF0E0,#F5DDB0); }
.cacao-dark    { background: linear-gradient(135deg,#2B1A0E,#5C3A1E); }
.dryfruit-light{ background: linear-gradient(135deg,#EAF4EC,#D5ECDA); }

.prod-body { padding: 18px 20px 22px; }

.prod-body h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.prod-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 12px;
}

.prod-feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 7px;
}
.dot-orange {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 5px;
}

/* ============================================
   COMBO SECTION
   ============================================ */
.combo-section {
  background: var(--cream2);
  padding: 64px 0 56px;
}

.combo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.combo-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.combo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.combo-card.best-value-card {
  border: 2px solid var(--orange);
}

.combo-best-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 20px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.combo-top-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.combo-bags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  min-height: 72px;
}

.mini-bag {
  width: 46px; height: 60px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.3px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.22);
}

.combo-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
  min-height: 72px;
}

.combo-prod-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.22);
}

.combo-prod-img.shrink {
  width: 50px;
  height: 50px;
}

.combo-prod-img-full {
  width: 100%;
  height: auto;
  max-width: 280px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.22);
}

.combo-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: 0.3px;
}
.combo-qty {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.combo-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.combo-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}
.price-old {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 500;
}
.price-new {
  font-size: 26px;
  font-weight: 900;
  color: var(--text);
}

/* ============================================
   SHIPPING BAR
   ============================================ */
.shipping-bar {
  background: var(--cream);
  border-top: 1px solid #EFE3CC;
  border-bottom: 1px solid #EFE3CC;
  padding: 18px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews-section {
  background: var(--white);
  padding: 64px 0 56px;
}

.rating-summary { margin-bottom: 36px; }

.stars-big {
  font-size: 26px;
  color: var(--star-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 4px;
}
.rating-num {
  font-size: 30px;
  font-weight: 900;
  color: var(--text);
}
.rating-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--cream);
  border-radius: var(--radius-card);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
}

.reviewer-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 12px;
  background: #ddd;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
}
.reviewer-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.fallback-avatar {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}

.review-stars {
  color: var(--star-color);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.review-text {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 12px;
}
.reviewer-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange-dark);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--cream2);
  padding: 72px 0 80px;
}

.cta-heading {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 18px;
}

.cta-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}
.cta-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--orange);
  display: inline-block;
}
.cta-dot.dim { opacity: 0.35; }

/* ============================================
   FOOTER (basic – extend in footer.php)
   ============================================ */
.sb-footer {
  background: var(--dark-brown);
  color: rgba(255,255,255,0.75);
  padding: 40px 0 28px;
  font-size: 13.5px;
}
.sb-footer .footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}
.sb-footer a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.sb-footer a:hover { color: var(--orange-light); }
.sb-footer .footer-divider {
  border-color: rgba(255,255,255,0.12);
  margin: 24px 0 16px;
}

/* ============================================
     RESPONSIVE — TABLETS
     ============================================ */
@media (max-width: 991px) {
  .hero-inner    { max-width: 400px; text-align: left; }
  .hero-btns     { justify-content: flex-start; }
  .compare-grid,
  .products-grid,
  .combo-grid,
  .reviews-grid  { grid-template-columns: 1fr 1fr; }
  .trust-pills   { gap: 4px 0; }
}

/* ============================================
    RESPONSIVE — MOBILE
    ============================================ */
@media (max-width: 576px) {
  .hero-section  { padding: 60px 0 60px; }
  .hero-inner    { max-width: 100%; }
  .compare-grid,
  .products-grid,
  .combo-grid,
  .reviews-grid  { grid-template-columns: 1fr; }
  .trust-pill    { padding: 4px 12px; font-size: 12px; }
  .section-title { font-size: 22px; }
  .btn-cta       { padding: 14px 40px; font-size: 15px; }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-hero {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  padding: 80px 0 60px;
  text-align: center;
}
.contact-hero-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.contact-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  margin: 0;
}

.contact-section {
  padding: 80px 0;
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
}
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
}

.contact-info-title,
.contact-form-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}
.contact-info-text,
.contact-form-text {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.contact-detail-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(224, 123, 42, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon-wrapper i {
  font-size: 20px;
  color: var(--orange);
}
.contact-detail-content h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.contact-detail-content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Contact Form Styles */
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form .form-group {
  margin-bottom: 20px;
}
.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E0D4C1;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(224, 123, 42, 0.15);
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-contact-send {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}
.btn-contact-send:hover {
  background: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* Map Section */
.map-section {
  padding: 60px 0;
  background: var(--cream2);
}
.map-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.map-placeholder {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 60px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.map-marker {
  font-size: 48px;
  color: var(--orange);
  margin-bottom: 16px;
}
.map-placeholder h4 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}
.map-placeholder p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.btn-map-direct {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 10px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 13px;
  transition: background 0.2s;
}
.btn-map-direct:hover {
  background: var(--orange-dark);
  color: var(--white);
}

/* Responsive for Contact Page */
@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-hero {
    padding: 60px 0 40px;
  }
  .contact-section {
    padding: 60px 0;
  }
  .contact-info-card,
  .contact-form-card {
    padding: 32px 24px;
  }
}

@media (max-width: 576px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
  .contact-hero-title {
    font-size: 28px;
  }
  .contact-info-card,
  .contact-form-card {
    padding: 24px 20px;
  }
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  padding: 80px 0 60px;
  text-align: center;
}
.about-hero-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.about-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  margin: 0;
}

.about-story-section {
  padding: 80px 0;
  background: var(--cream);
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-story-content {
  max-width: 540px;
}
.about-story-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 16px;
}
.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}
.about-story-image {
  display: flex;
  justify-content: center;
}
.about-image-placeholder {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  padding: 20px;
}
.about-image-placeholder i {
  font-size: 64px;
  margin-bottom: 16px;
}
.about-image-placeholder p {
  font-size: 14px;
  font-weight: 600;
}

.mission-section {
  padding: 80px 0;
  background: var(--cream2);
}
.mission-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.mission-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
}
.mission-text {
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 40px;
}
.mission-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.pillar-icon {
  font-size: 36px;
  color: var(--orange);
  margin-bottom: 16px;
}
.pillar-card h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.pillar-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.values-section {
  padding: 80px 0;
  background: var(--cream);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.value-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(224, 123, 42, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.value-icon-wrapper i {
  font-size: 28px;
  color: var(--orange);
}
.value-card h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.value-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.team-section {
  padding: 80px 0;
  background: var(--cream2);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.team-avatar i {
  font-size: 48px;
  color: var(--orange);
}
.team-card h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.team-role {
  font-size: 13px;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 8px;
}
.team-bio {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.about-cta-section {
  padding: 72px 0 80px;
  background: var(--orange);
}
.about-cta-title {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
}
.about-cta-text {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
}
.about-cta-section .btn-cta {
  background: var(--white);
  color: var(--orange);
}
.about-cta-section .btn-cta:hover {
  background: var(--cream);
  color: var(--orange-dark);
}

/* Responsive for About Page */
@media (max-width: 991px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mission-pillars,
  .values-grid,
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-hero {
    padding: 60px 0 40px;
  }
  .about-story-section,
  .mission-section,
  .values-section,
  .team-section {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .about-hero-title {
    font-size: 28px;
  }
  .mission-pillars,
  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  .about-stats {
    justify-content: center;
  }
  .about-image-placeholder {
    width: 220px;
    height: 220px;
  }
}

/* ============================================
   COMBO LANDING PAGE
   ============================================ */
.combo-hero {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  padding: 80px 0 60px;
  text-align: center;
}
.combo-hero-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.combo-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  margin: 0;
}

.why-combo-section {
  padding: 80px 0;
  background: var(--cream);
}
.why-combo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.why-combo-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.why-combo-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(224, 123, 42, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.why-combo-icon i {
  font-size: 28px;
  color: var(--orange);
}
.why-combo-card h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.why-combo-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.faq-section {
  padding: 80px 0;
  background: var(--cream2);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.faq-item h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.faq-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.combo-cta-section {
  padding: 72px 0 80px;
  background: var(--orange);
}
.combo-cta-title {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
}
.combo-cta-text {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
}

/* Responsive for Combo Page */
@media (max-width: 991px) {
  .combo-hero {
    padding: 60px 0 40px;
  }
  .why-combo-section,
  .faq-section {
    padding: 60px 0;
  }
  .why-combo-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .combo-hero-title {
    font-size: 28px;
  }
}

/* ============================================
   SHOP PAGE
   ============================================ */
.shop-hero {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  padding: 80px 0 60px;
  text-align: center;
}
.shop-hero-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.shop-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  margin: 0;
}

.shop-features-section {
  padding: 80px 0;
  background: var(--cream);
}
.shop-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.shop-feature-item {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.feature-icon {
  font-size: 32px;
  color: var(--orange);
  margin-bottom: 12px;
}
.shop-feature-item h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.shop-feature-item p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.shop-cta-section {
  padding: 72px 0 80px;
  background: var(--cream2);
}
.shop-cta-title {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 18px;
}
.shop-cta-text {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* Responsive for Shop Page */
@media (max-width: 991px) {
  .shop-hero {
    padding: 60px 0 40px;
  }
  .shop-features-section {
    padding: 60px 0;
  }
  .shop-features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .shop-hero-title {
    font-size: 28px;
  }
  .shop-features-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.product-hero {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  padding: 80px 0 60px;
  text-align: center;
}
.product-hero-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.product-detail-section {
  padding: 60px 0;
  background: var(--cream);
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.product-image-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product-image-wrapper {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.product-main-image {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
}
.product-thumbnails {
  display: flex;
  gap: 12px;
}
.product-thumbnail {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
}
.product-thumbnail.active {
  border-color: var(--orange);
}
.product-info-col {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.product-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  margin: 8px 0 12px;
}
.product-price {
  font-size: 28px;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 16px;
}
.price-unit {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
}
.product-description {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
}
.product-features {
  margin-bottom: 24px;
}
.quantity-selector {
  margin-bottom: 24px;
}
.quantity-selector label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.quantity-input-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qty-btn {
  width: 36px;
  height: 36px;
  border: 1px solid #E0D4C1;
  background: var(--white);
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
}
.quantity-input-wrapper input {
  width: 50px;
  text-align: center;
  border: 1px solid #E0D4C1;
  border-radius: 8px;
  padding: 8px;
  font-size: 14px;
}
.product-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}
.btn-add-cart {
  background: var(--cream);
  color: var(--text);
  border: 1px solid #E0D4C1;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
}
.btn-buy-now {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
}
.product-meta {
  font-size: 13px;
  color: var(--text-muted);
}
.product-meta p {
  margin: 4px 0;
}

.product-tabs-section {
  padding: 60px 0;
  background: var(--cream2);
}
.product-tabs {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.tab-buttons {
  display: flex;
  border-bottom: 1px solid #E0D4C1;
}
.tab-btn {
  flex: 1;
  padding: 16px;
  background: none;
  border: none;
  font-weight: 600;
  cursor: pointer;
}
.tab-btn.active {
  color: var(--orange);
  border-bottom: 2px solid var(--orange);
}
.tab-content {
  padding: 24px;
}
.tab-pane {
  display: none;
}
.tab-pane.active {
  display: block;
}
.review-summary {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.review-summary .stars {
  color: var(--star-color);
}

/* Responsive for Product Page */
@media (max-width: 991px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .product-hero {
    padding: 60px 0 40px;
  }
}

@media (max-width: 576px) {
  .product-hero-title {
    font-size: 24px;
  }
  .product-actions {
    flex-direction: column;
  }
}

/* ============================================
   CART PAGE
   ============================================ */
.cart-hero {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  padding: 80px 0 60px;
  text-align: center;
}
.cart-hero-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: var(--white);
}

.cart-section {
  padding: 60px 0;
  background: var(--cream);
}
.cart-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
}
.cart-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 20px;
  margin-bottom: 16px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.cart-item-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.cart-item-details h5 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 4px;
}
.cart-item-price {
  color: var(--orange);
  font-weight: 600;
  margin: 0;
}
.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-item-remove {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--red-x);
  cursor: pointer;
}
.cart-summary-col {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.cart-summary-col h4 {
  font-size: 18px;
  margin-bottom: 16px;
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin: 12px 0;
  font-size: 14px;
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  margin: 16px 0;
}
.btn-checkout {
  width: 100%;
  background: var(--orange);
  color: var(--white);
  text-align: center;
  margin-top: 16px;
}
.btn-continue {
  width: 100%;
  background: var(--cream);
  color: var(--text);
  text-align: center;
  margin-top: 8px;
}

/* ============================================
   CHECKOUT PAGE
   ============================================ */
.checkout-hero {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  padding: 80px 0 60px;
  text-align: center;
}
.checkout-hero-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: var(--white);
}

.checkout-section {
  padding: 60px 0;
  background: var(--cream);
}
.checkout-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
}
.checkout-form-col {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.checkout-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.checkout-form .form-group {
  margin-bottom: 20px;
}
.checkout-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.checkout-form input,
.checkout-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E0D4C1;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.checkout-form input:focus,
.checkout-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(224, 123, 42, 0.15);
}
.checkout-form textarea {
  resize: vertical;
  min-height: 80px;
}
.billing-details-card {
  padding: 24px 0;
}
.checkout-section-title {
  font-size: 18px;
  margin: 24px 0 16px;
}
.checkout-section-title:first-child {
  margin-top: 0;
}
.checkout-section-title i {
  margin-right: 8px;
  color: var(--orange);
}
.checkout-summary-col {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.checkout-items {
  margin: 16px 0;
}
.checkout-item {
  display: flex;
  justify-content: space-between;
  margin: 8px 0;
  font-size: 14px;
}
.payment-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.payment-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid #E0D4C1;
  border-radius: 8px;
  cursor: pointer;
}
.payment-option span i {
  margin-right: 8px;
}
.checkout-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  padding: 12px;
  background: rgba(74, 124, 89, 0.1);
  border-radius: 8px;
  font-size: 13px;
  color: var(--green);
}

/* ============================================
   ORDER COMPLETE PAGE
   ============================================ */
.order-complete-section {
  padding: 100px 0;
  background: var(--cream);
}
.order-complete-icon {
  font-size: 80px;
  color: var(--green);
  margin-bottom: 20px;
}
.order-complete-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}
.order-complete-order {
  font-size: 16px;
  color: var(--text-muted);
}
.order-number {
  font-size: 18px;
  font-weight: 600;
  color: var(--orange);
  margin: 16px 0;
}
.order-details {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px;
  max-width: 500px;
  margin: 32px auto;
  box-shadow: var(--shadow-sm);
}
.order-details h4 {
  margin-bottom: 16px;
}
.order-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  margin-top: 12px;
}
.order-info {
  text-align: left;
  margin-top: 16px;
  font-size: 14px;
}
.btn-track {
  background: var(--cream);
  color: var(--text);
}

/* Responsive for Cart/Checkout */
@media (max-width: 991px) {
  .cart-grid,
  .checkout-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .cart-hero-title,
  .checkout-hero-title {
    font-size: 24px;
  }
}