/* ═══════════════════════════════════════════════════════════
   FRESH CHICKEN CENTER (FCC) - MASTER STYLESHEET
   Unified CSS for Multi-Page Raw Chicken E-Commerce Platform
   ═══════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS & VARIABLES ── */
:root {
  --g: #1a6b3a;
  --g2: #2d8a52;
  --g-dark: #082415;
  --g-light: #38a169;
  --gp: #e8f5ee;
  --gbg: #f4f9f5;
  --gold: #c8922a;
  --gold-light: #fef3d0;
  --gold-dark: #9b6b15;
  --red: #d32f2f;
  --red-light: #ffebee;
  --dark: #0e1a11;
  --dark-soft: #243329;
  --gray: #5e7365;
  --gray-light: #8e9e94;
  --bd: #d0e4d7;
  --bd-light: #e6f0ea;
  --white: #ffffff;
  --card-bg: #ffffff;
  
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 20px;
  --r-full: 9999px;
  
  --sh-sm: 0 2px 8px rgba(14, 26, 17, 0.06);
  --sh: 0 4px 20px rgba(26, 107, 58, 0.08);
  --sh-lg: 0 10px 30px rgba(8, 36, 21, 0.14);
  --sh-float: 0 8px 32px rgba(26, 107, 58, 0.22);
  
  --max-w: 1200px;
  --header-h: 70px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET & BASE ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--gbg);
  color: var(--dark);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, .serif-heading {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--dark);
  font-weight: 700;
  line-height: 1.25;
}

.text-green { color: var(--g); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--gray); }

/* ── ANNOUNCEMENT TOPBAR ── */
.top-announcement {
  background: linear-gradient(90deg, #05190e, #0f4223);
  color: #e2f1e8;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  text-align: center;
  border-bottom: 1px solid rgba(200, 146, 42, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.top-announcement span strong {
  color: #ffd27d;
}

.top-announcement .badge-pill {
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--r-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── MAIN HEADER / NAVBAR ── */
.site-header {
  background: rgba(8, 36, 21, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 150;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 16px;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo-img {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  object-fit: cover;
  background: #fff;
  padding: 2px;
  border: 2px solid rgba(200, 146, 42, 0.6);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.brand-info h1 {
  font-size: 17px;
  color: #fff;
  margin: 0;
  letter-spacing: -0.2px;
}

.brand-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.brand-info .dot-live {
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 6px #4ade80;
}

/* Desktop Navigation */
.desktop-nav {
  display: none;
}

@media (min-width: 900px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13.5px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
  }
  
  .nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
  }
  
  .nav-link.active {
    color: #fff;
    font-weight: 700;
    background: rgba(26, 107, 58, 0.6);
  }
  
  .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 12px;
    right: 12px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
  }
}

/* Header Right Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.call-btn-quick {
  display: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  font-size: 12.5px;
  font-weight: 600;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.call-btn-quick:hover {
  background: var(--g);
  border-color: var(--g);
}

@media (min-width: 768px) {
  .call-btn-quick {
    display: inline-flex;
  }
}

.header-cart-btn {
  position: relative;
  background: linear-gradient(135deg, var(--g), var(--g2));
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 42px;
  padding: 0 14px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(26, 107, 58, 0.3);
}

.header-cart-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.cart-counter-badge {
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 20px;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hamburger-btn {
  background: rgba(255, 255, 255, 0.12);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  transition: var(--transition);
}

.hamburger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

@media (min-width: 900px) {
  .hamburger-btn {
    display: none;
  }
}

/* ── MOBILE DRAWER MENU ── */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -310px;
  width: 300px;
  height: 100vh;
  background: #fff;
  z-index: 201;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.drawer-backdrop.open .mobile-drawer {
  right: 0;
}

.drawer-header {
  background: linear-gradient(135deg, #082415, var(--g));
  padding: 24px 20px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-header h3 {
  color: #fff;
  font-size: 19px;
}

.drawer-close-btn {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.drawer-close-btn:hover {
  background: rgba(255, 255, 255, 0.35);
}

.drawer-nav-list {
  flex: 1;
  padding: 12px 0;
}

.drawer-nav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  color: var(--dark);
  font-size: 14.5px;
  font-weight: 600;
  border-bottom: 1px solid var(--bd-light);
  transition: background 0.15s ease;
}

.drawer-nav-item:hover, .drawer-nav-item.active {
  background: var(--gp);
  color: var(--g);
}

.drawer-nav-item .icon {
  font-size: 20px;
  width: 24px;
  text-align: center;
}

.drawer-footer {
  padding: 20px;
  background: var(--gbg);
  border-top: 1px solid var(--bd);
}

.drawer-footer p {
  font-size: 11.5px;
  color: var(--gray);
  line-height: 1.6;
}

.drawer-footer .drawer-call {
  display: inline-block;
  margin-top: 10px;
  font-weight: 700;
  color: var(--g);
  font-size: 13px;
}

/* ── HERO BANNER & SLIDER (CLEAN IMAGE DISPLAY) ── */
.hero-section {
  position: relative;
  background: #081e10;
  overflow: hidden;
  border-bottom: 2px solid var(--bd);
}

.banner-slider-container {
  position: relative;
  width: 100%;
  height: 240px;
}

@media (min-width: 640px) {
  .banner-slider-container {
    height: 320px;
  }
}

@media (min-width: 900px) {
  .banner-slider-container {
    height: 400px;
  }
}

.banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.65s ease, visibility 0.65s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.banner-slide.active {
  opacity: 1;
  visibility: visible;
}

.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 14px;
  z-index: 10;
  display: flex;
  gap: 8px;
  background: rgba(0, 0, 0, 0.4);
  padding: 5px 12px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  width: 22px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

/* ── VALUE PROPOSITIONS & TRUST BADGES ── */
.features-bar {
  background: #fff;
  border-bottom: 1px solid var(--bd);
  box-shadow: var(--sh-sm);
  padding: 18px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
}

.feature-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gp);
  color: var(--g);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  border: 1px solid var(--bd);
}

.feature-info h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.feature-info p {
  font-size: 11.5px;
  color: var(--gray);
  line-height: 1.3;
}

/* ── PAGE HERO (FOR SUBPAGES) ── */
.subpage-hero {
  background: linear-gradient(135deg, #082415, var(--g));
  color: #fff;
  padding: 40px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.subpage-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(200, 146, 42, 0.15), transparent 70%);
}

.subpage-hero h1 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 8px;
  position: relative;
}

@media (min-width: 768px) {
  .subpage-hero h1 {
    font-size: 36px;
  }
}

.subpage-hero p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
  position: relative;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs a:hover {
  color: var(--gold);
}

/* ── SECTION HEADINGS ── */
.section {
  padding: 36px 0;
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 24px;
  gap: 6px;
}

@media (min-width: 640px) {
  .section-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.section-head-title h2 {
  font-size: 22px;
  margin-bottom: 4px;
}

@media (min-width: 768px) {
  .section-head-title h2 {
    font-size: 26px;
  }
}

.section-head-title p {
  font-size: 13.5px;
  color: var(--gray);
}

.section-head-action a {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--g);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.section-head-action a:hover {
  color: var(--g2);
}

/* ── CATEGORY PILLS / FILTER TABS ── */
.category-filter-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 20px;
  scrollbar-width: none;
}

.category-filter-wrap::-webkit-scrollbar {
  display: none;
}

.cat-chip {
  padding: 8px 16px;
  background: #fff;
  border: 1.5px solid var(--bd);
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-soft);
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cat-chip:hover {
  border-color: var(--g);
  background: var(--gp);
}

.cat-chip.active {
  background: var(--g);
  border-color: var(--g);
  color: #fff;
  box-shadow: 0 2px 10px rgba(26, 107, 58, 0.25);
}

/* ── SEARCH & SORT BAR ── */
.catalog-toolbar {
  background: #fff;
  border: 1.5px solid var(--bd);
  border-radius: var(--r);
  padding: 12px 16px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--sh-sm);
}

@media (min-width: 640px) {
  .catalog-toolbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.catalog-search-wrap {
  position: relative;
  flex: 1;
  max-width: 400px;
}

.catalog-search-input {
  width: 100%;
  padding: 10px 14px 10px 38px;
  border: 1.5px solid var(--bd);
  border-radius: 8px;
  font-size: 13.5px;
  outline: none;
  background: var(--gbg);
  transition: var(--transition);
}

.catalog-search-input:focus {
  border-color: var(--g);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26, 107, 58, 0.1);
}

.catalog-search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray);
  font-size: 16px;
}

.catalog-sort-select {
  padding: 10px 14px;
  border: 1.5px solid var(--bd);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  outline: none;
  background: #fff;
  color: var(--dark);
  cursor: pointer;
}

.catalog-sort-select:focus {
  border-color: var(--g);
}

/* ── PRODUCT GRID & CARDS ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }
}

.product-card {
  background: var(--card-bg);
  border: 1.5px solid var(--bd);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--sh-sm);
  position: relative;
}

.product-card:hover {
  border-color: var(--g);
  box-shadow: var(--sh);
  transform: translateY(-3px);
}

.product-card.in-cart {
  border-color: var(--g);
  box-shadow: 0 4px 18px rgba(26, 107, 58, 0.18);
}

.product-img-container {
  position: relative;
  width: 100%;
  height: 150px;
  background: #0d1f10;
  overflow: hidden;
}

@media (min-width: 768px) {
  .product-img-container {
    height: 180px;
  }
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 54px;
  background: linear-gradient(135deg, #0e2a16, #1a6b3a);
}

.badge-fresh {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--g);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--r-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.badge-cut-type {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 9.5px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  z-index: 2;
}

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

@media (min-width: 768px) {
  .product-details {
    padding: 14px;
  }
}

.product-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .product-title {
    font-size: 15px;
  }
}

.product-desc-tag {
  font-size: 11.5px;
  color: var(--gray);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.product-pricing {
  margin-top: auto;
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.product-price-val {
  font-size: 16px;
  font-weight: 800;
  color: var(--g);
}

.product-unit-val {
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
}

/* ── QUANTITY / ADD CONTROLS ── */
.btn-add-cart {
  width: 100%;
  padding: 9px;
  background: var(--g);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(26, 107, 58, 0.2);
}

.btn-add-cart:hover {
  background: var(--g2);
  transform: translateY(-1px);
}

.qty-control-box {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 100%;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.qty-btn.minus {
  background: var(--bd);
  color: var(--dark-soft);
}

.qty-btn.minus:hover {
  background: #bdcfc3;
}

.qty-btn.plus {
  background: var(--g);
  color: #fff;
}

.qty-btn.plus:hover {
  background: var(--g2);
}

.qty-input {
  flex: 1;
  text-align: center;
  border: 1.5px solid var(--bd);
  border-radius: 8px;
  padding: 6px 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  background: #fff;
  outline: none;
  min-width: 0;
}

.qty-input:focus {
  border-color: var(--g);
}

/* ── WHY CHOOSE US / TRUST SECTION ── */
.why-us-section {
  background: #fff;
  border-top: 1px solid var(--bd);
  border-bottom: 1px solid var(--bd);
  padding: 48px 0;
}

.trust-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .trust-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trust-card {
  background: var(--gbg);
  border: 1.5px solid var(--bd);
  border-radius: var(--r);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}

.trust-card:hover {
  border-color: var(--g);
  transform: translateY(-3px);
  box-shadow: var(--sh);
}

.trust-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--gp);
  color: var(--g);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 1.5px solid var(--bd);
}

.trust-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.trust-card p {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.6;
}

/* ── HOW IT WORKS STEPS ── */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-card {
  background: #fff;
  border: 1.5px solid var(--bd);
  border-radius: var(--r);
  padding: 20px;
  position: relative;
  box-shadow: var(--sh-sm);
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--g);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.step-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.step-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

/* ── AREA CHECKER WIDGET ── */
.area-checker-card {
  background: linear-gradient(135deg, #082415, var(--g));
  color: #fff;
  border-radius: var(--r-lg);
  padding: 28px 20px;
  box-shadow: var(--sh-lg);
  margin: 30px 0;
}

@media (min-width: 768px) {
  .area-checker-card {
    padding: 36px 32px;
  }
}

.area-checker-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 900px) {
  .area-checker-inner {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
  }
}

.area-checker-text h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 8px;
}

.area-checker-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.6;
}

.area-checker-form {
  position: relative;
}

.area-search-input-box {
  position: relative;
}

.area-search-field {
  width: 100%;
  padding: 14px 16px 14px 42px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  font-size: 14.5px;
  outline: none;
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.area-search-field:focus {
  background: #fff;
  border-color: var(--gold);
}

.area-search-icon-inside {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--gray);
}

.area-dropdown-results {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 2px solid var(--g);
  border-radius: 12px;
  max-height: 220px;
  overflow-y: auto;
  z-index: 80;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  display: none;
}

.area-dropdown-results.open {
  display: block;
}

.area-opt-row {
  padding: 12px 16px;
  font-size: 13.5px;
  cursor: pointer;
  border-bottom: 1px solid var(--bd-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--dark);
  transition: background 0.12s;
}

.area-opt-row:last-child {
  border-bottom: none;
}

.area-opt-row:hover {
  background: var(--gp);
}

.area-tag-badge {
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--r-full);
}

.area-tag-badge.free {
  background: #d4eddf;
  color: #1a6b3a;
}

.area-tag-badge.paid {
  background: #fff3e0;
  color: #e65100;
}

.area-result-badge-display {
  margin-top: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  display: none;
  align-items: center;
  justify-content: space-between;
}

.area-result-badge-display.show {
  display: flex;
}

/* ── TESTIMONIALS & FAQ ── */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: #fff;
  border: 1.5px solid var(--bd);
  border-radius: var(--r);
  padding: 20px;
  box-shadow: var(--sh-sm);
}

.review-stars {
  color: #f59e0b;
  font-size: 15px;
  margin-bottom: 8px;
}

.review-text {
  font-size: 13.5px;
  color: var(--dark-soft);
  line-height: 1.6;
  margin-bottom: 12px;
  font-style: italic;
}

.review-author {
  font-weight: 700;
  font-size: 13px;
  color: var(--dark);
}

.review-loc {
  font-size: 11px;
  color: var(--gray);
}

/* ── FAQ ACCORDION ── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1.5px solid var(--bd);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh-sm);
}

.faq-question {
  width: 100%;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--dark);
  text-align: left;
  cursor: pointer;
  background: #fff;
  transition: background 0.15s;
}

.faq-question:hover {
  background: var(--gp);
}

.faq-icon-arrow {
  font-size: 14px;
  transition: transform 0.25s ease;
  color: var(--g);
}

.faq-item.open .faq-icon-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s;
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  padding: 0 20px 16px;
  max-height: 250px;
}

/* ── CONTACT & ABOUT PAGES CONTENT ── */
.content-card {
  background: #fff;
  border: 1.5px solid var(--bd);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--sh-sm);
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .content-card {
    padding: 36px;
  }
}

.content-card h2, .content-card h3 {
  margin-bottom: 14px;
}

.content-card h4 {
  font-size: 16px;
  color: var(--g);
  margin: 20px 0 8px;
}

.content-card p {
  font-size: 14px;
  color: var(--dark-soft);
  line-height: 1.7;
  margin-bottom: 12px;
}

.content-card ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.content-card li {
  font-size: 14px;
  color: var(--dark-soft);
  line-height: 1.7;
  margin-bottom: 6px;
}

/* Contact Cards Grid */
.contact-methods-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

@media (min-width: 640px) {
  .contact-methods-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .contact-methods-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.contact-method-card {
  background: #fff;
  border: 1.5px solid var(--bd);
  border-radius: var(--r);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: var(--sh-sm);
  transition: var(--transition);
}

.contact-method-card:hover {
  border-color: var(--g);
  transform: translateY(-2px);
  box-shadow: var(--sh);
}

.cmc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gp);
  color: var(--g);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.cmc-info h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}

.cmc-info p, .cmc-info a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--g);
}

.cmc-info small {
  display: block;
  font-size: 11px;
  color: var(--gray);
  margin-top: 2px;
}

/* ── SHIPPING SLOTS TABLE ── */
.schedule-table-wrap {
  overflow-x: auto;
  margin: 20px 0;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--sh-sm);
}

.schedule-table th {
  background: linear-gradient(135deg, #082415, var(--g));
  color: #fff;
  padding: 14px 16px;
  font-size: 13.5px;
  text-align: left;
  font-weight: 600;
}

.schedule-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--bd-light);
  font-size: 13.5px;
  color: var(--dark-soft);
}

.schedule-table tr:last-child td {
  border-bottom: none;
}

.schedule-table tr:hover td {
  background: var(--gp);
}

/* ── PAYMENT PAGE QR BOX & APPS ── */
.payment-showcase-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 24px 0;
}

@media (min-width: 768px) {
  .payment-showcase-box {
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
  }
}

.qr-standalone-card {
  background: var(--gp);
  border: 2px dashed var(--bd);
  border-radius: var(--r);
  padding: 24px;
  text-align: center;
}

.qr-preview-img {
  width: 180px;
  height: 180px;
  border-radius: 12px;
  border: 3px solid var(--g);
  background: #fff;
  margin: 0 auto 12px;
  display: block;
}

.upi-id-pill-lg {
  display: inline-block;
  background: #fff;
  border: 1.5px solid var(--bd);
  padding: 8px 16px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 700;
  color: var(--g);
}

.payment-apps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.payment-app-chip {
  background: #fff;
  border: 1.5px solid var(--bd);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ═══════════════════════════════════════════════════════════
   STICKY BOTTOM CART BAR (SWIGGY STYLE)
   ═══════════════════════════════════════════════════════════ */
.sticky-cart-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px 14px;
  z-index: 140;
  display: none;
  pointer-events: none;
}

.sticky-cart-bar.show {
  display: block;
}

.sticky-cart-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid var(--bd);
  box-shadow: 0 -4px 24px rgba(26, 107, 58, 0.16), 0 8px 28px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  pointer-events: all;
}

.scb-left {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  cursor: pointer;
  border-right: 1.5px solid var(--bd);
  min-width: 0;
  transition: background 0.15s;
}

.scb-left:hover {
  background: #fafffe;
}

.scb-store-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--gp);
  color: var(--g);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.scb-info {
  min-width: 0;
}

.scb-items-text {
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.scb-view-cta {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--g);
  margin-top: 2px;
}

.scb-right {
  background: linear-gradient(135deg, #1a6b3a, #2d8a52);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  cursor: pointer;
  min-width: 120px;
  border: none;
  transition: filter 0.15s;
}

.scb-right:hover {
  filter: brightness(1.08);
}

.scb-count-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.scb-total-val {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.scb-btn-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   CHECKOUT MODAL / BOTTOM SHEET
   ═══════════════════════════════════════════════════════════ */
.checkout-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 210;
  display: none;
  overflow-y: auto;
}

.checkout-modal-backdrop.open {
  display: block;
}

.checkout-modal-box {
  background: #fff;
  border-radius: 24px 24px 0 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 580px;
  margin: 0 auto;
  max-height: 94vh;
  overflow-y: auto;
  padding-bottom: 28px;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.25);
  animation: slideUpSheet 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUpSheet {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

@media (min-width: 640px) {
  .checkout-modal-backdrop {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  
  .checkout-modal-backdrop.open {
    display: flex;
  }
  
  .checkout-modal-box {
    position: relative;
    border-radius: 20px;
    width: 100%;
    max-height: 88vh;
    animation: fadeInModal 0.25s ease;
  }
  
  @keyframes fadeInModal {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
  }
}

.checkout-header {
  background: linear-gradient(135deg, #082415, var(--g));
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 10;
}

.checkout-header h2 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 19px;
}

.checkout-close-btn {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkout-body {
  padding: 18px 20px;
}

.checkout-section {
  margin-bottom: 20px;
}

.checkout-section-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 10px;
}

/* Delivery Slot in Checkout */
.checkout-slot-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #e8f5ee, #d0eedd);
  border: 1.5px solid #a8d8b9;
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 16px;
}

.csb-icon {
  font-size: 24px;
}

.csb-label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gray);
}

.csb-time {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--g);
}

/* Summary Items */
.summary-items-list {
  border: 1.5px solid var(--bd);
  border-radius: 12px;
  padding: 8px 14px;
  background: #fafcfb;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--bd-light);
}

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

.summary-item-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dark);
}

.summary-item-qty {
  font-size: 11.5px;
  color: var(--gray);
  margin-top: 1px;
}

.summary-item-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--g);
}

.summary-delivery-charge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px dashed var(--bd);
  font-size: 13.5px;
  margin-top: 6px;
}

.summary-total-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--gp);
  border-radius: 12px;
  margin-top: 12px;
  font-weight: 700;
}

.summary-total-bar .total-amount {
  font-size: 20px;
  color: var(--g);
}

/* Form Inputs */
.form-input {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--bd);
  border-radius: 10px;
  font-size: 14px;
  outline: none;
  background: #fff;
  transition: border-color 0.2s;
  color: var(--dark);
}

.form-input:focus {
  border-color: var(--g);
  box-shadow: 0 0 0 3px rgba(26, 107, 58, 0.1);
}

.form-gap {
  margin-top: 10px;
}

/* Selected Area Pill */
.selected-area-pill-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gp);
  border: 1.5px solid var(--bd);
  color: var(--g);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--r-full);
  margin-top: 8px;
}

.selected-area-pill-box button {
  background: rgba(26, 107, 58, 0.15);
  color: var(--g);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* Delivery charge card */
.delivery-charge-card {
  border-radius: 12px;
  padding: 12px 14px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid var(--bd);
}

.delivery-charge-card.free {
  background: linear-gradient(135deg, #e8f5ee, #d4eddf);
  border-color: #a8d8b9;
}

.delivery-charge-card.paid {
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  border-color: #ffb74d;
}

.dcc-icon {
  font-size: 22px;
}

.dcc-info {
  flex: 1;
}

.dcc-info strong {
  display: block;
  font-size: 13.5px;
  color: var(--dark);
}

.dcc-info span {
  font-size: 11.5px;
  color: var(--gray);
}

.dcc-amount {
  font-size: 16px;
  font-weight: 800;
}

.delivery-charge-card.free .dcc-amount { color: #1a6b3a; }
.delivery-charge-card.paid .dcc-amount { color: #e65100; }

/* Buttons in Checkout */
.btn-proceed-checkout {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--g), var(--g2));
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  margin-top: 16px;
  box-shadow: 0 4px 16px rgba(26, 107, 58, 0.3);
  transition: var(--transition);
}

.btn-proceed-checkout:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.btn-back-checkout {
  width: 100%;
  padding: 10px;
  background: #f0f0f0;
  color: var(--dark);
  border: none;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.btn-place-order {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--gold), #db9a28);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  margin-top: 16px;
  box-shadow: 0 4px 18px rgba(200, 146, 42, 0.35);
  transition: var(--transition);
}

.btn-place-order:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.btn-place-order:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ═══════════════════════════════════════════════════════════
   TOAST NOTIFICATION
   ═══════════════════════════════════════════════════════════ */
.toast-notice {
  position: fixed;
  bottom: 84px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  visibility: hidden;
  background: var(--dark);
  color: #fff;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}

.toast-notice.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

.toast-notice.success {
  background: var(--g);
}

.toast-notice.error {
  background: var(--red);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.site-footer {
  background: linear-gradient(180deg, #082415, #04140b);
  color: #fff;
  margin-top: auto;
  border-top: 3px solid var(--gold);
}

.footer-top {
  padding: 40px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  text-align: left;
}

@media (min-width: 768px) {
  .footer-top {
    padding: 48px 0 32px;
  }
  .footer-grid {
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
}

.footer-col h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 18px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  position: relative;
  display: inline-block;
  line-height: 1.3;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 36px;
  height: 2.5px;
  background: var(--gold);
  border-radius: 2px;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13.5px;
  line-height: 1.65;
  margin-bottom: 12px;
  text-align: left;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13.5px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: #ffd27d;
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13.5px;
  line-height: 1.55;
  margin-bottom: 14px;
  text-align: left;
  width: 100%;
}

.footer-contact-item .icon,
.footer-contact-item .icon-svg {
  flex-shrink: 0;
  font-size: 16px;
  color: var(--gold);
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-contact-item span:last-child {
  flex: 1;
  word-break: break-word;
}

.footer-contact-item a {
  color: #ffffff;
  font-weight: 600;
  transition: color 0.15s ease;
}

.footer-contact-item a:hover {
  color: #ffd27d;
  text-decoration: underline;
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  width: 100%;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
  flex-shrink: 0;
}

.social-btn:hover {
  background: var(--g);
  transform: translateY(-2px);
}

.social-btn.instagram:hover {
  background: #E1306C;
}

.social-btn.facebook:hover {
  background: #1877F2;
}

.footer-bottom {
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

/* Spinner */
.spinner-load {
  display: inline-block;
  width: 28px;
  height: 28px;
  border: 3px solid var(--bd);
  border-top-color: var(--g);
  border-radius: 50%;
  animation: spinAround 0.7s linear infinite;
}

@keyframes spinAround {
  to { transform: rotate(360deg); }
}

/* Utility Padding to account for bottom sticky cart */
.page-bottom-spacer {
  height: 80px;
}

/* ═══════════════════════════════════════════════════════════
   PRODUCT DETAIL PAGE (PDP) STYLES
   ═══════════════════════════════════════════════════════════ */
.pdp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 860px) {
  .pdp-grid {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
    gap: 36px;
  }
}

.pdp-gallery-card {
  background: #fff;
  border: 1.5px solid var(--bd);
  border-radius: var(--r-lg);
  padding: 16px;
  box-shadow: var(--sh-sm);
  position: relative;
}

.icon-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  flex-shrink: 0;
}

.icon-svg svg {
  display: block;
}

.pdp-img-wrap {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: 14px;
  overflow: hidden;
  background: #0d1f10;
}

@media (min-width: 640px) {
  .pdp-img-wrap {
    height: 380px;
  }
}

.pdp-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  background: linear-gradient(135deg, #0e2a16, #1a6b3a);
}

.pdp-info-card {
  background: #fff;
  border: 1.5px solid var(--bd);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--sh-sm);
}

@media (min-width: 640px) {
  .pdp-info-card {
    padding: 32px;
  }
}

.pdp-title {
  font-size: 24px;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.25;
}

@media (min-width: 640px) {
  .pdp-title {
    font-size: 30px;
  }
}

.pdp-cut-badge {
  display: inline-block;
  background: var(--gp);
  color: var(--g);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--r-full);
  margin-bottom: 16px;
}

.pdp-price-box {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--bd-light);
}

.pdp-price-amount {
  font-size: 28px;
  font-weight: 800;
  color: var(--g);
}

.pdp-price-unit {
  font-size: 14px;
  color: var(--gray);
  font-weight: 500;
}

.pdp-desc {
  font-size: 14.5px;
  color: var(--dark-soft);
  line-height: 1.7;
  margin-bottom: 24px;
}

.pdp-actions-box {
  background: var(--gbg);
  border: 1.5px solid var(--bd);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 24px;
}

.pdp-btn-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 480px) {
  .pdp-btn-group {
    grid-template-columns: 1.2fr 1fr;
  }
}

.btn-buy-now-lg {
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--gold), #db9a28);
  color: #fff;
  border-radius: 12px;
  font-size: 15.5px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(200, 146, 42, 0.35);
  transition: var(--transition);
}

.btn-buy-now-lg:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.btn-add-cart-lg {
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--g), var(--g2));
  color: #fff;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(26, 107, 58, 0.25);
  transition: var(--transition);
}

.btn-add-cart-lg:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.pdp-trust-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--bd-light);
  padding-top: 20px;
}

.pdp-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pdp-trust-item span {
  font-size: 22px;
}

.pdp-trust-item strong {
  display: block;
  font-size: 13.5px;
  color: var(--dark);
}

.pdp-trust-item small {
  font-size: 12px;
  color: var(--gray);
}

/* ═══════════════════════════════════════════════════════════
   CHECKOUT STEP TRACKER & PAGES
   ═══════════════════════════════════════════════════════════ */
.checkout-steps-nav {
  background: #fff;
  border-bottom: 1.5px solid var(--bd);
  padding: 14px 0;
  box-shadow: var(--sh-sm);
}

.step-tracker-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 500px;
  margin: 0 auto;
}

.st-step {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 13px;
  font-weight: 600;
}

.st-step.active {
  color: var(--g);
  font-weight: 700;
}

.st-step.done {
  color: var(--g);
}

.st-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e9ecef;
  color: var(--gray);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.st-step.active .st-num {
  background: var(--g);
  color: #fff;
}

.st-step.done .st-num {
  background: var(--gp);
  color: var(--g);
  border: 1.5px solid var(--g);
}

.st-divider {
  flex: 1;
  height: 2px;
  background: var(--bd);
  max-width: 80px;
}

.st-divider.active {
  background: var(--g);
}

/* Shipping Page Grid */
.shipping-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 860px) {
  .shipping-page-grid {
    grid-template-columns: 1.3fr 1fr;
    align-items: start;
    gap: 32px;
  }
}

/* Payment Page Grid */
.payment-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 860px) {
  .payment-page-grid {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
    gap: 32px;
  }
}

/* TOP PWA INSTALL BAR (Matching User's Reference) */
.top-pwa-install-bar {
  background: #0d4224;
  background: linear-gradient(180deg, #0d4525 0%, #082d18 100%);
  border-bottom: 2px solid #cf8c22;
  padding: 10px 0;
  display: none; /* Controlled by JS: shown only if not installed */
  width: 100%;
  position: relative;
  z-index: 95;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.top-pwa-install-bar.show {
  display: block;
}

.top-pwa-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.tp-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tp-phone-icon {
  font-size: 24px;
  color: #ffd27d;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tp-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.tp-text strong {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.tp-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 12.5px;
  margin: 0;
  line-height: 1.3;
}

.tp-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.btn-tp-install {
  background: #d49324;
  background: linear-gradient(135deg, #d89626, #c5841b);
  color: #ffffff;
  border: none;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 24px;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.btn-tp-install:hover {
  background: linear-gradient(135deg, #e5a12d, #d49324);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(212, 147, 36, 0.35);
}

.btn-tp-close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  font-weight: 400;
  cursor: pointer;
  padding: 2px 4px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s ease, transform 0.15s ease;
}

.btn-tp-close:hover {
  color: #ffffff;
  transform: scale(1.15);
}

@media (max-width: 480px) {
  .top-pwa-install-bar {
    padding: 8px 0;
  }
  .tp-phone-icon {
    font-size: 20px;
  }
  .tp-text strong {
    font-size: 14px;
  }
  .tp-text p {
    font-size: 11.5px;
  }
  .btn-tp-install {
    font-size: 13px;
    padding: 7px 18px;
    border-radius: 10px;
  }
  .tp-right {
    gap: 10px;
  }
}


