/* ==========================================================================
   PURE HIMALAYAN BLISS - MASTER STYLESHEET
   Matching reference aesthetic: Pristine Himalayan Blues, Organic Greens, 
   Refined Typography, Trust Badges, and Ultra-Crisp Mobile-First Layout
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,400;1,600&display=swap');
@import url('https://cdn.jsdelivr.net/npm/remixicon@3.5.0/fonts/remixicon.css');

:root {
  --clr-brand-dark: #081d30;
  --clr-brand-navy: #0c2b47;
  --clr-brand-blue: #134470;
  --clr-brand-light-blue: #eaf2f8;
  --clr-organic-green: #3d8022;
  --clr-organic-light: #5fa835;
  --clr-organic-bg: #f2f8ee;
  --clr-harvest-gold: #e5a429;
  --clr-harvest-warm: #fdf7eb;
  --clr-text-main: #1e293b;
  --clr-text-muted: #64748b;
  --clr-text-light: #94a3b8;
  --clr-bg-surface: #f8faf7;
  --clr-white: #ffffff;
  --clr-border: #e2e8f0;
  --clr-border-green: #d1e7c4;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(12, 43, 71, 0.08), 0 2px 4px rgba(12, 43, 71, 0.04);
  --shadow-lg: 0 12px 30px rgba(12, 43, 71, 0.12), 0 4px 8px rgba(12, 43, 71, 0.06);
  --shadow-hover: 0 20px 40px rgba(12, 43, 71, 0.16), 0 8px 16px rgba(12, 43, 71, 0.08);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --radius-pill: 9999px;
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif: 'Playfair Display', serif;
  --font-display: 'Cinzel', serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  color: var(--clr-text-main);
  background-color: var(--clr-bg-surface);
  line-height: 1.6;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(12px, 3.5vw, 24px);
  padding-right: clamp(12px, 3.5vw, 24px);
  box-sizing: border-box;
}

.container-fluid {
  width: 100%;
  padding-left: clamp(12px, 3.5vw, 24px);
  padding-right: clamp(12px, 3.5vw, 24px);
  box-sizing: border-box;
}

/* Typography Utilities */
.font-serif { font-family: var(--font-serif); }
.font-display { font-family: var(--font-display); }
.font-bold { font-weight: 700; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-muted { color: var(--clr-text-muted); }
.text-brand { color: var(--clr-brand-navy); }
.text-success { color: var(--clr-organic-green); }
.m-0 { margin: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 2.5rem !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 2.5rem !important; }
.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.w-100 { width: 100% !important; }
.d-flex { display: flex !important; }
.d-block { display: block !important; }
.justify-between { justify-content: space-between !important; }
.align-center { align-items: center !important; }
.gap-2 { gap: 0.5rem !important; }
.gap-3 { gap: 1rem !important; }
.gap-4 { gap: 1.5rem !important; }

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--clr-organic-green);
  color: var(--clr-white);
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(61, 128, 34, 0.25);
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: #31691a;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(61, 128, 34, 0.35);
  color: var(--clr-white);
}

.btn-golden {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #e5a429, #c78816);
  color: var(--clr-white);
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(229, 164, 41, 0.3);
  transition: var(--transition);
}

.btn-golden:hover {
  background: linear-gradient(135deg, #d3931d, #b3770e);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 164, 41, 0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: transparent;
  color: var(--clr-brand-navy);
  border: 2px solid var(--clr-brand-navy);
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  background-color: var(--clr-brand-navy);
  color: var(--clr-white);
  transform: translateY(-2px);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: var(--clr-white);
  border: 2px solid var(--clr-white);
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline-white:hover {
  background-color: var(--clr-white);
  color: var(--clr-brand-navy);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 6px 14px;
  font-size: 0.85rem;
  border-radius: var(--radius-md);
}

.btn-danger {
  background-color: #dc2626;
  color: var(--clr-white);
  border: none;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

/* Badges */
.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-in-season {
  background-color: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

.badge-coming-soon {
  background-color: #fff3e0;
  color: #e65100;
  border: 1px solid #ffe0b2;
}

.badge-pgs {
  background-color: #e3f2fd;
  color: #1565c0;
  border: 1px solid #bbdefb;
}

/* ==========================================================================
   TOP BAR & HEADER NAVIGATION (100% Single-Line Marquee & Mobile Fluid)
   ========================================================================== */
.top-announcement-bar {
  background: linear-gradient(90deg, #061726, #0c2b47);
  color: rgba(255, 255, 255, 0.95);
  height: 36px;
  line-height: 36px;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  z-index: 2000;
}

.top-marquee-track {
  display: flex;
  width: max-content;
  animation: topMarqueeScroll 26s linear infinite;
}

.top-marquee-track:hover {
  animation-play-state: paused;
}

.top-marquee-content {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.top-marquee-content a {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  transition: var(--transition);
}

.top-marquee-content a:hover {
  color: var(--clr-harvest-gold);
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.marquee-sep {
  color: var(--clr-organic-light);
  opacity: 0.75;
  font-size: 0.85rem;
}

@keyframes topMarqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 2500;
  background-color: var(--clr-white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  width: 100%;
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 78px;
  gap: 12px;
}

/* Brand Logo */
.brand-logo-wrap {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-width: 0;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 52px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  display: block;
  transition: transform 0.25s ease;
}

.brand-logo-wrap:hover .brand-logo-img {
  transform: scale(1.02);
}

.brand-logo-img.sm {
  height: 42px;
  max-width: 180px;
}

.brand-logo-img.lg {
  height: 60px;
  max-width: 260px;
}

.brand-symbol-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #134470, #0c2b47);
  color: var(--clr-white);
  font-size: 1.3rem;
  box-shadow: 0 4px 10px rgba(12, 43, 71, 0.2);
  flex-shrink: 0;
}

.brand-symbol-badge.sm {
  width: 36px;
  height: 36px;
  font-size: 1.15rem;
}

.brand-text-block {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.brand-title {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 3.8vw, 1.42rem);
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--clr-brand-navy);
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-subtitle {
  font-size: clamp(0.55rem, 1.8vw, 0.66rem);
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--clr-organic-green);
  text-transform: uppercase;
  margin-top: 2px;
  white-space: nowrap;
}

/* Desktop Nav Menu & Nav List */
.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 22px;
  align-items: center;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-brand-navy);
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--clr-brand-blue);
  background-color: var(--clr-brand-light-blue);
}

.nav-link i {
  font-size: 1.1rem;
  color: var(--clr-brand-blue);
}

.drawer-header, .drawer-footer {
  display: none;
}

.nav-list .drawer-admin-link {
  display: none;
}

/* Header Action Icons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.header-icon-btn {
  position: relative;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--clr-brand-navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  transition: var(--transition);
  flex-shrink: 0;
}

.header-icon-btn:hover {
  background-color: var(--clr-brand-light-blue);
  color: var(--clr-brand-blue);
}

.cart-badge-count {
  position: absolute;
  top: 1px;
  right: 1px;
  background-color: var(--clr-organic-green);
  color: var(--clr-white);
  font-size: 0.7rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--clr-white);
}

.admin-header-link {
  font-size: 0.8rem;
  font-weight: 700;
  background-color: var(--clr-brand-light-blue);
  color: var(--clr-brand-navy);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
  flex-shrink: 0;
}

.admin-header-link:hover {
  background-color: var(--clr-brand-navy);
  color: var(--clr-white);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--clr-brand-navy);
  cursor: pointer;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.mobile-menu-btn:hover {
  background-color: var(--clr-brand-light-blue);
}

/* Modern Mobile Nav Drawer Backdrop */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(8, 29, 48, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2400;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ==========================================================================
   HERO SECTION (Pure Mountain Banner Image)
   High altitude Himalayan mountains backdrop
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 480px;
  max-height: 600px;
  width: 100%;
  background: #0c2b47 url('../images/hero-banner.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-banner-img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  max-height: 600px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 29, 48, 0.25) 0%, rgba(8, 29, 48, 0.1) 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 600px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 40px 42px;
  border-radius: var(--radius-xl);
  box-shadow: 0 16px 40px rgba(12, 43, 71, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.hero-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(61, 128, 34, 0.12);
  color: var(--clr-organic-green);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  border: 1px solid rgba(61, 128, 34, 0.25);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.08;
  color: var(--clr-brand-navy);
  margin-bottom: 10px;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--clr-organic-green);
  margin-bottom: 14px;
  font-weight: 600;
}

.hero-desc {
  font-size: 1.02rem;
  color: #334155;
  line-height: 1.6;
  margin-bottom: 26px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}

@keyframes floatPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ==========================================================================
   5 TRUST BADGES SECTION (Floating Card from Screenshot)
   ========================================================================== */
.trust-badges-section {
  position: relative;
  z-index: 10;
  margin-top: -45px;
  margin-bottom: 50px;
}

.trust-badges-card {
  background-color: var(--clr-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 28px 24px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  border: 1px solid rgba(12, 43, 71, 0.06);
}

.trust-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 10px;
  position: relative;
}

.trust-badge-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -9px;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: var(--clr-border);
}

.trust-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--clr-organic-bg);
  color: var(--clr-organic-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 12px;
  transition: var(--transition);
}

.trust-badge-item:hover .trust-icon-box {
  background-color: var(--clr-organic-green);
  color: var(--clr-white);
  transform: scale(1.1);
}

.trust-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--clr-brand-navy);
  margin-bottom: 4px;
}

.trust-desc {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   PRODUCTS SHOWCASE SECTION (Replaces Shop by Category with Live Products)
   ========================================================================== */
.section-header {
  text-align: center;
  margin-bottom: 36px;
}

.section-subtitle-pill {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-organic-green);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--clr-brand-navy);
  position: relative;
  display: inline-block;
}

.section-title::before, .section-title::after {
  content: '—';
  margin: 0 12px;
  color: var(--clr-organic-green);
  font-weight: 300;
}

.category-filter-pills-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.cat-pill-btn {
  background-color: var(--clr-white);
  border: 1px solid var(--clr-border);
  color: var(--clr-text-main);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.cat-pill-btn:hover {
  border-color: var(--clr-brand-blue);
  color: var(--clr-brand-blue);
}

.cat-pill-btn.active {
  background-color: var(--clr-brand-navy);
  color: var(--clr-white);
  border-color: var(--clr-brand-navy);
  box-shadow: 0 4px 12px rgba(12, 43, 71, 0.25);
}

/* Products Grid */
.products-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Product Card */
.product-card {
  background-color: var(--clr-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--clr-border-green);
}

.product-badge-wrap {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-image-container {
  position: relative;
  background-color: #f1f5f9;
  height: 250px;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.btn-quick-view {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  color: var(--clr-brand-navy);
  border: none;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-md);
}

.product-card:hover .btn-quick-view {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.product-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  margin-bottom: 6px;
}

.product-category-meta .cat-label {
  color: var(--clr-organic-green);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.product-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 800;
  color: #061726;
  margin-bottom: 8px;
  line-height: 1.25;
}

.product-title a {
  color: #061726;
  text-decoration: none;
  transition: var(--transition);
}

.product-title a:hover {
  color: var(--clr-brand-blue);
}

.product-short-desc {
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Variant Pill Selectors */
.product-variants-selector {
  margin-bottom: 14px;
}

.variant-select-label {
  font-size: 0.8rem;
  font-weight: 800;
  color: #1e293b;
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.variant-options-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.variant-pill {
  background-color: #f8fafc;
  border: 1.5px solid #cbd5e1;
  color: #0f172a;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.variant-pill:hover {
  border-color: var(--clr-organic-green);
  color: var(--clr-organic-green);
}

.variant-pill.active {
  background-color: var(--clr-organic-bg);
  border-color: var(--clr-organic-green);
  color: var(--clr-organic-green);
  font-weight: 800;
  box-shadow: 0 2px 6px rgba(46, 125, 50, 0.15);
}

/* Box Specs Box */
.product-box-dimension-box {
  background-color: #f8fbf6;
  border: 1px dashed var(--clr-border-green);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 0.86rem;
  margin-bottom: 16px;
}

.dim-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2px;
}

.dim-row:last-child {
  margin-bottom: 0;
}

.dim-label {
  color: #475569;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.dim-val {
  font-weight: 800;
  color: #061726;
  text-align: right;
}

/* Product Card Footer */
.product-footer-row {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--clr-border);
}

.price-block {
  display: flex;
  flex-direction: column;
}

.current-price {
  font-size: 1.45rem;
  font-weight: 800;
  color: #061726;
}

.original-price {
  font-size: 0.88rem;
  font-weight: 600;
  color: #94a3b8;
  text-decoration: line-through;
}
  color: var(--clr-text-light);
  text-decoration: line-through;
}

.btn-add-cart {
  padding: 9px 18px;
  font-size: 0.85rem;
}

.btn-notify {
  background-color: #ea580c;
  color: var(--clr-white);
  padding: 9px 18px;
  font-size: 0.85rem;
  border-radius: var(--radius-pill);
  border: none;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.25);
}

.btn-notify:hover {
  background-color: #c2410c;
}

/* ==========================================================================
   WHY CHOOSE PURE HIMALAYAN BLISS? (Matches Screenshot Mountain Section)
   ========================================================================== */
.why-choose-section {
  position: relative;
  background: linear-gradient(180deg, #092036 0%, #0c2b47 100%),
              url('../images/orchard-sharontha.jpg') center/cover no-repeat;
  background-blend-mode: overlay;
  color: var(--clr-white);
  padding: 80px 0;
  margin-top: 60px;
}

.why-header {
  text-align: center;
  margin-bottom: 48px;
}

.why-title {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--clr-white);
  position: relative;
  display: inline-block;
}

.why-title::before, .why-title::after {
  content: '—';
  margin: 0 12px;
  color: #86efac;
}

.pillars-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.pillar-card {
  text-align: center;
  padding: 24px 14px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition);
}

.pillar-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.35);
}

.pillar-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
  color: #86efac;
}

.pillar-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--clr-white);
}

.pillar-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.45;
}

/* ==========================================================================
   PGS INDIA BLUE CERTIFIED ORGANIC CARD (Matches Screenshot)
   ========================================================================== */
.pgs-certificate-banner-wrap {
  margin-top: 45px;
}

.pgs-certificate-card {
  background-color: var(--clr-white);
  border-radius: var(--radius-xl);
  padding: 32px 40px;
  color: var(--clr-text-main);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 240px 1fr 140px;
  gap: 32px;
  align-items: center;
}

.pgs-seal-left {
  text-align: center;
  border-right: 1px solid var(--clr-border);
  padding-right: 24px;
}

.pgs-seal-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #0d47a1;
  line-height: 1.1;
}

.pgs-seal-subtitle {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #2e7d32;
  margin-top: 4px;
  text-transform: uppercase;
}

.pgs-text-center h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--clr-brand-navy);
  margin-bottom: 6px;
}

.pgs-text-center p {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  margin-bottom: 14px;
  line-height: 1.5;
}

.pgs-mini-features {
  display: flex;
  gap: 20px;
}

.pgs-feature-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--clr-brand-navy);
}

.pgs-feature-item i {
  color: var(--clr-organic-green);
  font-size: 1.1rem;
}

/* ==========================================================================
   NEWSLETTER SUBSCRIPTION BAR (Matches Screenshot)
   ========================================================================== */
.newsletter-section {
  background-color: var(--clr-white);
  padding: 30px 0;
  border-bottom: 1px solid var(--clr-border);
}

.newsletter-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.newsletter-title-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.newsletter-icon {
  font-size: 2.2rem;
  color: var(--clr-organic-green);
}

.newsletter-heading {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--clr-brand-navy);
  margin-bottom: 2px;
}

.newsletter-sub {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}

.newsletter-form {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 480px;
}

.newsletter-input {
  flex-grow: 1;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--clr-border);
  font-size: 0.9rem;
  outline: none;
  background-color: var(--clr-bg-surface);
}

.newsletter-input:focus {
  border-color: var(--clr-organic-green);
  background-color: var(--clr-white);
}

.btn-subscribe {
  background-color: var(--clr-organic-green);
  color: var(--clr-white);
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-subscribe:hover {
  background-color: #31691a;
}

/* ==========================================================================
   PARTNER LOGOS HORIZONTAL SHOWCASE (Added from Our Partner Folder & D1)
   ========================================================================== */
.partner-showcase-section {
  padding: 50px 0 60px;
  background-color: var(--clr-bg-surface);
}

.partner-reel-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
}

.partner-card {
  background-color: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  max-width: 420px;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--clr-border-green);
}

.partner-img-wrap {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  background-color: #f1f5f9;
  border: 1px solid var(--clr-border);
}

.partner-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.partner-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-brand-navy);
  margin-bottom: 3px;
}

.partner-desc {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  line-height: 1.35;
}

/* ==========================================================================
   FOOTER (Matches Screenshot Layout with India Map, Links, and Contact Info)
   ========================================================================== */
.site-footer {
  background-color: var(--clr-brand-navy);
  color: rgba(255, 255, 255, 0.85);
  padding-top: 60px;
  font-size: 0.9rem;
}

.footer-grid-4 {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand .brand-title {
  color: var(--clr-white);
}

.footer-brand .brand-subtitle {
  color: #86efac;
}

.footer-desc {
  margin-top: 14px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-social-row {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.social-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-icon-btn:hover {
  background-color: var(--clr-organic-green);
  transform: scale(1.1);
}

.footer-col-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--clr-white);
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 6px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--clr-organic-green);
}

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

.footer-links-list a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-links-list a:hover {
  color: #86efac;
  padding-left: 5px;
}

.footer-contact-block p {
  font-size: 0.88rem;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-phone-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #86efac;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  margin: 10px 0;
}

.footer-delivery-card {
  background-color: rgba(255, 255, 255, 0.06);
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom-bar {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-tagline {
  color: #86efac;
  font-weight: 600;
}

/* ==========================================================================
   SLIDE-OVER SHOPPING CART DRAWER
   ========================================================================== */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(12, 43, 71, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background-color: var(--clr-white);
  z-index: 2001;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

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

.cart-drawer-header {
  padding: 20px 24px;
  background-color: var(--clr-brand-navy);
  color: var(--clr-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer-header h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin: 0;
}

.btn-close-drawer {
  background: none;
  border: none;
  color: var(--clr-white);
  font-size: 1.5rem;
  cursor: pointer;
}

.cart-drawer-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--clr-border);
}

.cart-item-img {
  width: 75px;
  height: 75px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--clr-border);
}

.cart-item-info {
  flex-grow: 1;
}

.cart-item-title {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  color: var(--clr-brand-navy);
  margin-bottom: 4px;
}

.cart-item-variant {
  display: flex;
  gap: 6px;
  font-size: 0.75rem;
  margin-bottom: 4px;
}

.badge-grade {
  background-color: var(--clr-brand-light-blue);
  color: var(--clr-brand-navy);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
}

.badge-weight {
  background-color: var(--clr-organic-bg);
  color: var(--clr-organic-green);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
}

.cart-item-dims {
  font-size: 0.72rem;
  color: var(--clr-text-muted);
  margin-bottom: 6px;
}

.cart-item-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.cart-item-price {
  font-weight: 800;
  color: var(--clr-brand-navy);
}

.cart-item-old-price {
  font-size: 0.78rem;
  color: var(--clr-text-light);
  text-decoration: line-through;
}

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

.qty-stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.btn-qty {
  background-color: var(--clr-bg-surface);
  border: none;
  width: 28px;
  height: 28px;
  font-weight: 700;
  cursor: pointer;
}

.btn-qty:hover {
  background-color: #e2e8f0;
}

.qty-value {
  padding: 0 10px;
  font-size: 0.85rem;
  font-weight: 700;
}

.btn-remove-item {
  background: none;
  border: none;
  color: #dc2626;
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.cart-drawer-footer {
  padding: 20px;
  background-color: var(--clr-bg-surface);
  border-top: 1px solid var(--clr-border);
}

.cart-summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.cart-total-line {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--clr-brand-navy);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--clr-border);
  margin-bottom: 16px;
}

/* ==========================================================================
   MODALS, LIGHTBOX & TOASTS
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(12, 43, 71, 0.7);
  backdrop-filter: blur(5px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.modal-dialog {
  background-color: var(--clr-white);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  padding: 30px;
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 20px;
  background: #f1f5f9;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.quick-view-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
}

.qv-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* Toast Alerts */
.phb-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  padding: 14px 22px;
  border-radius: var(--radius-lg);
  color: var(--clr-white);
  font-size: 0.92rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.phb-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.phb-toast-success {
  background: linear-gradient(135deg, #2e7d32, #1b5e20);
  border: 1px solid #4caf50;
}

.phb-toast-info {
  background: linear-gradient(135deg, #0c2b47, #134470);
  border: 1px solid #2196f3;
}

.phb-toast-error {
  background: linear-gradient(135deg, #c62828, #b71c1c);
  border: 1px solid #f44336;
}

/* Search Modal */
.search-modal-dialog {
  max-width: 600px;
  padding: 24px;
}

.search-input-wrap {
  position: relative;
  margin-bottom: 20px;
}

.search-input-wrap input {
  width: 100%;
  padding: 14px 20px 14px 44px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--clr-brand-blue);
  font-size: 1rem;
  outline: none;
}

.search-input-wrap i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--clr-brand-blue);
}

.search-result-item {
  display: flex;
  gap: 14px;
  padding: 12px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: var(--transition);
  border-bottom: 1px solid var(--clr-border);
}

.search-result-item:hover {
  background-color: var(--clr-brand-light-blue);
}

.search-result-item img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

/* ==========================================================================
   ABOUT US PAGE (Founder Ankit Chauhan & Chaand Bagh Orchards Est 1929)
   ========================================================================== */
.about-hero {
  background: linear-gradient(180deg, rgba(12, 43, 71, 0.85) 0%, rgba(12, 43, 71, 0.95) 100%),
              url('../images/orchard-sharontha.jpg') center/cover no-repeat;
  color: var(--clr-white);
  padding: 90px 0 70px;
  text-align: center;
}

.about-hero-title {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  margin-bottom: 14px;
}

.about-hero-sub {
  font-size: 1.25rem;
  color: #86efac;
  max-width: 700px;
  margin: 0 auto;
}

.founder-highlight-card {
  background-color: var(--clr-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 48px;
  margin-top: -50px;
  position: relative;
  z-index: 10;
  border: 1px solid var(--clr-border);
}

.founder-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: center;
}

.founder-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--clr-white);
}

.founder-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.founder-badge-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(12, 43, 71, 0.88);
  backdrop-filter: blur(6px);
  color: var(--clr-white);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  text-align: center;
}

.founder-name {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--clr-brand-navy);
  margin-bottom: 6px;
}

.founder-roles-pill {
  display: inline-block;
  background-color: var(--clr-organic-bg);
  color: var(--clr-organic-green);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  border: 1px solid var(--clr-border-green);
}

.orchard-legacy-banner {
  background: linear-gradient(135deg, #0c2b47, #134470);
  color: var(--clr-white);
  padding: 24px;
  border-radius: var(--radius-lg);
  margin-top: 24px;
}

.orchard-legacy-banner h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 1px;
  color: #ffcc66;
  margin-bottom: 8px;
}

.timeline-section {
  padding: 70px 0;
}

.timeline-tree {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.timeline-tree::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--clr-border-green);
}

.timeline-item {
  display: flex;
  margin-bottom: 40px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--clr-organic-green);
  border: 4px solid var(--clr-white);
  box-shadow: 0 0 0 3px var(--clr-border-green);
  z-index: 2;
}

.timeline-content {
  width: 44%;
  background-color: var(--clr-white);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--clr-organic-green);
  margin-bottom: 6px;
}

/* ==========================================================================
   PRODUCT DETAIL PAGE STYLES
   ========================================================================== */
.breadcrumb-bar {
  padding: 12px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--clr-border);
  overflow-x: hidden;
  max-width: 100%;
}

.breadcrumb-bar .container {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.breadcrumb-bar a {
  color: var(--clr-brand-navy);
  font-weight: 600;
}

.breadcrumb-bar .current {
  color: var(--clr-text-muted);
}

.product-detail-layout {
  width: 100%;
  max-width: 1240px;
  box-sizing: border-box;
  overflow-x: hidden;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.product-gallery-column,
.product-info-column {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.main-image-viewport {
  position: relative;
  background-color: #f8fafc;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 480px;
  border: 1px solid var(--clr-border);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

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

.detail-badge-overlay {
  position: absolute;
  top: 18px;
  left: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.thumbnail-strip {
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  box-sizing: border-box;
}

.thumb-btn {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  border: 2px solid var(--clr-border);
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  background: transparent;
  transition: var(--transition);
  flex-shrink: 0;
}

.thumb-btn.active {
  border-color: var(--clr-organic-green);
  box-shadow: 0 0 0 2px rgba(61, 128, 34, 0.2);
}

.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trust-pill-strip {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.trust-mini-pill {
  background-color: var(--clr-white);
  border: 1px solid var(--clr-border);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--clr-brand-navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  box-sizing: border-box;
}

.trust-mini-pill i {
  color: var(--clr-organic-green);
}

.product-main-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--clr-brand-navy);
  line-height: 1.2;
}

.product-lead-text {
  font-size: 1rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.price-display-wrap {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.detail-curr-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--clr-brand-navy);
}

.detail-orig-price {
  font-size: 1.2rem;
  color: var(--clr-text-light);
  text-decoration: line-through;
}

.detail-discount-tag {
  background-color: #fee2e2;
  color: #b91c1c;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 800;
}

.variants-picker-card {
  background-color: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
}

.variant-chips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
}

.variant-select-chip {
  background-color: var(--clr-bg-surface);
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 12px 10px;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: var(--transition);
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.variant-select-chip.active {
  background-color: #f1f8ee;
  border-color: var(--clr-organic-green);
  box-shadow: 0 4px 10px rgba(61, 128, 34, 0.15);
}

.chip-grade {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--clr-brand-navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chip-weight {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  line-height: 1.3;
  margin-top: 2px;
  word-break: break-word;
}

.chip-price {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--clr-organic-green);
  margin-top: 4px;
}

.box-dimensions-spec-card {
  background-color: #f8fafc;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  border-left: 4px solid var(--clr-organic-green);
  width: 100%;
  box-sizing: border-box;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  margin-bottom: 4px;
  flex-wrap: wrap;
  gap: 4px;
}

.quantity-and-buy-row {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  width: 100%;
  box-sizing: border-box;
}

.detail-qty-picker {
  flex-shrink: 0;
}

.stepper-box {
  display: flex;
  align-items: center;
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-pill);
  overflow: hidden;
  height: 50px;
  background-color: var(--clr-white);
  box-sizing: border-box;
}

.btn-step {
  width: 42px;
  height: 100%;
  background: transparent;
  border: none;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
}

.qty-field {
  width: 45px;
  border: none;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  outline: none;
}

.detail-buttons-group {
  display: flex;
  gap: 12px;
  flex-grow: 1;
  width: 100%;
  box-sizing: border-box;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
  flex-grow: 1;
}

.pgs-cert-seal-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  background-color: #eff6ff;
  border: 1px solid #bfdbfe;
  padding: 14px 18px;
  border-radius: var(--radius-lg);
}

.pgs-seal-thumb {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.tab-nav-bar {
  display: flex;
  gap: 8px;
  border-bottom: 2px solid var(--clr-border);
}

.tab-btn {
  background: transparent;
  border: none;
  padding: 14px 22px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.tab-btn.active {
  color: var(--clr-brand-navy);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--clr-organic-green);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table th, .specs-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--clr-border);
  text-align: left;
}

.specs-table th {
  width: 30%;
  color: var(--clr-text-muted);
  font-weight: 600;
}

/* ==========================================================================
   GALLERY PAGE & LIGHTBOX
   ========================================================================== */
.gallery-filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.gallery-filter-btn {
  background-color: var(--clr-white);
  border: 1px solid var(--clr-border);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-filter-btn.active {
  background-color: var(--clr-brand-navy);
  color: var(--clr-white);
  border-color: var(--clr-brand-navy);
}

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

.gallery-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gallery-img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
}

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

.gallery-card:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(12, 43, 71, 0.9) 100%);
  color: var(--clr-white);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: var(--transition);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-category-pill {
  align-self: flex-start;
  background-color: var(--clr-organic-green);
  color: var(--clr-white);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  margin-bottom: 6px;
}

.gallery-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.gallery-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

.gallery-lightbox-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.92);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.lightbox-dialog {
  max-width: 900px;
  width: 90%;
  position: relative;
  text-align: center;
}

.lightbox-img {
  max-height: 75vh;
  max-width: 100%;
  margin: 0 auto;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-caption-box {
  color: var(--clr-white);
  margin-top: 16px;
}

.lightbox-close, .lightbox-prev, .lightbox-next {
  background: rgba(255, 255, 255, 0.2);
  color: var(--clr-white);
  border: none;
  font-size: 1.8rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  transition: var(--transition);
}

.lightbox-close { top: -60px; right: 0; }
.lightbox-prev { left: -70px; top: 45%; }
.lightbox-next { right: -70px; top: 45%; }

.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE DESIGN SYSTEM (100% Mobile Fluid & Bug-Free)
   ========================================================================== */

/* --- Tablet / Medium Screens (<= 1100px) --- */
@media (max-width: 1100px) {
  .trust-badges-card {
    grid-template-columns: repeat(3, 1fr);
  }
  .trust-badge-item:nth-child(3)::after {
    display: none;
  }
  .pillars-grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
  .pgs-certificate-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .pgs-seal-left {
    border-right: none;
    border-bottom: 1px solid var(--clr-border);
    padding-bottom: 18px;
    padding-right: 0;
  }
  .pgs-mini-features {
    justify-content: center;
    flex-wrap: wrap;
  }
  .footer-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}

/* --- Mobile / Tablet Transition (<= 860px) --- */
@media (max-width: 860px) {
  .top-announcement-bar {
    height: 34px;
    line-height: 34px;
  }
  .top-marquee-content {
    font-size: 0.76rem;
    gap: 20px;
    padding-right: 20px;
  }

  .header-inner {
    height: 70px;
    gap: 8px;
  }

  .mobile-menu-btn {
    display: flex;
  }

  /* Slide-Over Drawer Navigation */
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 86vw);
    height: 100vh;
    height: 100dvh;
    background-color: #ffffff;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.32s ease;
    z-index: 2600;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 35px rgba(8, 29, 48, 0.35);
    overflow-y: auto;
    overscroll-behavior: contain;
    pointer-events: none;
  }

  .nav-menu.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    border-bottom: 1px solid var(--clr-border);
    background: var(--clr-bg-surface);
    flex-shrink: 0;
  }

  .drawer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .drawer-close-btn {
    background: rgba(12, 43, 71, 0.08);
    border: none;
    font-size: 1.4rem;
    color: var(--clr-brand-navy);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
  }

  .drawer-close-btn:hover {
    background-color: #fee2e2;
    color: #dc2626;
  }

  .nav-list {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 14px;
    gap: 4px;
    flex-grow: 1;
    margin: 0;
  }

  .nav-list .nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--clr-text-main);
    width: 100%;
    transition: var(--transition);
  }

  .nav-list .nav-link i {
    display: inline-flex;
    font-size: 1.25rem;
    color: var(--clr-brand-blue);
    width: 22px;
    justify-content: center;
  }

  .nav-list .nav-link:hover, .nav-list .nav-link.active {
    background-color: var(--clr-brand-light-blue);
    color: var(--clr-brand-navy);
    font-weight: 700;
  }

  .nav-list .nav-link::after {
    display: none;
  }

  .nav-list .drawer-admin-link {
    display: flex;
    color: var(--clr-organic-green);
    background-color: var(--clr-organic-bg);
    margin-top: 6px;
  }

  .drawer-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 18px;
    border-top: 1px solid var(--clr-border);
    background: #f8fafc;
    flex-shrink: 0;
  }

  .drawer-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #25d366;
    color: #ffffff;
    padding: 10px 16px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
  }

  .drawer-cert-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.72rem;
    color: var(--clr-text-muted);
    font-weight: 600;
    text-align: center;
  }

  /* Hero Section */
  .hero-section {
    min-height: 320px;
    padding: 0;
  }

  /* Products Grid */
  .products-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Product Details */
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Founder & Heritage */
  .founder-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
  }

  .founder-image-wrap {
    max-width: 320px;
    margin: 0 auto;
  }

  .founder-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  /* Newsletter */
  .newsletter-card {
    flex-direction: column;
    text-align: center;
    padding: 36px 24px;
    gap: 20px;
  }

  .newsletter-title-wrap {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .newsletter-form {
    max-width: 100%;
    width: 100%;
  }

  /* Gallery Grid */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  /* Timeline */
  .timeline-tree::before {
    left: 20px;
  }

  .timeline-dot {
    left: 20px;
  }

  .timeline-item {
    flex-direction: row !important;
    padding-left: 52px;
    text-align: left;
    margin-bottom: 32px;
  }

  .timeline-content {
    width: 100%;
  }

  /* Checkout Grid */
  .checkout-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Contact Grid */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* --- Mobile Phones (<= 640px) --- */
@media (max-width: 640px) {
  .trust-badges-section {
    margin-top: -30px;
    margin-bottom: 36px;
  }

  .trust-badges-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 22px 18px;
  }

  .trust-badge-item::after {
    display: none !important;
  }

  .trust-badge-item {
    padding: 0;
  }

  .pillars-grid-5 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .products-grid-3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gallery-filter-bar {
    gap: 8px;
    margin-bottom: 24px;
  }

  .gallery-filter-btn {
    padding: 8px 14px;
    font-size: 0.82rem;
  }

  .footer-grid-4 {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom-bar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .section-title::before, .section-title::after {
    margin: 0 6px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons a {
    width: 100%;
    justify-content: center;
  }

  .quick-view-content {
    grid-template-columns: 1fr;
    gap: 20px;
    max-height: 80vh;
    overflow-y: auto;
  }

  .quantity-and-buy-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .detail-buttons-group {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .detail-buttons-group .btn-primary,
  .detail-buttons-group .btn-golden {
    width: 100%;
    justify-content: center;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }

  .newsletter-form input {
    width: 100%;
    border-radius: var(--radius-pill);
  }

  .newsletter-form .btn-primary {
    width: 100%;
    border-radius: var(--radius-pill);
  }

  .lightbox-prev {
    left: 4px;
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }

  .lightbox-next {
    right: 4px;
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }

  .lightbox-close {
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }

  .cart-sidebar {
    width: 100vw;
    max-width: 100vw;
  }

  .specs-table th {
    width: 40%;
    font-size: 0.85rem;
  }

  .specs-table td {
    font-size: 0.85rem;
  }

  .tab-nav-bar {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px;
  }

  .tab-btn {
    padding: 10px 14px;
    font-size: 0.88rem;
    white-space: nowrap;
  }
}

/* --- Ultra Small Phones (<= 480px) --- */
@media (max-width: 480px) {
  .header-inner {
    height: 66px;
    gap: 6px;
  }

  .brand-symbol-badge {
    width: 36px;
    height: 36px;
    font-size: 1.15rem;
  }

  .brand-title {
    font-size: 1.05rem;
  }

  .brand-subtitle {
    font-size: 0.56rem;
    letter-spacing: 0.8px;
  }

  .header-actions {
    gap: 4px;
  }

  .header-icon-btn {
    width: 34px;
    height: 34px;
    font-size: 1.15rem;
  }

  .admin-header-link {
    padding: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    justify-content: center;
  }

  .admin-header-link span {
    display: none;
  }

  .mobile-menu-btn {
    width: 34px;
    height: 34px;
    font-size: 1.35rem;
  }

  .product-footer-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    text-align: center;
  }

  .product-footer-row .price-block {
    align-items: center;
  }

  .product-footer-row .btn-add-cart,
  .product-footer-row .btn-notify {
    width: 100%;
    justify-content: center;
  }

  .variant-options-pills {
    justify-content: flex-start;
  }

  .variant-pill {
    padding: 4px 8px;
    font-size: 0.74rem;
  }

  .pgs-certificate-card {
    padding: 18px 14px;
  }

  .pgs-seal-title {
    font-size: 1.25rem;
  }

  .search-modal-dialog {
    width: 95vw;
    padding: 16px;
  }
}


/* ==========================================================================
   COMPREHENSIVE RESPONSIVE FIXES - ALL PAGES
   Prevents horizontal scroll, fixes chopped layouts on mobile
   ========================================================================== */

/* Global overflow prevention */
section, main, footer, header {
  max-width: 100%;
}

.breadcrumb-bar {
  background-color: var(--clr-white);
  border-bottom: 1px solid var(--clr-border);
  padding: 10px 0;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}

.breadcrumb-bar .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.breadcrumb-bar a {
  color: var(--clr-text-muted);
  text-decoration: none;
}

.breadcrumb-bar a:hover {
  color: var(--clr-organic-green);
}

.breadcrumb-bar .current {
  color: var(--clr-brand-navy);
  font-weight: 600;
  word-break: break-word;
}

/* --- Tablet (≤ 991px) - Product Detail --- */
@media (max-width: 991px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .main-image-viewport {
    height: 360px;
    border-radius: var(--radius-lg);
  }

  .thumbnail-strip {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    gap: 8px;
  }

  .thumb-btn {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
  }

  .product-main-title {
    font-size: 1.65rem;
  }

  .detail-curr-price {
    font-size: 1.8rem;
  }

  .variant-chips-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 8px;
  }

  .pgs-cert-seal-bar {
    gap: 12px;
    padding: 12px 14px;
  }

  .pgs-cert-seal-bar h5 {
    font-size: 0.9rem;
  }
}

/* --- Mobile (≤ 768px and ≤ 640px) - Product Detail Comprehensive Zero-Overflow --- */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
  }

  .product-detail-layout {
    padding-top: 14px !important;
    padding-bottom: 85px !important;
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .product-detail-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .product-gallery-column,
  .product-info-column {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  .main-image-viewport {
    height: 270px !important;
    border-radius: var(--radius-md) !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .thumbnail-strip {
    gap: 6px !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .thumbnail-strip::-webkit-scrollbar { display: none; }

  .thumb-btn {
    width: 52px !important;
    height: 52px !important;
    flex-shrink: 0 !important;
    border-radius: 8px !important;
  }

  .trust-pill-strip {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 12px !important;
    box-sizing: border-box !important;
  }

  .trust-mini-pill {
    font-size: 0.72rem !important;
    padding: 5px 9px !important;
    gap: 4px !important;
    max-width: 100% !important;
    word-break: break-word !important;
    box-sizing: border-box !important;
  }

  .product-main-title {
    font-size: 1.3rem !important;
    line-height: 1.25 !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
  }

  .meta-subhead {
    flex-wrap: wrap !important;
    gap: 6px !important;
    max-width: 100% !important;
  }

  .category-chip, .origin-chip {
    font-size: 0.74rem !important;
    padding: 3px 8px !important;
    max-width: 100% !important;
    word-break: break-word !important;
  }

  .price-display-wrap {
    flex-wrap: wrap !important;
    gap: 8px !important;
    align-items: baseline !important;
    max-width: 100% !important;
  }

  .detail-curr-price { font-size: 1.6rem !important; }
  .detail-orig-price { font-size: 1rem !important; }
  .detail-discount-tag { font-size: 0.75rem !important; }
  .product-lead-text { font-size: 0.88rem !important; line-height: 1.5 !important; max-width: 100% !important; word-break: break-word !important; }
  .tax-note { font-size: 0.75rem !important; max-width: 100% !important; }

  /* Variant Picker Card */
  .variants-picker-card {
    padding: 12px 10px !important;
    border-radius: var(--radius-md) !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    margin-top: 14px !important;
    margin-bottom: 14px !important;
  }

  .picker-header {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 4px !important;
    width: 100% !important;
    margin-bottom: 8px !important;
  }

  .picker-header label { font-size: 0.82rem !important; }
  .sku-text { font-size: 0.7rem !important; }

  .variant-chips-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 5px !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .variant-select-chip {
    padding: 8px 4px !important;
    border-radius: 8px !important;
    min-width: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    text-align: center !important;
    align-items: center !important;
    overflow: hidden !important;
  }

  .chip-grade { 
    font-size: 0.78rem !important; 
    font-weight: 800 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    width: 100% !important;
    text-align: center !important;
    display: block !important;
  }
  .chip-weight { 
    font-size: 0.64rem !important; 
    line-height: 1.2 !important; 
    word-break: break-word !important;
    text-align: center !important;
    display: block !important;
    margin-top: 2px !important;
  }
  .chip-price { 
    font-size: 0.82rem !important; 
    margin-top: 2px !important;
    font-weight: 800 !important;
    text-align: center !important;
    display: block !important;
  }

  /* Spec Card */
  .box-dimensions-spec-card {
    padding: 10px 12px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    margin-top: 10px !important;
  }
  .spec-row {
    flex-direction: column !important;
    gap: 2px !important;
    margin-bottom: 6px !important;
    font-size: 0.8rem !important;
    max-width: 100% !important;
    word-break: break-word !important;
  }
  .spec-label { font-size: 0.75rem !important; color: var(--clr-text-muted) !important; }

  /* Purchase Actions */
  .purchase-action-container {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-top: 14px !important;
    margin-bottom: 16px !important;
  }

  .quantity-and-buy-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .detail-qty-picker {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    max-width: 100% !important;
    background: #f8fafc !important;
    padding: 6px 12px !important;
    border-radius: var(--radius-md) !important;
    border: 1px solid var(--clr-border) !important;
    box-sizing: border-box !important;
  }

  .detail-qty-picker label {
    margin-bottom: 0 !important;
    font-size: 0.88rem !important;
    color: var(--clr-brand-navy) !important;
  }

  .stepper-box {
    height: 38px !important;
    width: 120px !important;
    border-radius: var(--radius-pill) !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }

  .btn-step { width: 36px !important; font-size: 1.1rem !important; }
  .qty-field { width: 40px !important; font-size: 0.95rem !important; }

  .detail-buttons-group {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .detail-buttons-group .btn-primary,
  .detail-buttons-group .btn-golden,
  .detail-buttons-group button,
  .btn-lg {
    width: 100% !important;
    max-width: 100% !important;
    justify-content: center !important;
    align-items: center !important;
    display: flex !important;
    padding: 12px 16px !important;
    font-size: 0.92rem !important;
    font-weight: 700 !important;
    box-sizing: border-box !important;
    border-radius: var(--radius-pill) !important;
    box-shadow: 0 4px 12px rgba(12, 43, 71, 0.12) !important;
  }

  /* PGS Seal */
  .pgs-cert-seal-bar {
    gap: 10px !important;
    padding: 10px 12px !important;
    border-radius: var(--radius-md) !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .pgs-seal-thumb { width: 36px !important; height: 36px !important; flex-shrink: 0 !important; }
  .pgs-cert-seal-bar h5 { font-size: 0.8rem !important; line-height: 1.25 !important; word-break: break-word !important; }
  .pgs-cert-seal-bar p { font-size: 0.7rem !important; line-height: 1.25 !important; word-break: break-word !important; }

  /* Tabs */
  .product-extended-tabs-section {
    margin-top: 20px !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }
  .tab-nav-bar {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    flex-wrap: nowrap !important;
    gap: 2px !important;
    scrollbar-width: none !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .tab-nav-bar::-webkit-scrollbar { display: none; }
  .tab-btn { padding: 9px 12px !important; font-size: 0.78rem !important; white-space: nowrap !important; flex-shrink: 0 !important; }

  .tab-content-container {
    padding: 14px 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }
  .tab-content-container h3 { font-size: 1.05rem !important; word-break: break-word !important; }
  .tab-content-container p, .tab-content-container li { font-size: 0.85rem !important; word-break: break-word !important; }
  .specs-table {
    width: 100% !important;
    max-width: 100% !important;
    table-layout: fixed !important;
  }
  .specs-table th, .specs-table td { padding: 8px 6px !important; font-size: 0.78rem !important; word-break: break-word !important; }
  .specs-table th { width: 38% !important; }
  .specs-table td { width: 62% !important; }
}

/* ==========================================================================
   STUNNING CONTACT PAGE DESIGN (Himalayan Glassmorphic Theme)
   ========================================================================== */
.contact-hero-banner {
  position: relative;
  background: linear-gradient(135deg, rgba(6, 23, 38, 0.92) 0%, rgba(12, 43, 71, 0.85) 100%), url('../images/hero-banner.jpeg') center/cover no-repeat;
  padding: 65px 0 75px;
  color: var(--clr-white);
  text-align: center;
  overflow: hidden;
}

.contact-hero-banner::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 24px;
  background: var(--clr-bg-body);
  clip-path: ellipse(50% 100% at 50% 100%);
}

.contact-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #86efac;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.contact-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 14px;
  line-height: 1.12;
}

.contact-hero-desc {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 680px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.contact-status-bar {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
}

.status-dot-pulse {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Contact Cards & Form Layout */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: -35px;
  position: relative;
  z-index: 10;
  margin-bottom: 45px;
}

.contact-touch-card {
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-md);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.contact-touch-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-organic-green), var(--clr-brand-blue));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-touch-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--clr-border-green);
}

.contact-touch-card:hover::before {
  opacity: 1;
}

.touch-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.contact-touch-card:hover .touch-icon-box {
  transform: scale(1.1) rotate(-4deg);
}

.touch-icon-box.emerald {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.touch-icon-box.blue {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

.touch-icon-box.amber {
  background: #fffbe6;
  color: #b45309;
  border: 1px solid #fef08a;
}

.touch-card-title {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--clr-brand-navy);
  margin-bottom: 4px;
}

.touch-card-subtitle {
  font-size: 0.84rem;
  color: var(--clr-text-muted);
  margin-bottom: 14px;
  font-weight: 500;
}

.touch-card-detail {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.btn-touch-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: var(--transition);
}

.btn-touch-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.28);
}

.btn-touch-whatsapp:hover {
  background: #1eb857;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-touch-map {
  background: var(--clr-brand-light-blue);
  color: var(--clr-brand-navy);
}

.btn-touch-map:hover {
  background: var(--clr-brand-navy);
  color: var(--clr-white);
}

.btn-touch-email {
  background: #fef3c7;
  color: #92400e;
}

.btn-touch-email:hover {
  background: #92400e;
  color: #ffffff;
}

/* Contact Main Section (Form & Farmer Collective) */
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 50px;
}

.farmer-collective-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-md);
  position: relative;
}

.farmer-header-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--clr-border);
}

.farmer-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--clr-organic-green);
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.2);
}

.farmer-title-wrap h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--clr-brand-navy);
  margin: 0 0 2px;
}

.farmer-title-wrap p {
  font-size: 0.84rem;
  color: var(--clr-organic-green);
  font-weight: 700;
  margin: 0;
}

.farmer-bio-text {
  font-size: 0.93rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 22px;
}

.farmer-highlight-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.farmer-highlight-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--clr-text-main);
  font-weight: 600;
}

.farmer-highlight-list li i {
  color: var(--clr-organic-green);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.farmer-pgs-cert-box {
  background: var(--clr-organic-bg);
  border: 1px solid var(--clr-border-green);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.farmer-pgs-cert-box i {
  font-size: 2.2rem;
  color: var(--clr-organic-green);
  flex-shrink: 0;
}

.farmer-pgs-cert-box h5 {
  margin: 0 0 2px;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--clr-brand-navy);
}

.farmer-pgs-cert-box p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--clr-text-muted);
}

/* Premium Form Card */
.contact-form-card {
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  padding: 38px 36px;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-lg);
}

.form-header-block {
  margin-bottom: 24px;
}

.form-header-block h3 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--clr-brand-navy);
  margin-bottom: 6px;
}

.form-header-block p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}

/* Subject Radio Pills */
.subject-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.subject-pill-item input[type="radio"] {
  display: none;
}

.subject-pill-item label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background-color: var(--clr-bg-surface);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-text-main);
  cursor: pointer;
  transition: var(--transition);
}

.subject-pill-item input[type="radio"]:checked + label {
  background-color: var(--clr-organic-bg);
  border-color: var(--clr-organic-green);
  color: var(--clr-organic-green);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(46, 125, 50, 0.15);
}

.subject-pill-item label:hover {
  border-color: var(--clr-organic-green);
}

.contact-form-card .form-control {
  background-color: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

.contact-form-card .form-control:focus {
  background-color: var(--clr-white);
  border-color: var(--clr-organic-green);
  box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.12);
  outline: none;
}

.btn-contact-submit {
  background: linear-gradient(135deg, #166534 0%, #0c2b47 100%);
  color: var(--clr-white);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(12, 43, 71, 0.25);
  width: 100%;
}

.btn-contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(12, 43, 71, 0.35);
  background: linear-gradient(135deg, #15803d 0%, #134470 100%);
}

/* Location Map Container */
.contact-map-section {
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-md);
  margin-bottom: 50px;
  position: relative;
}

.map-header-bar {
  padding: 20px 28px;
  background: #f8fafc;
  border-bottom: 1px solid var(--clr-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.map-header-bar h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--clr-brand-navy);
  margin: 0;
}

.map-viewport {
  width: 100%;
  height: 380px;
  border: none;
}

/* Accordion FAQ */
.contact-faq-card {
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
}

.faq-accordion-item {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-accordion-item:hover {
  border-color: var(--clr-border-green);
}

.faq-accordion-header {
  width: 100%;
  padding: 16px 20px;
  background: #ffffff;
  border: none;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-brand-navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-accordion-header i.icon-arrow {
  transition: transform 0.3s ease;
  color: var(--clr-organic-green);
  font-size: 1.2rem;
}

.faq-accordion-item.active .faq-accordion-header i.icon-arrow {
  transform: rotate(180deg);
}

.faq-accordion-body {
  padding: 0 20px 18px;
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.6;
  display: none;
}

.faq-accordion-item.active .faq-accordion-body {
  display: block;
}

/* Responsive Rules for Contact Page */
@media (max-width: 991px) {
  .contact-cards-grid {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }
  .contact-main-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-card {
    padding: 26px 20px;
  }
  .trust-pill-strip { flex-wrap: wrap; gap: 6px; }
  .trust-mini-pill { font-size: 0.72rem; padding: 5px 10px; }
}

/* --- Ultra Small (≤ 400px) --- */
@media (max-width: 400px) {
  .product-main-title { font-size: 1.2rem; }
  .detail-curr-price { font-size: 1.4rem; }
  .variant-chips-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .tab-btn { padding: 8px 10px; font-size: 0.75rem; }
  .section-title { font-size: 1.4rem; }
  .brand-logo-img { height: 40px; }
  .brand-logo-img.sm { height: 34px; }
  .btn-lg { padding: 11px 16px; font-size: 0.85rem; }
}

/* ==========================================================================
   DIRECT RAZORPAY CHECKOUT MODAL CARD (NO COD)
   ========================================================================== */
.checkout-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 23, 38, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.checkout-modal-card {
  background: #ffffff;
  border-radius: 20px;
  width: 100%;
  max-width: 860px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transform: scale(0.94) translateY(10px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.checkout-modal-overlay.active .checkout-modal-card {
  transform: scale(1) translateY(0);
}

.checkout-modal-header {
  padding: 18px 24px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8fafc;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.btn-close-modal {
  background: #e2e8f0;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #475569;
  transition: all 0.2s ease;
}

.btn-close-modal:hover {
  background: #cbd5e1;
  color: #0f172a;
  transform: rotate(90deg);
}

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

.checkout-modal-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 24px;
  align-items: start;
}

.checkout-modal-form-col {
  display: flex;
  flex-direction: column;
}

.checkout-modal-form-col .form-control {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  font-size: 0.88rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.checkout-modal-form-col .form-control:focus {
  outline: none;
  border-color: var(--clr-organic-green);
  box-shadow: 0 0 0 3px rgba(61, 128, 34, 0.15);
}

.checkout-modal-summary-col {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px;
  height: fit-content;
}

.modal-items-scroll {
  max-height: 220px;
  overflow-y: auto;
  padding-right: 4px;
}

.modal-items-scroll::-webkit-scrollbar {
  width: 4px;
}
.modal-items-scroll::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.modal-payment-notice {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  padding: 14px 16px;
}

@media (max-width: 768px) {
  .checkout-modal-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .checkout-modal-card {
    max-height: 94vh;
    border-radius: 16px;
  }
  .checkout-modal-header {
    padding: 14px 18px;
  }
  .checkout-modal-body {
    padding: 18px 14px;
  }
}

/* Coming Soon Disabled Button (Non-clickable) */
.btn-coming-soon-disabled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #f1f5f9;
  color: #64748b;
  font-weight: 700;
  font-size: 0.84rem;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  cursor: not-allowed !important;
  user-select: none;
  pointer-events: none;
  opacity: 0.9;
}

/* ==========================================================================
   STICKY WHATSAPP FAB (BOTTOM RIGHT)
   ========================================================================== */
.whatsapp-fab {
  position: fixed !important;
  bottom: 26px !important;
  right: 26px !important;
  z-index: 999999 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background-color: #25D366 !important;
  color: #ffffff !important;
  padding: 12px 22px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  text-decoration: none !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45) !important;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, background-color 0.2s ease !important;
  animation: waFabPulse 3s infinite !important;
}

.whatsapp-fab i {
  font-size: 1.45rem !important;
  line-height: 1 !important;
  color: #ffffff !important;
}

.whatsapp-fab span {
  color: #ffffff !important;
  font-family: var(--font-sans) !important;
}

.whatsapp-fab:hover {
  background-color: #20ba59 !important;
  color: #ffffff !important;
  transform: translateY(-3px) scale(1.05) !important;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6) !important;
}

@keyframes waFabPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 576px) {
  .whatsapp-fab {
    bottom: 18px !important;
    right: 16px !important;
    padding: 10px 18px !important;
    font-size: 0.86rem !important;
  }
  .whatsapp-fab i {
    font-size: 1.3rem !important;
  }
}

/* ==========================================================================
   RAZORPAY SECURE SANDBOX & CHECKOUT MODAL STYLES
   ========================================================================== */
.rzp-sandbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 43, 71, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.rzp-sandbox-dialog {
  background: #ffffff;
  border-radius: 18px;
  width: 100%;
  max-width: 480px;
  overflow: hidden;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transform: scale(0.92) translateY(12px);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.rzp-sandbox-overlay.active .rzp-sandbox-dialog {
  transform: scale(1) translateY(0);
}

.rzp-sandbox-header {
  background: #0c2b47;
  color: #ffffff;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rzp-badge-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #38bdf8;
}

.rzp-header-title {
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0.3px;
  color: #ffffff;
}

.rzp-header-sub {
  font-size: 0.76rem;
  color: #94a3b8;
}

.rzp-close-btn {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #ffffff;
  font-size: 1.3rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.rzp-close-btn:hover {
  background: rgba(239, 68, 68, 0.8);
  transform: rotate(90deg);
}

.rzp-sandbox-body {
  padding: 24px;
}

.rzp-amount-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  margin-bottom: 16px;
}

.rzp-amount-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #64748b;
  font-weight: 600;
}

.rzp-amount-val {
  font-size: 1.85rem;
  font-weight: 800;
  color: #0c2b47;
  font-family: var(--font-sans);
  margin: 4px 0;
}

.rzp-tag {
  font-size: 0.75rem;
  color: #166534;
  font-weight: 600;
}

.rzp-payment-methods {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rzp-method-opt {
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 12px 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #ffffff;
}

.rzp-method-opt:hover, .rzp-method-opt.selected {
  border-color: #0284c7;
  background: #f0f9ff;
}

.rzp-method-opt label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  margin: 0;
}

.rzp-method-opt input[type="radio"] {
  accent-color: #0284c7;
}


