/* ════════════════════════════════════════════════════════════
   BISHUDDHO PROKKRITI — Universal Stylesheet 
   ════════════════════════════════════════════════════════════ */

/* ── Font-Face: Kalpurush (Bengali) ── */
@font-face {
  font-family: 'Kalpurush';
  src: url('/assets/fonts/kalpurush.woff2') format('woff2'),
    url('/assets/fonts/kalpurush.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/* ── Token System ── */
:root {
  --green-deep: #1a4a2e;
  --green-mid: #2d6a4f;
  --green-sage: #4a7c59;
  --green-light: #a8d5b5;
  --gold: #c9a84c;
  --gold-light: #f0e6c8;
  --gold-pale: #faf5e8;
  --cream: #faf8f2;
  --bg-cream: #faf8f2;
  --white: #ffffff;
  --text-dark: #1c2b1e;
  --text-mid: #3d5a42;
  --text-light: #6b8f71;
  --shadow-sm: 0 2px 12px rgba(26, 74, 46, .08);
  --shadow-md: 0 6px 30px rgba(26, 74, 46, .13);
  --shadow-lg: 0 16px 60px rgba(26, 74, 46, .18);
  --shadow-3d: 0 30px 80px rgba(26, 74, 46, .28), 0 0 0 1px rgba(201, 168, 76, .15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-xl: 32px;
  --transition: all .3s cubic-bezier(.4, 0, .2, 1);
  --primary-font-stack: 'Noto Sans', 'Kalpurush', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--primary-font-stack);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ── */
.display {
  font-family: var(--primary-font-stack);
}

h1 {
  font-family: var(--primary-font-stack);
  line-height: 1.2;
}

h2,
h3,
h4,
h5,
h6 {
  font-family: var(--primary-font-stack);
  line-height: 1.2;
}

.en {
  font-family: var(--primary-font-stack);
}

.gold {
  color: var(--gold);
}

.green {
  color: var(--green-deep);
}

/* ════════════════════════════
   TAILWIND-EQUIVALENT UTILITIES
   ════════════════════════════ */
/* Layout */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, 1fr);
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.h-full {
  height: 100%;
}

.w-full {
  width: 100%;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.overflow-hidden {
  overflow: hidden;
}

.object-cover {
  object-fit: cover;
}

.justify-between {
  justify-content: space-between;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

/* Spacing */
.mt-auto {
  margin-top: auto;
}

.mb-1 {
  margin-bottom: .25rem;
}

.mb-2 {
  margin-bottom: .5rem;
}

.mb-3 {
  margin-bottom: .75rem;
}

.p-4 {
  padding: 1rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.py-2 {
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.px-2 {
  padding-left: .5rem;
  padding-right: .5rem;
}

.gap-1 {
  gap: .25rem;
}

.gap-2 {
  gap: .5rem;
}

.gap-4 {
  gap: 1rem;
}

/* Visual */
.bg-white {
  background: #fff;
}

.border {
  border-width: 1px;
  border-style: solid;
  border-color: #e5e7eb;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-xl {
  border-radius: .75rem;
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);
}

.text-xs {
  font-size: .75rem;
  line-height: 1rem;
}

.font-medium {
  font-weight: 500;
}

.tracking-wide {
  letter-spacing: .025em;
}

.transition-all {
  transition: all .15s cubic-bezier(.4, 0, .2, 1);
}

/* Responsive */
@media (min-width: 640px) {
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .md\:gap-6 {
    gap: 1.5rem;
  }

  .md\:p-5 {
    padding: 1.25rem;
  }

  .md\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .md\:pb-5 {
    padding-bottom: 1.25rem;
  }

  .md\:text-sm {
    font-size: .875rem;
    line-height: 1.25rem;
  }
}

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

/* ════════════════════════════
   ADDITIONAL UTILITY CLASSES
   ════════════════════════════ */
/* Layout */
.aspect-square {
  aspect-ratio: 1 / 1;
}

.object-contain {
  object-fit: contain;
}

.group {
  /* container enabling group-hover children */
}

/* Typography */
.text-sm {
  font-size: .875rem;
  line-height: 1.25rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-center {
  text-align: center;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.uppercase {
  text-transform: uppercase;
}

.tracking-wider {
  letter-spacing: .05em;
}

.leading-tight {
  line-height: 1.25;
}

.italic {
  font-style: italic;
}

/* Text colors */
.text-green-900 {
  color: #14532d;
}

.text-green-800 {
  color: #166534;
}

.text-amber-600 {
  color: #d97706;
}

.text-gray-400 {
  color: #9ca3af;
}

.text-gray-500 {
  color: #6b7280;
}

/* Background */
.bg-amber-50 {
  background: #fffbeb;
}

/* Border */
.border-gray-100 {
  border-color: #f3f4f6;
}

.border-amber-100 {
  border-color: #fef3c7;
}

.border-t {
  border-top-width: 1px;
  border-top-style: solid;
  border-color: inherit;
}

/* Spacing */
.mt-0\.5 {
  margin-top: .125rem;
}

.mt-1 {
  margin-top: .25rem;
}

.mt-2 {
  margin-top: .5rem;
}

.mt-3 {
  margin-top: .75rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-16 {
  margin-top: 4rem;
}

.\-mt-6 {
  margin-top: -1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.pt-3 {
  padding-top: .75rem;
}

/* Transitions */
.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
}

.duration-300 {
  transition-duration: .3s;
}

.duration-500 {
  transition-duration: .5s;
}

/* Cursor */
.cursor-pointer {
  cursor: pointer;
}

/* Hover states */
.hover\:shadow-lg:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
}

.hover\:-translate-y-1:hover {
  transform: translateY(-.25rem);
}

/* Group hover */
.group:hover .group-hover\:scale-110 {
  transform: scale(1.1);
}

/* Custom: related-buy-now button */
.related-buy-now {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 6px;
  background: var(--green-deep);
  color: #fff;
  border-radius: 8px;
  font-size: .8rem;
  cursor: pointer;
  border: none;
}

/* Responsive md: */
@media (min-width: 768px) {
  .md\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container.product-page {
  max-width: 1400px;
  width: 100%;
}

/* ════════════════════════════
   ANNOUNCEMENT BAR
════════════════════════════ */
.ann-bar {
  display: flex;
  align-items: center;
  background: var(--green-deep);
  color: var(--gold-light);
  padding: 9px 0;
  font-size: .82rem;
  font-family: var(--primary-font-stack);
  letter-spacing: .04em;
  overflow: hidden;
  white-space: nowrap;
}

.ann-bar-notice {
  flex-shrink: 0;
  background: var(--gold);
  color: var(--green-deep);
  padding: 4px 14px;
  margin: 0 12px 0 16px;
  border-radius: 4px;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .06em;
  white-space: nowrap;
  text-transform: uppercase;
  z-index: 1;
}

.ann-bar-track {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
  width: max-content;
  will-change: transform;
}

.ann-bar-track-content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
  gap: 24px;
  padding: 0 18px;
}

.ann-bar-track-content span {
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ════════════════════════════
   NAVBAR
════════════════════════════ */
.navbar {
  background: #ffffff;
  border-bottom: 1px solid var(--gold-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(26, 74, 46, 0.10);
  backdrop-filter: none;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 16px;
}

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

.nav-logo-icon {
  height: 46px;
  width: auto;
  flex-shrink: 0;
}

.nav-logo-hz {
  height: 36px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

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

.nav-links a {
  text-decoration: none;
  color: #1c2b1e;
  font-size: .9rem;
  font-family: var(--primary-font-stack);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-links a:hover {
  color: var(--green-deep);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--green-deep);
  font-weight: 600;
}

.nav-links .bn-link {
  font-family: var(--primary-font-stack);
  font-size: .92rem;
  color: #1c2b1e;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-search {
  background: var(--gold-pale);
  border: 1.5px solid var(--gold-light);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: .85rem;
  font-family: var(--primary-font-stack);
  color: var(--text-dark);
  outline: none;
  width: 180px;
  transition: var(--transition);
}

.nav-search:focus {
  border-color: var(--gold);
  width: 220px;
}

.nav-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--green-deep);
  font-size: 1.2rem;
  padding: 8px;
  border-radius: 50%;
  transition: var(--transition);
  position: relative;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.nav-icon-btn:hover {
  background: var(--gold-pale);
  color: var(--gold);
}

.btn-shop-nav {
  background: var(--green-deep);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 9px 20px;
  font-size: .85rem;
  font-family: var(--primary-font-stack);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-shop-nav:hover {
  background: var(--gold);
  color: var(--green-deep);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-deep);
  border-radius: 2px;
  transition: var(--transition);
}

/* ════════════════════════════
   MOBILE MENU
════════════════════════════ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  max-width: 85vw;
  background: #0d2818;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.2);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
  font-family: var(--primary-font-stack);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease, transform 0.25s ease;
}

.mobile-menu a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.mobile-menu .mobile-cta {
  background: var(--gold);
  color: #0d2818;
  padding: 14px 36px;
  border-radius: 999px;
  font-weight: 700;
  margin-top: 12px;
  font-size: 1.05rem;
}

.mobile-menu .mobile-cta:hover {
  background: #e8bf5a;
  transform: translateX(0) scale(1.05);
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.6rem;
  cursor: pointer;
  transition: color 0.25s ease;
  padding: 8px;
  line-height: 1;
}

.mobile-close:hover {
  color: #fff;
}

/* ════════════════════════════
   HERO BANNER (index)
   ════════════════════════════ */
.hero {
  min-height: 88vh;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 50%, #1f5c3a 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-leaf {
  position: absolute;
  opacity: .07;
  pointer-events: none;
  z-index: 2;
}

.hero-leaf-1 {
  width: 480px;
  height: 480px;
  top: -80px;
  right: -80px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-leaf-2 {
  width: 300px;
  height: 300px;
  bottom: -60px;
  left: -60px;
  background: radial-gradient(circle, var(--gold-light) 0%, transparent 70%);
  border-radius: 50%;
}

.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.particle {
  position: absolute;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }

  10% {
    opacity: .4;
  }

  90% {
    opacity: .2;
  }

  100% {
    transform: translateY(-20vh) scale(1);
    opacity: 0;
  }
}

/* ── Hero Video Background ── */
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  filter: saturate(0.8) brightness(0.9);
}

.hero-video.active {
  opacity: 0.25;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(45, 106, 79, 0.6), rgba(20, 60, 45, 0.55));
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  color: var(--white);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, .15);
  border: 1px solid rgba(201, 168, 76, .35);
  border-radius: 999px;
  padding: 6px 16px;
  font-family: var(--primary-font-stack);
  font-size: .78rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: '\1F33F';
  font-size: .9rem;
}

.hero-h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--white);
}

.hero-h1 .gold-line {
  color: var(--gold);
  display: inline;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, .8);
  line-height: 1.8;
  margin-bottom: 10px;
  font-family: var(--primary-font-stack);
}

.hero-sub-en {
  font-size: .88rem;
  color: rgba(255, 255, 255, .6);
  font-family: var(--primary-font-stack);
  font-style: italic;
  margin-bottom: 36px;
}

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

.btn-primary {
  background: var(--gold);
  color: var(--green-deep);
  border: none;
  border-radius: 999px;
  padding: 14px 32px;
  font-size: .95rem;
  font-family: var(--primary-font-stack);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(201, 168, 76, .4);
}

.btn-primary:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, .5);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, .4);
  border-radius: 999px;
  padding: 14px 28px;
  font-size: .88rem;
  font-family: var(--primary-font-stack);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--primary-font-stack);
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  font-size: .75rem;
  color: rgba(255, 255, 255, .6);
  font-family: var(--primary-font-stack);
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-circle {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-circle::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px dashed rgba(201, 168, 76, .25);
  animation: spin 30s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.hero-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 30px;
}

.hero-prod-card {
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.hero-prod-card:hover {
  background: rgba(255, 255, 255, .18);
  transform: translateY(-3px);
}

.hero-prod-icon {
  font-size: 2.2rem;
}

.hero-prod-name {
  font-size: .78rem;
  color: rgba(255, 255, 255, .9);
  font-family: var(--primary-font-stack);
  font-weight: 500;
  line-height: 1.3;
}

.hero-prod-price {
  font-size: .82rem;
  color: var(--gold);
  font-family: var(--primary-font-stack);
  font-weight: 700;
}

/* ── Diagonal divider ── */
.wave-divider {
  line-height: 0;
  overflow: hidden;
  margin-top: -2px;
}

.wave-divider svg {
  display: block;
  width: 100%;
}

/* ════════════════════════════
   TRUST BADGES
════════════════════════════ */
.trust-strip {
  background: var(--green-deep);
  padding: 0;
}

.trust-strip-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 36px;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, .1);
  flex: 1;
  min-width: 180px;
  justify-content: center;
}

.trust-item:last-child {
  border-right: none;
}

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

.trust-text {
  display: flex;
  flex-direction: column;
}

.trust-title {
  font-size: .8rem;
  font-family: var(--primary-font-stack);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.trust-desc {
  font-size: .75rem;
  color: rgba(255, 255, 255, .65);
  font-family: var(--primary-font-stack);
  margin-top: 1px;
}

/* ════════════════════════════
   SECTION COMMON
════════════════════════════ */
section {
  padding: 80px 0;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--primary-font-stack);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-eyebrow::before {
  content: '\2014 ';
}

.section-eyebrow::after {
  content: ' \2014';
}

.section-title {
  font-family: var(--primary-font-stack);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--green-deep);
  margin-bottom: 16px;
}

.section-sub {
  font-size: .96rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-header .section-sub {
  margin: 0 auto;
}

/* ════════════════════════════
   CATEGORIES
════════════════════════════ */
.categories {
  background: var(--cream);
}

.cat-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.cat-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--gold-light);
  border-radius: 999px;
  padding: 12px 24px;
  font-size: .9rem;
  font-family: var(--primary-font-stack);
  color: var(--green-deep);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.cat-pill:hover,
.cat-pill.active {
  background: var(--green-deep);
  color: var(--white);
  border-color: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.cat-pill:hover .cat-icon,
.cat-pill.active .cat-icon {
  filter: brightness(2);
}

.cat-icon {
  font-size: 1.2rem;
}

/* ════════════════════════════
   PRODUCTS (index)
════════════════════════════ */
.products {
  background: var(--gold-pale);
}

.products-grid {
  perspective: 1200px;
}

.prod-card {
  position: relative;
  transform-style: preserve-3d;
  transition: transform .08s ease, box-shadow .3s ease;
  cursor: pointer;
}

.prod-card:hover {
  border-color: rgba(201, 168, 76, .5);
  box-shadow: var(--shadow-3d);
}

.card-shine {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, .18) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
  z-index: 10;
}

.prod-card:hover .card-shine {
  opacity: 1;
}

.prod-img-wrap {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

.prod-img-wrap.honey {
  background: linear-gradient(135deg, #fff8e6 0%, #fde68a 100%);
}

.prod-img-wrap.oil {
  background: linear-gradient(135deg, #f0fdf4 0%, #bbf7d0 100%);
}

.prod-img-wrap.rice {
  background: linear-gradient(135deg, #fefce8 0%, #fde68a80 100%);
}

.prod-img-wrap.herbal {
  background: linear-gradient(135deg, #f0fdf4 0%, #a7f3d0 100%);
}

.prod-img-wrap.combo {
  background: linear-gradient(135deg, var(--gold-pale) 0%, var(--green-light) 100%);
}

.prod-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(255, 255, 255, .3));
}

.prod-emoji {
  font-size: 5rem;
  transition: transform .4s cubic-bezier(.34, 1.56, .64, 1);
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, .12));
}

.prod-card:hover .prod-emoji {
  transform: scale(1.12) translateY(-6px) rotate(-3deg);
}

.prod-img-wrap img.prod-img-tag {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .1));
}

.prod-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--green-deep);
  color: var(--white);
  font-size: .66rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--primary-font-stack);
  letter-spacing: .04em;
  text-transform: uppercase;
  z-index: 2;
}

.prod-badge.gold-badge {
  background: var(--gold);
  color: var(--green-deep);
}

.wishlist-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(8px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
  z-index: 5;
  box-shadow: var(--shadow-sm);
}

.wishlist-btn:hover,
.wishlist-btn.loved {
  background: var(--gold);
}

.wishlist-btn.loved {
  color: white;
}

.prod-body {
  padding: 20px;
}

.prod-cat {
  font-size: .7rem;
  color: var(--gold);
  font-family: var(--primary-font-stack);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
}

.prod-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 4px;
  font-family: var(--primary-font-stack);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.prod-name-en {
  font-size: .75rem;
  color: var(--text-light);
  font-family: var(--primary-font-stack);
  font-style: italic;
  margin-bottom: 10px;
}

.prod-desc {
  font-size: .8rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-description {
  font-size: .85rem;
  color: #4b5563;
  line-height: 1.75;
  margin: 8px 0 16px;
  padding: 12px 16px;
  background: #fffbeb;
  border-radius: 12px;
  border: 1px solid #fde68a;
}

.variant-label {
  font-size: .7rem;
  font-family: var(--primary-font-stack);
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 7px;
}

.variants {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.variant-btn {
  padding: 5px 11px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gold-light);
  font-size: .75rem;
  font-family: var(--primary-font-stack);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  background: var(--gold-pale);
  color: var(--text-mid);
}

.variant-btn:hover {
  border-color: var(--green-sage);
  color: var(--green-deep);
}

.variant-btn.selected {
  background: var(--green-deep);
  color: var(--white);
  border-color: var(--green-deep);
}

.prod-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--gold-light);
}

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

.prod-price .amount {
  font-family: var(--primary-font-stack);
  font-size: 1.3rem;
  color: var(--green-deep);
  font-weight: 700;
}

.prod-price .unit {
  font-size: .72rem;
  color: var(--text-light);
  font-family: var(--primary-font-stack);
}

.btn-cart {
  background: var(--green-deep);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 9px 16px;
  font-size: .78rem;
  font-family: var(--primary-font-stack);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 12px rgba(26, 74, 46, .25);
}

.btn-cart:hover {
  background: var(--gold);
  color: var(--green-deep);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 20px rgba(201, 168, 76, .35);
}

.products-cta {
  text-align: center;
  margin-top: 44px;
}

/* ── Card Button Container ── */
.prod-card .grid.grid-cols-2 {
  display: flex;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
}

.prod-card .grid.grid-cols-2 .btn-primary,
.prod-card .grid.grid-cols-2 .btn-outline {
  flex: 1 1 0%;
  width: 100%;
  min-width: 0;
}

/* ── Card Button Styles ── */
.prod-card .btn-primary {
  font-family: var(--primary-font-stack);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
  color: var(--white);
  background: linear-gradient(180deg, #3d815f 0%, var(--green-mid) 45%, var(--green-deep) 100%);
  border: 1px solid #0f331f;
  box-shadow: 0 4px 12px rgba(26, 74, 46, .35), 0 2px 4px rgba(26, 74, 46, .2),
    inset 0 1px 0 rgba(255, 255, 255, .22), inset 0 -2px 4px rgba(0, 0, 0, .16);
  text-shadow: 0 1px 2px rgba(0, 0, 0, .25);
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease,
    border-color .2s ease, color .2s ease;
  padding: 10px 14px;
  min-height: 42px;
  white-space: normal;
  line-height: 1.2;
}

.prod-card .btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #46936c 0%, var(--green-mid) 45%, #1d5636 100%);
  border-color: #143f28;
  box-shadow: 0 8px 22px rgba(26, 74, 46, .42), 0 4px 8px rgba(26, 74, 46, .24),
    inset 0 1px 0 rgba(255, 255, 255, .28), inset 0 -2px 4px rgba(0, 0, 0, .14);
}

.prod-card .btn-primary:active {
  transform: translateY(1px);
  background: linear-gradient(180deg, var(--green-deep) 0%, #173f29 100%);
  box-shadow: 0 1px 3px rgba(26, 74, 46, .3), inset 0 1px 2px rgba(0, 0, 0, .2),
    inset 0 2px 6px rgba(0, 0, 0, .14);
}

.prod-card .btn-outline {
  font-family: var(--primary-font-stack);
  font-size: .8125rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--green-deep);
  background: linear-gradient(180deg, #ffffff 0%, #eef5ec 100%);
  border: 1.5px solid var(--green-sage);
  box-shadow: 0 3px 8px rgba(26, 74, 46, .12),
    inset 0 1px 0 rgba(255, 255, 255, .95), inset 0 -2px 4px rgba(26, 74, 46, .06);
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease,
    border-color .2s ease, color .2s ease;
  padding: 10px 14px;
  min-height: 42px;
  white-space: normal;
  line-height: 1.2;
}

.prod-card .btn-outline:hover {
  transform: translateY(-2px);
  color: #123e25;
  background: linear-gradient(180deg, #ffffff 0%, #dcebdd 100%);
  border-color: var(--green-mid);
  box-shadow: 0 6px 16px rgba(26, 74, 46, .18),
    inset 0 1px 0 rgba(255, 255, 255, .95), inset 0 -2px 4px rgba(26, 74, 46, .07);
}

.prod-card .btn-outline:active {
  transform: translateY(1px);
  background: linear-gradient(180deg, #e6efe4 0%, #d4e6d6 100%);
  box-shadow: 0 1px 2px rgba(26, 74, 46, .15), inset 0 2px 6px rgba(26, 74, 46, .1);
}

.prod-card .btn-primary:focus-visible,
.prod-card .btn-outline:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ════════════════════════════
   BRAND STORY
════════════════════════════ */
.brand-story {
  background: var(--green-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.brand-story-bg {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: radial-gradient(circle at 1px 1px, var(--gold) 1px, transparent 0);
  background-size: 32px 32px;
}

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.story-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-badge {
  background: rgba(201, 168, 76, .12);
  border: 1px solid rgba(201, 168, 76, .3);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
}

.story-badge:hover {
  background: rgba(201, 168, 76, .2);
  transform: translateX(6px);
}

.badge-icon {
  font-size: 1.8rem;
}

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-title {
  font-size: .9rem;
  font-weight: 600;
  color: var(--gold);
  font-family: var(--primary-font-stack);
}

.badge-desc {
  font-size: .78rem;
  color: rgba(255, 255, 255, .65);
  font-family: var(--primary-font-stack);
  margin-top: 2px;
}

.story-content h2 {
  color: var(--white);
  margin-bottom: 24px;
}

.story-text {
  font-size: .96rem;
  color: rgba(255, 255, 255, .8);
  line-height: 1.9;
  margin-bottom: 16px;
  font-family: var(--primary-font-stack);
}

.story-mission {
  background: rgba(201, 168, 76, .1);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin-top: 24px;
  font-size: .9rem;
  color: var(--gold-light);
  font-style: italic;
  line-height: 1.7;
  font-family: var(--primary-font-stack);
}

/* ════════════════════════════
   TESTIMONIALS
════════════════════════════ */
.testimonials {
  background: var(--cream);
}

.reviews-carousel-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.reviews-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  will-change: transform;
}

.reviews-track>.review-card {
  flex: 0 0 calc((100% - 72px) / 4);
  min-width: 0;
  box-sizing: border-box;
}

.reviews-track .review-card::before {
  content: '\0022';
  position: absolute;
  top: 14px;
  right: 20px;
  font-family: var(--primary-font-stack);
  font-size: 4rem;
  color: var(--gold-light);
  line-height: 1;
}

@media (max-width: 1024px) {
  .reviews-track>.review-card {
    flex: 0 0 calc((100% - 48px) / 3);
  }
}

@media (max-width: 640px) {
  .reviews-track>.review-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

@media (max-width: 480px) {
  .reviews-track>.review-card {
    flex: 0 0 100%;
  }
}

.review-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid #e8e0d4;
  transition: all 0.25s ease;
  position: relative;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border-color: #d4c9b8;
}

.review-card::before {
  content: '\0022';
  position: absolute;
  top: 14px;
  right: 20px;
  font-family: var(--primary-font-stack);
  font-size: 4rem;
  color: #e8e0d4;
  line-height: 1;
  opacity: 0.5;
}

.review-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 12px;
}

.review-text {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-family: var(--primary-font-stack);
  margin-bottom: 18px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gold-light);
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-sage));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-family: var(--primary-font-stack);
  font-size: .9rem;
  flex-shrink: 0;
}

.review-name {
  font-size: .88rem;
  font-weight: 600;
  color: var(--green-deep);
  font-family: var(--primary-font-stack);
}

.review-tag {
  font-size: .72rem;
  color: var(--gold);
  font-family: var(--primary-font-stack);
}

/* ════════════════════════════
   WHY US
════════════════════════════ */
.why-us {
  background: var(--gold-pale);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 28px;
}

.why-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gold-light);
  transition: var(--transition);
}

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

.why-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.why-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 8px;
  font-family: var(--primary-font-stack);
}

.why-desc {
  font-size: .82rem;
  color: var(--text-light);
  line-height: 1.7;
  font-family: var(--primary-font-stack);
}

/* ════════════════════════════
   NEWSLETTER
════════════════════════════ */
.newsletter {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 100%);
  padding: 70px 0;
  text-align: center;
  color: var(--white);
}

.newsletter h2 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.newsletter p {
  color: rgba(255, 255, 255, .75);
  font-family: var(--primary-font-stack);
  font-size: .96rem;
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.newsletter-input {
  background: rgba(255, 255, 255, .1);
  border: 1.5px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  padding: 13px 24px;
  font-size: .9rem;
  font-family: var(--primary-font-stack);
  color: var(--white);
  outline: none;
  width: 300px;
  transition: var(--transition);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, .5);
}

.newsletter-input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, .15);
}

.btn-subscribe {
  background: var(--gold);
  color: var(--green-deep);
  border: none;
  border-radius: 999px;
  padding: 13px 28px;
  font-size: .9rem;
  font-family: var(--primary-font-stack);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

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

/* ════════════════════════════
   FOOTER
════════════════════════════ */
.footer {
  background: #111d13;
  color: rgba(255, 255, 255, .7);
  padding: 64px 24px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-brand .logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo-icon {
  height: 48px;
  width: auto;
  flex-shrink: 0;
}

.footer-logo-hz {
  height: 32px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-desc {
  font-size: .84rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-family: var(--primary-font-stack);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
  color: rgba(255, 255, 255, .7);
}

.social-btn:hover {
  background: var(--gold);
  color: var(--green-deep);
}

.footer-col h4 {
  font-family: var(--primary-font-stack);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: 18px;
}

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

.footer-links a {
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  font-size: .85rem;
  font-family: var(--primary-font-stack);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.pay-badge {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  font-size: .72rem;
  font-family: var(--primary-font-stack);
  color: rgba(255, 255, 255, .65);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom p {
  font-size: .78rem;
  font-family: var(--primary-font-stack);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  font-family: var(--primary-font-stack);
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* ════════════════════════════
   STICKY CART BAR (mobile)
════════════════════════════ */
.sticky-cart-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--green-deep);
  padding: 12px 20px;
  z-index: 998;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, .2);
}

.sticky-cart-bar span {
  color: var(--white);
  font-family: var(--primary-font-stack);
  font-size: .85rem;
}

.sticky-cart-bar .btn-primary {
  padding: 10px 24px;
  font-size: .85rem;
}

/* ════════════════════════════
   SCROLL ANIMATION
════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 {
  transition-delay: .1s;
}

.fade-in-delay-2 {
  transition-delay: .2s;
}

.fade-in-delay-3 {
  transition-delay: .3s;
}

.fade-in-delay-4 {
  transition-delay: .4s;
}

/* ════════════════════════════
   ABOUT PAGE STYLES
════════════════════════════ */
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
}

.about-hero {
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  color: white;
  padding: 60px 30px;
  border-radius: var(--radius-md);
  text-align: center;
  margin-bottom: 50px;
}

.about-hero h1 {
  font-family: var(--primary-font-stack);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 15px;
}

.about-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
  font-family: var(--primary-font-stack);
  line-height: 1.8;
}

.about-section {
  margin-bottom: 50px;
  padding: 36px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gold-light);
}

.about-section h2 {
  font-family: var(--primary-font-stack);
  color: var(--green-deep);
  font-size: 1.8rem;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--gold-light);
  padding-bottom: 12px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.about-text {
  line-height: 1.8;
  color: var(--text-mid);
  font-size: .95rem;
  font-family: var(--primary-font-stack);
}

.about-text p {
  margin-bottom: 15px;
}

.about-image {
  background: var(--gold-pale);
  padding: 30px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
  border: 1px solid var(--gold-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.stat-card {
  background: var(--gold-pale);
  padding: 28px;
  border-radius: var(--radius-sm);
  text-align: center;
  border-top: 4px solid var(--gold);
}

.stat-card .stat-number {
  font-family: var(--primary-font-stack);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green-deep);
}

.stat-card .stat-label {
  color: var(--text-light);
  font-size: .9rem;
  margin-top: 8px;
  font-family: var(--primary-font-stack);
}

.values-grid {
  display: flex;
  gap: 20px;
  margin-top: 24px;
}

.value-card {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--gold-light);
  padding: 28px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border-left: 4px solid var(--gold);
}

@media (max-width: 768px) {
  .values-grid {
    flex-direction: column;
  }
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.value-card .value-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.value-card .value-title {
  font-family: var(--primary-font-stack);
  color: var(--green-deep);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.value-card .value-description {
  color: var(--text-mid);
  font-size: .9rem;
  line-height: 1.7;
  font-family: var(--primary-font-stack);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.team-member {
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--gold-light);
  transition: var(--transition);
}

.team-member:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.team-member .team-image {
  background: var(--gold-pale);
  padding: 24px;
  text-align: center;
  font-size: 3rem;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-member .team-info {
  padding: 20px;
  text-align: center;
}

.team-member .team-name {
  font-family: var(--primary-font-stack);
  color: var(--green-deep);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 5px;
}

.team-member .team-role {
  color: var(--gold);
  font-size: .85rem;
  margin-bottom: 10px;
  font-family: var(--primary-font-stack);
  font-weight: 600;
}

.team-member .team-bio {
  color: var(--text-light);
  font-size: .82rem;
  line-height: 1.6;
  font-family: var(--primary-font-stack);
}

.highlight-box {
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
  color: var(--green-deep);
  font-family: var(--primary-font-stack);
  line-height: 1.7;
}

.highlight-box strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
}

.cta-section {
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  color: white;
  padding: 48px 40px;
  border-radius: var(--radius-md);
  text-align: center;
  margin: 40px 0 60px;
}

.cta-section h2 {
  font-family: var(--primary-font-stack);
  color: white;
  margin-bottom: 12px;
  border: none;
}

.cta-section p {
  font-family: var(--primary-font-stack);
  font-size: .95rem;
  opacity: .9;
}

.btn-about-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--green-deep);
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  margin-top: 20px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: .95rem;
  font-family: var(--primary-font-stack);
}

.btn-about-cta:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ════════════════════════════
   BLOG PAGE STYLES
════════════════════════════ */
.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
}

.blog-hero {
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  color: white;
  padding: 50px 30px;
  border-radius: var(--radius-md);
  text-align: center;
  margin-bottom: 50px;
}

.blog-hero h1 {
  font-family: var(--primary-font-stack);
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 15px;
}

.blog-hero p {
  font-size: 1.05rem;
  opacity: 0.9;
  font-family: var(--primary-font-stack);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-bottom: 50px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gold-light);
  transition: var(--transition);
}

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

.blog-card .blog-image {
  height: 200px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border-bottom: 2px solid var(--gold-light);
}

.blog-card .blog-content {
  padding: 24px;
}

.blog-card .blog-date {
  color: var(--gold);
  font-size: .82rem;
  font-weight: 600;
  font-family: var(--primary-font-stack);
  margin-bottom: 8px;
}

.blog-card .blog-title {
  display: block;
  font-family: var(--primary-font-stack);
  color: var(--green-deep);
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.blog-card .blog-title:hover {
  color: var(--green-mid);
}

.blog-card .blog-excerpt {
  color: var(--text-mid);
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 16px;
  font-family: var(--primary-font-stack);
}

.blog-card .blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-card .blog-category {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--green-deep);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
  font-family: var(--primary-font-stack);
}

.blog-card .blog-read-more {
  display: inline-block;
  background: var(--green-deep);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: .82rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-family: var(--primary-font-stack);
}

.blog-card .blog-read-more:hover {
  background: var(--gold);
  color: var(--green-deep);
}

.blog-card .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Featured post — editorial card ── */
.blog-featured {
  position: relative;
  background: linear-gradient(150deg, #ffffff 0%, var(--gold-pale) 58%, var(--gold-light) 110%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-light);
  box-shadow: var(--shadow-md);
  padding: 40px;
  margin-bottom: 56px;
  overflow: hidden;
}

.blog-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--green-mid) 55%, var(--green-deep));
}

.blog-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  color: var(--gold-light);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 999px;
  box-shadow: 0 5px 16px rgba(26, 74, 46, .25);
  margin-bottom: 26px;
}

.blog-featured-badge .blog-featured-star {
  color: var(--gold);
  font-size: .9rem;
}

.blog-featured-content {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: center;
}

.blog-featured-text h3 {
  font-family: var(--primary-font-stack);
  color: var(--green-deep);
  font-size: clamp(1.6rem, 2.6vw, 2.15rem);
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 14px;
}

.blog-featured-text h3 .blog-featured-title {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.blog-featured-text h3 .blog-featured-title:hover {
  color: var(--green-mid);
}

.blog-featured-text .blog-featured-excerpt {
  font-family: var(--primary-font-stack);
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.9;
  margin: 0 0 18px;
}

.blog-featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-deep);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: .92rem;
  font-family: var(--primary-font-stack);
  box-shadow: 0 8px 20px rgba(26, 74, 46, .22);
  transition: var(--transition);
  margin-top: 4px;
}

.blog-featured-cta:hover {
  background: var(--gold);
  color: var(--green-deep);
  transform: translateY(-2px);
}

.featured-image-link {
  position: relative;
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 280px;
  box-shadow: var(--shadow-sm);
}

.featured-image {
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  color: white;
  padding: 40px;
  text-align: center;
  font-size: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.featured-image.featured-image-has-img {
  padding: 0;
}

.featured-image-link .featured-image img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}

.featured-image-link:hover .featured-image img {
  transform: scale(1.05);
}

.featured-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 74, 46, 0) 35%, rgba(26, 74, 46, .62) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
  opacity: 0;
  transition: var(--transition);
}

.featured-image-link:hover .featured-image-overlay {
  opacity: 1;
}

.featured-overlay-label {
  background: var(--gold);
  color: var(--green-deep);
  font-family: var(--primary-font-stack);
  font-weight: 700;
  font-size: .85rem;
  padding: 10px 24px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
}

.blog-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.blog-tag {
  background: var(--gold-pale);
  color: var(--gold);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: .78rem;
  font-weight: 600;
  font-family: var(--primary-font-stack);
}

.blog-section-title {
  font-family: var(--primary-font-stack);
  color: var(--green-deep);
  font-size: 1.8rem;
  margin-bottom: 28px;
  border-bottom: 2px solid var(--gold-light);
  padding-bottom: 12px;
}

.coming-soon {
  background: var(--gold-pale);
  padding: 40px;
  text-align: center;
  border-radius: var(--radius-md);
  color: var(--text-light);
  margin: 30px 0;
  border: 1px solid var(--gold-light);
}

.coming-soon .coming-soon-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.coming-soon h3 {
  font-family: var(--primary-font-stack);
  color: var(--green-deep);
  margin-bottom: 10px;
}

.coming-soon p {
  font-family: var(--primary-font-stack);
}

.btn-blog-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--green-deep);
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-size: .9rem;
  font-family: var(--primary-font-stack);
  transition: var(--transition);
}

.btn-blog-cta:hover {
  background: var(--white);
  transform: translateY(-2px);
}

/* ════════════════════════════
   BLOG POST DETAIL PAGE STYLES
   ════════════════════════════ */
.blog-post-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 50px 24px 70px;
}

.blog-post-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  font-family: var(--primary-font-stack);
  color: var(--text-light);
}

.blog-post {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-light);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.blog-post-header {
  padding: 40px 48px 10px;
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--text-light);
  font-size: .85rem;
  font-family: var(--primary-font-stack);
  margin-bottom: 16px;
}

.blog-post-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-post-header h1 {
  font-family: var(--primary-font-stack);
  color: var(--green-deep);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.4;
  margin: 0 0 18px;
}

.blog-post-header .blog-tags {
  margin-top: 0;
}

.blog-post-image {
  margin: 24px 0 0;
  background: var(--gold-pale);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.blog-post-image img {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: cover;
  display: block;
}

.blog-post-body {
  padding: 34px 48px 40px;
  font-family: var(--primary-font-stack);
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 2;
}

.blog-post-body h2,
.blog-post-body h3 {
  font-family: var(--primary-font-stack);
  color: var(--green-deep);
  margin: 28px 0 12px;
  line-height: 1.5;
}

.blog-post-body h2 { font-size: 1.5rem; }
.blog-post-body h3 { font-size: 1.25rem; }

.blog-post-body p { margin: 0 0 18px; }

.blog-post-body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  margin: 16px 0;
}

.blog-post-body ul,
.blog-post-body ol {
  padding-left: 24px;
  margin: 0 0 18px;
}

.blog-post-body li { margin-bottom: 8px; }

.blog-post-body a { color: var(--green-mid); font-weight: 600; }

.blog-post-body blockquote {
  border-left: 4px solid var(--gold);
  background: var(--gold-pale);
  padding: 16px 22px;
  border-radius: var(--radius-sm);
  margin: 20px 0;
  color: var(--green-deep);
}

.blog-post-footer {
  padding: 0 48px 40px;
}

.blog-post-notfound {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius-lg);
  padding: 60px 30px;
  box-shadow: var(--shadow-sm);
}

.blog-post-notfound h2 {
  font-family: var(--primary-font-stack);
  color: var(--green-deep);
  margin: 0 0 12px;
}

.blog-post-notfound p {
  font-family: var(--primary-font-stack);
  color: var(--text-light);
  margin: 0 0 24px;
}

@media (max-width: 768px) {
  .blog-post-header {
    padding: 28px 22px 8px;
  }

  .blog-post-body {
    padding: 24px 22px 30px;
  }

  .blog-post-footer {
    padding: 0 22px 30px;
  }

  .blog-post-image {
    min-height: 220px;
  }
}

/* ════════════════════════════
   CONTACT PAGE STYLES
════════════════════════════ */
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
}

.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-header h1 {
  font-family: var(--primary-font-stack);
  color: var(--green-deep);
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 12px;
}

.contact-header p {
  color: var(--text-light);
  font-size: 1.05rem;
  font-family: var(--primary-font-stack);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.contact-form {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gold-light);
}

.contact-form h2 {
  font-family: var(--primary-font-stack);
  color: var(--green-deep);
  font-size: 1.4rem;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--gold-light);
  padding-bottom: 12px;
}

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

.form-group label {
  display: block;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: .9rem;
  font-family: var(--primary-font-stack);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1.5px solid var(--gold-light);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-family: var(--primary-font-stack);
  transition: var(--transition);
  background: var(--gold-pale);
  color: var(--text-dark);
  outline: none;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  background: var(--green-deep);
  color: var(--white);
  padding: 14px;
  border: none;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--primary-font-stack);
  margin-top: 10px;
}

.submit-btn:hover {
  background: var(--gold);
  color: var(--green-deep);
  transform: translateY(-2px);
}

.success-message {
  background: var(--gold-pale);
  border-left: 4px solid var(--green-deep);
  color: var(--green-deep);
  padding: 15px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  display: none;
  font-family: var(--primary-font-stack);
}

.error-message {
  background: #fff0f0;
  border-left: 4px solid #e11d48;
  color: #e11d48;
  padding: 15px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  display: none;
  font-family: var(--primary-font-stack);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold-light);
  border-top: 3px solid var(--gold);
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.info-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.info-title {
  font-family: var(--primary-font-stack);
  color: var(--green-deep);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.info-content {
  color: var(--text-mid);
  line-height: 1.8;
  font-size: .9rem;
  font-family: var(--primary-font-stack);
}

.info-link {
  color: var(--green-sage);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.info-link:hover {
  color: var(--gold);
}

.hours-table {
  width: 100%;
  margin-top: 10px;
  font-size: .88rem;
}

.hours-table td {
  padding: 6px 0;
  border-bottom: 1px solid var(--gold-light);
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--text-dark);
}

.hours-table td:last-child {
  color: var(--green-sage);
  text-align: right;
}

.map-section {
  margin-top: 40px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gold-light);
}

.map-placeholder {
  background: var(--gold-pale);
  padding: 60px 20px;
  text-align: center;
  color: var(--text-light);
  font-family: var(--primary-font-stack);
}

.faq-preview {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gold-light);
  margin-top: 40px;
}

.faq-preview h2 {
  font-family: var(--primary-font-stack);
  color: var(--green-deep);
  font-size: 1.4rem;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--gold-light);
  padding-bottom: 12px;
}

.faq-preview .faq-item {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gold-light);
}

.faq-preview .faq-item:last-child {
  border-bottom: none;
}

.faq-preview .faq-question {
  color: var(--green-deep);
  font-weight: 600;
  margin-bottom: 6px;
  font-family: var(--primary-font-stack);
}

.faq-preview .faq-answer {
  color: var(--text-mid);
  font-size: .9rem;
  line-height: 1.7;
  font-family: var(--primary-font-stack);
}

.faq-preview .view-all-faq {
  display: inline-block;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  margin-top: 12px;
  font-family: var(--primary-font-stack);
  transition: var(--transition);
}

.faq-preview .view-all-faq:hover {
  color: var(--green-deep);
}

.newsletter-section {
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  color: white;
  padding: 48px 40px;
  border-radius: var(--radius-md);
  text-align: center;
  margin-top: 50px;
}

.newsletter-section h2 {
  font-family: var(--primary-font-stack);
  color: white;
  margin-bottom: 12px;
  border: none;
}

.newsletter-section p {
  font-family: var(--primary-font-stack);
  font-size: .95rem;
  opacity: .9;
  margin-bottom: 20px;
}

.newsletter-section .newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 12px 20px;
  border: none;
  border-radius: 999px;
  font-size: .9rem;
  font-family: var(--primary-font-stack);
  outline: none;
}

.newsletter-section .newsletter-form button {
  background: var(--gold);
  color: var(--green-deep);
  padding: 12px 28px;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--primary-font-stack);
}

.newsletter-section .newsletter-form button:hover {
  background: var(--white);
  transform: translateY(-2px);
}

/* ════════════════════════════
   PRODUCT DETAIL PAGE STYLES
════════════════════════════ */
/* ── Product Hero Card ── */
.product-hero-card {
  background: linear-gradient(135deg, #035507 0%, #294b1d 100%);
  color: #ffffff;
  padding: 40px;
  border-radius: 16px;
  margin-top: 25px;
  margin-bottom: 48px;
  text-align: center;
  border: 1px solid #d4e2d2;
}

.product-hero-card .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--primary-font-stack);
  font-size: .85rem;
  color: #ffffff;
  padding: 0;
  margin-bottom: 16px;
  background: none;
  border: none;
  box-shadow: none;
}

.product-hero-card .breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.product-hero-card .breadcrumb a:hover {
  opacity: 0.7;
  color: #ffffff;
}

.product-hero-title {
  font-family: var(--primary-font-stack);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
  margin: 0 0 6px;
}

.product-hero-sub {
  font-size: 14px;
  color: #ffffff;
  font-family: var(--primary-font-stack);
  margin: 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--primary-font-stack);
  font-size: .85rem;
  color: var(--text-light);
  padding: 20px 0;
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--green-deep);
  text-decoration: none;
  transition: var(--transition);
}

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

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin: 0 0 60px;
}

.gallery-section {
  position: sticky;
  top: 100px;
}

.main-image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  margin-bottom: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.main-image.zoomed img {
  transform: scale(1.5);
  cursor: zoom-out;
  transition: transform 0.3s ease;
}

.thumbnail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.thumbnail {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.thumbnail:hover,
.thumbnail.active {
  border-color: var(--green-deep);
  box-shadow: 0 4px 16px rgba(26, 74, 46, 0.12);
}

.prod-badge-top {
  display: inline-block;
  background: linear-gradient(135deg, #1b4332, #2d6a4f);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(26, 74, 46, 0.2);
}

.prod-title {
  font-family: var(--primary-font-stack);
  font-size: 2rem;
  color: #1a1a1a;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}

.prod-title-en {
  font-family: var(--primary-font-stack);
  font-size: 1rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 24px;
}

.rating-section {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}

.rating-text {
  font-size: .85rem;
  color: var(--text-mid);
}

.price-section {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
}

.current-price {
  font-family: var(--primary-font-stack);
  font-size: 2.2rem;
  color: #1b4332;
  font-weight: 700;
}

.unit-price {
  font-size: .9rem;
  color: var(--text-light);
}

.variant-section {
  margin-bottom: 28px;
  padding: 20px;
  background: var(--gold-pale);
  border-radius: var(--radius-lg);
}

.variant-section .variant-label {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.variant-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.variant-section .variant-btn {
  padding: 12px 18px;
  border-radius: 12px;
  border: 1.5px solid var(--gold-light);
  background: var(--white);
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--primary-font-stack);
  font-size: .88rem;
  font-weight: 500;
}

.variant-section .variant-btn:hover {
  border-color: var(--green-deep);
  color: var(--green-deep);
  transform: translateY(-1px);
}

.variant-section .variant-btn.selected {
  background: var(--green-deep);
  color: var(--white);
  border-color: var(--green-deep);
}

.cta-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
  flex: 1;
  min-width: 160px;
  padding: 16px 24px;
  border: none;
  border-radius: 14px;
  font-family: var(--primary-font-stack);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .95rem;
}

.cta-buttons .btn-primary {
  background: linear-gradient(135deg, #1b4332, #2d6a4f);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26, 74, 46, 0.3);
}

.cta-buttons .btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(26, 74, 46, 0.4);
}

.cta-buttons .btn-secondary {
  background: none;
  border: 1.5px solid var(--gold-light);
  color: var(--text-mid);
}

.cta-buttons .btn-secondary:hover {
  border-color: var(--gold);
  color: var(--green-deep);
  transform: translateY(-2px);
}

.wishlist-heart {
  font-size: 1.2rem;
}

.info-section .btn-buy-now {
  flex: 1;
  min-width: 160px;
  padding: 16px 24px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), #e8bf5a);
  color: #1b4332;
  font-size: .95rem;
  font-family: var(--primary-font-stack);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
}

.info-section .btn-buy-now:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.45);
  background: linear-gradient(135deg, #d4b44c, #f0cc66);
}

.info-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: #faf8f2;
  border: 1px solid #e8e0d4;
  border-radius: 12px;
  margin-bottom: 12px;
  font-size: .88rem;
  color: #4a4a4a;
}

.info-badge-icon {
  font-size: 1.3rem;
}

.tabs {
  margin-top: 60px;
}

.tab-nav {
  display: flex;
  gap: 6px;
  background: var(--gold-pale);
  padding: 6px;
  border-radius: 999px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, .08);
  margin-bottom: 40px;
}

.tab-btn {
  padding: 12px 24px;
  background: transparent;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--primary-font-stack);
  font-size: .95rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--green-deep);
}

.tab-btn.active {
  background: var(--green-deep);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(26, 74, 46, .25);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn .3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.detail-info-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.detail-item {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  background: linear-gradient(135deg, var(--white) 0%, var(--gold-pale) 100%);
  border-radius: var(--radius-md);
  border: 1px solid #e8e0d4;
  transition: all 0.3s ease;
}

.detail-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .07);
  border-color: var(--gold);
}

.detail-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  font-size: 1.3rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}

.detail-body {
  flex: 1;
  min-width: 0;
}

.detail-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--gold);
  margin-bottom: 6px;
}

.detail-value {
  font-size: .95rem;
  color: var(--text-dark);
  line-height: 1.7;
}

.faq-item {
  padding: 24px;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid #e8e0d4;
  margin-bottom: 16px;
  transition: box-shadow 0.25s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.faq-q {
  font-weight: 600;
  color: #1b4332;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--primary-font-stack);
  font-size: .95rem;
}

.faq-q::before {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  color: #1b4332;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e8f0e4;
}

.faq-q.open::before {
  transform: rotate(45deg);
  background: #1b4332;
  color: #fff;
}

.faq-a {
  display: none;
  color: #5a5a5a;
  padding: 16px 0 0 34px;
  font-size: .9rem;
  line-height: 1.7;
}

.faq-a.show {
  display: block;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

.review-card .review-stars {
  color: var(--gold);
  font-size: .95rem;
  margin-bottom: 10px;
}

.review-card .review-text {
  color: #5a5a5a;
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.review-card .review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid #e8e0d4;
}

.review-card .review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-sage));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: .85rem;
  overflow: hidden;
  flex-shrink: 0;
}

.review-card .review-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.review-card .review-meta {
  display: flex;
  flex-direction: column;
}

.review-card .review-name {
  font-weight: 600;
  color: #1b4332;
  font-size: .88rem;
}

.review-card .review-date {
  font-size: .75rem;
  color: var(--text-light);
}

/* ════════════════════════════
   SHOP PAGE STYLES 
   ════════════════════════════ */
.product-area {
  min-width: 0;
}

.shop-hero {
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  color: white;
  padding: 48px 0 56px;
  position: relative;
  overflow: hidden;
}

.shop-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(201, 168, 76, .08) 1px, transparent 0);
  background-size: 28px 28px;
}

.shop-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

.shop-hero-inner .breadcrumb {
  color: rgba(255, 255, 255, .55);
  padding: 0;
  margin-bottom: 16px;
}

.shop-hero-inner .breadcrumb a {
  color: rgba(255, 255, 255, .55);
}

.shop-hero-inner .breadcrumb a:hover {
  color: var(--gold);
}

.shop-hero-content h1 {
  font-family: var(--primary-font-stack);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 10px;
}

.shop-hero-content p {
  color: rgba(255, 255, 255, .7);
  font-size: .92rem;
  font-family: var(--primary-font-stack);
  max-width: 520px;
}

.hero-stats-row {
  display: flex;
  gap: 32px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.h-stat {
  display: flex;
  flex-direction: column;
}

.h-stat-n {
  font-family: var(--primary-font-stack);
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}

.h-stat-l {
  font-size: .72rem;
  color: rgba(255, 255, 255, .55);
  font-family: var(--primary-font-stack);
  margin-top: 3px;
}

/* ── Shop Hero ── */
.shop-hero {
  grid-column: 1 / -1;
  padding: 40px;
  text-align: center;
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(163, 155, 143, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.shop-hero h1 {
  font-family: var(--primary-font-stack);
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #ffffff;
  letter-spacing: 0.02em;
  margin: 0 0 8px;
}

.shop-hero p {
  font-size: 14px;
  color: #e0ebd4;
  font-family: var(--primary-font-stack);
  line-height: 1.7;
  margin: 0;
}

.shop-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 28px 80px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 88px;
}

.filter-panel {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gold-light);
}

.filter-title {
  font-family: var(--primary-font-stack);
  font-size: 1.1rem;
  color: var(--green-deep);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold-light);
}

.filter-group {
  margin-bottom: 28px;
}

.filter-group-label {
  font-size: .72rem;
  font-family: var(--primary-font-stack);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: 12px;
}

.cat-tabs {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cat-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--primary-font-stack);
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-mid);
  border: none;
  background: none;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.cat-tab::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: transparent;
  border-radius: 0 3px 3px 0;
  transition: var(--transition);
}

.cat-tab:hover {
  background: var(--gold-pale);
  color: var(--green-deep);
}

.cat-tab:hover::before {
  background: var(--gold);
}

.cat-tab.active {
  background: linear-gradient(90deg, rgba(26, 74, 46, .07), transparent);
  color: var(--green-deep);
  font-weight: 600;
}

.cat-tab.active::before {
  background: var(--green-deep);
}

.cat-tab-icon {
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
}

.cat-tab-count {
  margin-left: auto;
  background: var(--gold-light);
  color: var(--text-mid);
  font-size: .68rem;
  font-family: var(--primary-font-stack);
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
}

.cat-tab.active .cat-tab-count {
  background: var(--green-deep);
  color: var(--white);
}

.price-range-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-inputs {
  display: flex;
  gap: 8px;
  align-items: center;
}

.price-input {
  width: 80px;
  padding: 7px 10px;
  border: 1.5px solid var(--gold-light);
  border-radius: var(--radius-sm);
  font-size: .82rem;
  font-family: var(--primary-font-stack);
  color: var(--text-dark);
  outline: none;
  background: var(--gold-pale);
  transition: var(--transition);
}

.price-input:focus {
  border-color: var(--gold);
}

.price-sep {
  color: var(--text-light);
  font-size: .8rem;
}

.sort-select {
  width: 100%;
  padding: 9px 14px;
  border: 1.5px solid var(--gold-light);
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-family: var(--primary-font-stack);
  color: var(--text-dark);
  background: var(--gold-pale);
  outline: none;
  cursor: pointer;
  transition: var(--transition);
}

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

.badge-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.badge-filter-btn {
  padding: 5px 12px;
  border-radius: 999px;
  border: 1.5px solid var(--gold-light);
  background: none;
  font-size: .75rem;
  font-family: var(--primary-font-stack);
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--transition);
}

.badge-filter-btn:hover,
.badge-filter-btn.active {
  background: var(--green-deep);
  color: var(--white);
  border-color: var(--green-deep);
}

.btn-reset {
  width: 100%;
  padding: 11px;
  border: 1.5px solid rgba(26, 74, 46, .2);
  border-radius: var(--radius-sm);
  background: none;
  font-size: .85rem;
  font-family: var(--primary-font-stack);
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--transition);
  margin-top: 4px;
}

.btn-reset:hover {
  border-color: var(--green-deep);
  color: var(--green-deep);
  background: var(--gold-pale);
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.result-info {
  font-family: var(--primary-font-stack);
  font-size: .85rem;
  color: var(--text-light);
}

.result-info strong {
  color: var(--text-dark);
}

.view-toggle {
  display: flex;
  gap: 4px;
}

.view-btn {
  padding: 7px 10px;
  border: 1.5px solid var(--gold-light);
  border-radius: var(--radius-sm);
  background: none;
  cursor: pointer;
  font-size: .9rem;
  transition: var(--transition);
  color: var(--text-light);
}

.view-btn.active {
  background: var(--green-deep);
  color: var(--white);
  border-color: var(--green-deep);
}

.view-btn:hover:not(.active) {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-filter-toggle {
  display: none;
  padding: 7px 14px;
  border: 1.5px solid var(--gold-light);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  font-size: .82rem;
  font-family: var(--primary-font-stack);
  font-weight: 600;
  color: var(--green-deep);
  transition: var(--transition);
}

.btn-filter-toggle:hover {
  background: var(--green-deep);
  color: var(--white);
  border-color: var(--green-deep);
}

@media (max-width: 900px) {
  .btn-filter-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }
}

.prod-search-wrap {
  position: relative;
}

.prod-search {
  padding: 9px 16px 9px 38px;
  border: 1.5px solid var(--gold-light);
  border-radius: 999px;
  font-family: var(--primary-font-stack);
  font-size: .88rem;
  background: var(--white);
  color: var(--text-dark);
  outline: none;
  width: 220px;
  transition: var(--transition);
}

.prod-search:focus {
  border-color: var(--gold);
  width: 260px;
}

.prod-search-icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  font-size: .9rem;
  color: var(--text-light);
  pointer-events: none;
}

.products-grid.shop-grid {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

/* ── Shop Card Styles (missing extracted styles) ── */
.prod-img {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.prod-img.honey {
  background: linear-gradient(135deg, #fff8e6 0%, #fde68a 100%);
}

.prod-img.oil {
  background: linear-gradient(135deg, #f0fdf4 0%, #bbf7d0 100%);
}

.prod-img.rice {
  background: linear-gradient(135deg, #fefce8 0%, #fde68a80 100%);
}

.prod-img.herbal {
  background: linear-gradient(135deg, #f0fdf4 0%, #a7f3d0 100%);
}

.prod-img.combo {
  background: linear-gradient(135deg, var(--gold-pale) 0%, var(--green-light) 100%);
}

.prod-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(255, 255, 255, .3));
}

.prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s cubic-bezier(.34, 1.56, .64, 1);
  display: block;
}

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

.p-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: .66rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--primary-font-stack);
  letter-spacing: .04em;
  text-transform: uppercase;
  z-index: 2;
}

.p-badge.gold {
  background: var(--gold);
  color: var(--green-deep);
}

.p-badge.teal {
  background: #14b8a6;
  color: white;
}

.p-badge.green {
  background: var(--green-deep);
  color: white;
}

.p-badge.purple {
  background: #8b5cf6;
  color: white;
}

.p-badge.rose {
  background: #e11d48;
  color: white;
}

.prod-cat-tag {
  font-size: .7rem;
  color: var(--gold);
  font-family: var(--primary-font-stack);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
}

.prod-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.prod-rating .stars {
  color: var(--gold);
  font-size: .85rem;
  letter-spacing: 2px;
}

.prod-rating .rating-count {
  font-size: .72rem;
  color: var(--text-light);
  font-family: var(--primary-font-stack);
}

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

.price-amount {
  font-family: var(--primary-font-stack);
  font-size: 1.3rem;
  color: var(--green-deep);
  font-weight: 700;
}

.price-unit {
  font-size: .72rem;
  color: var(--text-light);
  font-family: var(--primary-font-stack);
}

/* ── Featured Products (shop.html) ── */
.shop-featured {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px 20px;
}

.shop-featured .section-header {
  margin-bottom: 28px;
}

.shop-featured .section-eyebrow {
  font-size: .75rem;
  font-family: var(--primary-font-stack);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--gold);
  margin-bottom: 8px;
}

.shop-featured .section-title {
  font-family: var(--primary-font-stack);
  font-size: 1.6rem;
  color: var(--green-deep);
  font-weight: 700;
}

.shop-featured .section-sub {
  font-size: .9rem;
  color: var(--text-light);
  font-family: var(--primary-font-stack);
  margin-top: 6px;
}

.products-grid.list-view {
  grid-template-columns: 1fr !important;
}

.list-view .prod-card {
  border-radius: var(--radius-lg);
}

.list-view .prod-desc {
  -webkit-line-clamp: 3;
}

/* ── Card content padding ── */
.prod-card>.p-4,
.prod-card>.px-4 {
  padding-left: 20px;
  padding-right: 20px;
}

/* ── List view card layout ── */
.list-view .prod-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 20px;
}

.list-view .prod-card .card-shine {
  display: none;
}

.list-view .prod-card>[class*="prod-img"] {
  grid-row: 1 / -1;
  aspect-ratio: auto;
  height: 100%;
}

.list-view .prod-card>.p-4 {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.list-view .prod-card>.px-4 {
  grid-column: 2;
  grid-row: 2;
}

.list-view .prod-card .p-4,
.list-view .prod-card .px-4 {
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 768px) {
  .list-view .prod-card {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .list-view .prod-card>[class*="prod-img"] {
    grid-row: auto;
    aspect-ratio: 16 / 9;
    height: auto;
    width: 100%;
  }

  .list-view .prod-card>.p-4,
  .list-view .prod-card>.px-4 {
    grid-column: 1;
  }

  .list-view .prod-card .p-4,
  .list-view .prod-card .px-4 {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.empty-state {
  grid-column: 1/-1;
  text-align: center;
  padding: 80px 20px;
}

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

.empty-state h3 {
  font-family: var(--primary-font-stack);
  font-size: 1.4rem;
  color: var(--green-deep);
  margin-bottom: 8px;
}

.empty-state p {
  color: var(--text-light);
  font-family: var(--primary-font-stack);
  font-size: .9rem;
}

.toast-wrap {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  background: var(--green-deep);
  color: var(--white);
  padding: 13px 20px;
  border-radius: var(--radius-md);
  font-family: var(--primary-font-stack);
  font-size: .88rem;
  box-shadow: var(--shadow-lg);
  border-left: 3px solid var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideIn .3s ease;
  pointer-events: auto;
  max-width: 300px;
}

@keyframes slideIn {
  from {
    transform: translateX(120%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }

  to {
    transform: translateX(120%);
    opacity: 0;
  }
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  backdrop-filter: blur(2px);
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -440px;
  width: 420px;
  max-width: 100vw;
  height: 100vh;
  background: var(--white);
  z-index: 1001;
  transition: right .35s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0, 0, 0, .15);
}

.cart-drawer.open {
  right: 0;
}

.cart-header {
  padding: 24px;
  border-bottom: 1px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header h3 {
  font-family: var(--primary-font-stack);
  font-size: 1.2rem;
  color: var(--green-deep);
}

.cart-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  color: var(--text-light);
  transition: var(--transition);
  padding: 4px;
}

.cart-close:hover {
  color: var(--green-deep);
}

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

.cart-empty {
  text-align: center;
  padding: 60px 20px;
}

.cart-empty .ce-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.cart-empty p {
  color: var(--text-light);
  font-family: var(--primary-font-stack);
  font-size: .9rem;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gold-light);
  align-items: center;
}

.ci-emoji {
  font-size: 2.2rem;
  min-width: 48px;
  text-align: center;
}

.ci-info {
  flex: 1;
}

.ci-name {
  font-size: .9rem;
  font-weight: 600;
  color: var(--green-deep);
  font-family: var(--primary-font-stack);
  margin-bottom: 2px;
}

.ci-variant {
  font-size: .75rem;
  color: var(--text-light);
  font-family: var(--primary-font-stack);
}

.ci-price {
  font-family: var(--primary-font-stack);
  font-size: 1rem;
  color: var(--gold);
  font-weight: 700;
}

.ci-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.qty-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-light);
  background: none;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-family: var(--primary-font-stack);
}

.qty-btn:hover {
  background: var(--green-deep);
  color: var(--white);
  border-color: var(--green-deep);
}

.qty-num {
  font-size: .85rem;
  font-family: var(--primary-font-stack);
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.ci-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  font-size: .85rem;
  transition: var(--transition);
  padding: 4px;
  border-radius: 4px;
}

.ci-remove:hover {
  color: #e11d48;
  background: rgba(225, 29, 72, .08);
}

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--gold-light);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.cart-total-label {
  font-family: var(--primary-font-stack);
  font-size: .9rem;
  color: var(--text-mid);
}

.cart-total-amount {
  font-family: var(--primary-font-stack);
  font-size: 1.4rem;
  color: var(--green-deep);
  font-weight: 700;
}

.btn-checkout {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-size: .95rem;
  font-family: var(--primary-font-stack);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 10px;
}

.btn-checkout:hover {
  background: linear-gradient(135deg, var(--gold), #e8bf5a);
  color: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, .35);
}

.btn-cont-shop {
  width: 100%;
  padding: 11px;
  background: none;
  color: var(--text-mid);
  border: 1.5px solid var(--gold-light);
  border-radius: var(--radius-md);
  font-size: .88rem;
  font-family: var(--primary-font-stack);
  cursor: pointer;
  transition: var(--transition);
}

.btn-cont-shop:hover {
  border-color: var(--green-deep);
  color: var(--green-deep);
}

.load-more-wrap {
  text-align: center;
  margin-top: 40px;
}

.btn-load-more {
  background: var(--white);
  color: var(--green-deep);
  border: 2px solid var(--gold-light);
  border-radius: 999px;
  padding: 13px 36px;
  font-size: .92rem;
  font-family: var(--primary-font-stack);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-load-more:hover {
  border-color: var(--green-deep);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}

.fade-up.in {
  opacity: 1;
  transform: translateY(0);
}

main {
  background: var(--cream);
}

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 1100px) {
  .shop-main {
    grid-template-columns: 240px 1fr;
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-visual {
    justify-content: center;
  }

  .hero-circle {
    width: 340px;
    height: 340px;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .story-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sticky-cart-bar {
    display: flex;
  }

  .shop-main {
    grid-template-columns: 1fr;
    padding: 24px 16px 80px;
  }

  .sidebar {
    position: static;
  }

  .filter-panel {
    display: none;
  }

  .filter-panel.mob-open {
    display: block;
  }

  .prod-emoji {
    font-size: 3.2rem;
  }
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .blog-featured-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .featured-image-link,
  .featured-image {
    min-height: 220px;
  }

  .blog-featured {
    padding: 28px 22px;
  }

  .blog-hero h1 {
    font-size: 2rem;
  }

  .product-hero-card {
    padding: 28px 20px;
  }

  .product-detail {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gallery-section {
    position: static;
  }

  .tab-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 6px;
  }

  .tab-btn {
    flex: 0 0 auto;
    padding: 10px 18px;
    font-size: .85rem;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    min-width: 140px;
  }

  .info-section .btn-buy-now {
    min-width: 140px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .nav-search {
    display: none;
  }

  .btn-shop-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-inner {
    padding: 12px 16px;
  }

  .nav-logo-icon {
    height: 36px;
  }

  .nav-logo-hz {
    height: 26px;
    max-width: 130px;
  }
}

@media (max-width: 600px) {
  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary,
  .info-section .btn-buy-now {
    min-width: 0;
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-width: 150px;
  }

  .hero-circle {
    width: 280px;
    height: 280px;
  }

  .sticky-cart-bar {
    display: flex;
  }

  body {
    padding-bottom: 70px;
  }

  .hero {
    min-height: 100svh;
    padding: 40px 0;
  }

  .prod-img-wrap {
    aspect-ratio: 1 / 1;
    height: auto;
  }

  .prod-emoji {
    font-size: 3rem;
  }

  .prod-body {
    padding: 16px;
  }

  .prod-name {
    font-size: .95rem;
  }

  .btn-cart {
    padding: 8px 12px;
    font-size: .75rem;
  }

  .about-section {
    padding: 24px 20px;
  }

  .about-hero {
    padding: 40px 20px;
  }

  .about-container {
    padding: 40px 16px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .blog-container {
    padding: 40px 16px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-featured {
    padding: 24px 20px;
  }

  .contact-container {
    padding: 40px 16px;
  }

  .contact-form {
    padding: 24px 20px;
  }

  .contact-content {
    gap: 24px;
  }

  .container {
    padding: 0 16px;
  }

  .prod-title {
    font-size: 1.5rem;
  }

  .current-price {
    font-size: 1.6rem;
  }

  .tab-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 6px;
  }

  .tab-btn {
    flex: 0 0 auto;
    padding: 10px 14px;
    font-size: .82rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .thumbnail-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .prod-body {
    padding: 12px 12px 14px;
  }

  .prod-name {
    font-size: .85rem;
  }

  .prod-cat-tag {
    font-size: .65rem;
  }

  .prod-emoji {
    font-size: 3.2rem;
  }

  .prod-img {
    aspect-ratio: 1 / 1;
    height: auto;
  }

  .list-view .prod-img {
    aspect-ratio: 1 / 1;
    height: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .price-amount {
    font-size: 1.05rem;
  }

  .prod-rating .stars {
    font-size: .75rem;
  }

  .prod-rating .rating-count {
    font-size: .65rem;
  }
}

/* ── PHONE (≤480px) ── */
@media (max-width: 480px) {
  .prod-body {
    padding: 10px 12px 12px;
  }

  .prod-name {
    font-size: .82rem;
  }

  .price-amount {
    font-size: 1rem;
  }
}

/* ── Hero Video Mobile Responsive ── */
@media (max-width: 768px) {
  .hero-video {
    object-position: center center;
  }

  .hero-video.active {
    opacity: 0.35;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 0 8px;
  }
}

/* ════════════════════════════════════════════
   CHECKOUT MODAL
   ════════════════════════════════════════════ */
.checkout-summary {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gold-light);
}

.checkout-summary h3 {
  font-family: var(--primary-font-stack);
  font-size: 1rem;
  color: var(--green-deep);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1.5px solid var(--gold-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cs-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: .85rem;
  font-family: var(--primary-font-stack);
  color: var(--text-mid);
  border-bottom: 1px solid var(--gold-light);
}

.cs-item:last-child {
  border-bottom: none;
}

.cs-item .cs-name {
  font-family: var(--primary-font-stack);
  font-weight: 500;
}

.cs-item .cs-qty {
  color: var(--text-light);
  font-size: .78rem;
}

.cs-item .cs-price {
  font-family: var(--primary-font-stack);
  font-weight: 700;
  color: var(--green-deep);
}

.cs-item-img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--bg-cream);
  flex-shrink: 0;
}

.cs-item-info {
  flex: 1;
  min-width: 0;
}

.cs-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  font-size: .85rem;
  font-family: var(--primary-font-stack);
  color: var(--text-mid);
}

.cs-discount-line {
  color: #22c55e;
}

.cs-total-line {
  display: flex;
  justify-content: space-between;
  padding: 14px 0 0;
  margin-top: 10px;
  border-top: 2px solid var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
  font-family: var(--primary-font-stack);
  color: var(--green-deep);
}

.promo-section {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--gold-light);
}

.promo-input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid #e8e0d4;
  border-radius: 12px;
  font-size: .85rem;
  font-family: var(--primary-font-stack);
  color: #1b4332;
  background: var(--white);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.promo-input::placeholder {
  color: #b0a8a0;
}

.promo-input:focus {
  border-color: #c9a84c;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, .12);
}

.promo-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #1b4332, #2d6a4f);
  color: var(--white);
  font-size: .85rem;
  font-family: var(--primary-font-stack);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.promo-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26, 74, 46, .3);
}

.promo-btn:active {
  transform: translateY(0);
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: flex;
  gap: 12px;
}

.form-row .form-group {
  flex: 1;
}

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

.form-group label {
  font-size: .82rem;
  font-family: var(--primary-font-stack);
  font-weight: 500;
  color: var(--text-mid);
}

.form-group input,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--gold-light);
  border-radius: var(--radius-md);
  font-size: .9rem;
  font-family: var(--primary-font-stack);
  color: var(--green-deep);
  background: var(--bg-cream);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, .15);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 60px;
}

/* ── PAYMENT METHODS ── */
.payment-section {
  margin: 20px 0 10px;
}

.payment-section h3 {
  font-family: var(--primary-font-stack);
  font-size: .95rem;
  color: var(--green-deep);
  margin-bottom: 10px;
}

.pay-radio-group {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.pay-radio {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 14px;
  border: 1.5px solid var(--gold-light);
  border-radius: var(--radius-md);
  background: var(--white);
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  position: relative;
}

.pay-radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pay-radio:hover {
  border-color: #c9a84c;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(201, 168, 76, .12);
}

.pay-radio.active {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(201, 168, 76, .07), rgba(232, 191, 90, .1));
  box-shadow: 0 4px 20px rgba(201, 168, 76, .18);
  transform: translateY(-2px);
}

.pay-radio.active::after {
  content: '✓';
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: .68rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(201, 168, 76, .12);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pay-radio-icon {
  font-size: 1.6rem;
  display: block;
}

.pay-radio-title {
  font-size: .82rem;
  font-family: var(--primary-font-stack);
  font-weight: 600;
  color: #1b4332;
}

.pay-radio-desc {
  font-size: .72rem;
  font-family: var(--primary-font-stack);
  color: #8a8a8a;
  line-height: 1.3;
}

/* Mobile Banking payment option modifier */
.pay-radio--mobile-banking {
  flex-direction: column;
  gap: 8px;
}

/* bKash / Mobile Banking card — বড় আইকন + কপি-যোগ্য নাম্বার */
.pay-radio-icon--lg img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.mb-tabs {
  display: flex;
  gap: 6px;
  margin: 4px 0 8px;
}

.mb-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.mb-tab img {
  height: 20px;
  width: auto;
  object-fit: contain;
}

.mb-tab.active {
  border-color: #2d6a4f;
  background: #eef6f1;
}

.mb-tab:hover {
  border-color: #f4a261;
}

.mb-tab-fallback {
  display: inline-flex;
  align-items: center;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 10px;
  font-family: var(--primary-font-stack);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
  line-height: 1.4;
}

@media (max-width: 480px) {
  .mb-tabs {
    flex-wrap: nowrap;
  }

  .mb-tab {
    flex: 1;
  }
}

.pay-radio-number-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}

.pay-radio-number {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #1a1a1a;
  font-family: var(--primary-font-stack);
}

.copy-number-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  background: #fff;
  color: #555;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.copy-number-btn:hover {
  background: #f4a261;
  border-color: #f4a261;
  color: #fff;
}

.copy-number-btn.copied {
  background: #2d6a4f;
  border-color: #2d6a4f;
  color: #fff;
}

.pay-content {
  display: none;
  padding: 16px;
  background: var(--bg-cream);
  border-radius: var(--radius-md);
}

.pay-content.active {
  display: block;
}

.pay-content p {
  font-size: .85rem;
  color: var(--text-mid);
  font-family: var(--primary-font-stack);
  margin-bottom: 10px;
}

.pay-delivery-note {
  font-size: .78rem !important;
  color: var(--text-light) !important;
  margin-top: 6px !important;
}

.pay-field-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pay-field-group input {
  padding: 11px 14px;
  border: 1.5px solid var(--gold-light);
  border-radius: var(--radius-md);
  font-size: .85rem;
  font-family: var(--primary-font-stack);
  outline: none;
  transition: var(--transition);
}

.pay-field-group input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, .15);
}

.pay-cards {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pay-card {
  flex: 1;
  min-width: 100px;
  padding: 14px 12px;
  border: 1.5px solid var(--gold-light);
  border-radius: var(--radius-md);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
  font-size: .8rem;
  font-family: var(--primary-font-stack);
  color: var(--text-mid);
}

.pay-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(201, 168, 76, .2);
}

.pay-card.selected {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(201, 168, 76, .08), rgba(232, 191, 90, .12));
  color: var(--green-deep);
  font-weight: 600;
}

.pay-card .pay-card-icon {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 6px;
}

.pay-card .pay-card-name {
  font-size: .75rem;
}

/* ── SUBMIT ── */
.btn-place-order {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: var(--primary-font-stack);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(26, 74, 46, .2);
}

.btn-place-order:hover {
  background: linear-gradient(135deg, var(--gold), #e8bf5a);
  color: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, .35);
}

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

/* ── CONFIRMATION ── */
.confirmation-screen {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.confirmation-screen.active {
  display: block;
}

.confirm-icon {
  margin-bottom: 16px;
}

.confirm-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(26, 74, 46, .25);
  animation: popIn .5s cubic-bezier(.34, 1.56, .64, 1) forwards;
}

@keyframes popIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  60% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.confirm-title {
  font-family: var(--primary-font-stack);
  font-size: 1.5rem;
  color: var(--green-deep);
  margin-bottom: 8px;
}

.confirm-sub {
  font-size: .9rem;
  color: var(--text-light);
  font-family: var(--primary-font-stack);
  margin-bottom: 24px;
  line-height: 1.5;
}

.confirm-order-id {
  background: var(--bg-cream);
  padding: 10px 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--primary-font-stack);
  font-size: .85rem;
  color: var(--green-deep);
  font-weight: 600;
  margin-bottom: 20px;
}

.confirm-copy-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  padding: 4px;
  transition: var(--transition);
  border-radius: 4px;
  line-height: 1;
}

.confirm-copy-btn:hover {
  background: var(--gold-pale);
  transform: scale(1.1);
}

.confirm-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-continue-shop {
  padding: 12px 28px;
  background: var(--white);
  color: var(--green-deep);
  border: 2px solid var(--gold-light);
  border-radius: 999px;
  font-size: .9rem;
  font-family: var(--primary-font-stack);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-continue-shop:hover {
  border-color: var(--green-deep);
  background: var(--green-deep);
  color: var(--white);
}

.btn-download-pdf {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  color: var(--white);
  border: none;
  border-radius: 999px;
  font-size: .9rem;
  font-family: var(--primary-font-stack);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(26, 74, 46, .2);
}

.btn-download-pdf:hover {
  background: linear-gradient(135deg, var(--gold), #e8bf5a);
  color: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, .35);
}

/* ── CART ITEM IMAGE ── */
.ci-img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--bg-cream);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════
   QUICK VIEW MODAL
   ════════════════════════════════════════════ */
.qv-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.qv-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.qv-modal {
  background: var(--white);
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  border-radius: 20px;
  overflow-y: auto;
  transform: scale(.92) translateY(20px);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
  position: relative;
}

.qv-overlay.open .qv-modal {
  transform: scale(1) translateY(0);
}

.qv-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--bg-cream);
  color: var(--text-mid);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.qv-close:hover {
  background: var(--green-deep);
  color: var(--white);
}

.qv-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.qv-image-wrap {
  background: var(--bg-cream);
  border-radius: 20px 0 0 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  min-height: 320px;
}

.qv-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 320px;
}

.qv-details {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.qv-badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--gold-light);
  color: var(--gold);
  width: fit-content;
}

.qv-name {
  font-family: var(--primary-font-stack);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.3;
}

.qv-name-en {
  font-size: .82rem;
  color: var(--text-light);
  font-family: var(--primary-font-stack);
  font-style: italic;
}

.qv-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
}

.qv-stars {
  color: #f59e0b;
  font-size: .95rem;
}

.qv-reviews {
  color: var(--text-light);
  font-family: var(--primary-font-stack);
}

.qv-desc {
  font-size: .85rem;
  color: var(--text-mid);
  font-family: var(--primary-font-stack);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.qv-variants {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.qv-variant-btn {
  padding: 7px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--gold-light);
  background: var(--white);
  font-size: .8rem;
  font-family: var(--primary-font-stack);
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-mid);
}

.qv-variant-btn:hover {
  border-color: var(--gold);
}

.qv-variant-btn.selected {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--white);
}

.qv-qty-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.qv-qty-label {
  font-size: .82rem;
  font-family: var(--primary-font-stack);
  font-weight: 500;
  color: var(--text-mid);
}

.qv-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qv-qty-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-light);
  background: var(--white);
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text-mid);
  font-family: var(--primary-font-stack);
}

.qv-qty-btn:hover {
  background: var(--green-deep);
  color: var(--white);
  border-color: var(--green-deep);
}

.qv-qty-num {
  font-size: 1rem;
  font-family: var(--primary-font-stack);
  font-weight: 600;
  min-width: 24px;
  text-align: center;
  color: var(--green-deep);
}

.qv-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 6px;
  border-top: 1px solid var(--gold-light);
}

.qv-price-amount {
  font-family: var(--primary-font-stack);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-deep);
}

.qv-price-unit {
  font-size: .82rem;
  color: var(--text-light);
  font-family: var(--primary-font-stack);
}

.qv-actions {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.qv-add-cart {
  flex: 1;
  padding: 12px;
  border-radius: var(--radius-md);
  border: 2px solid var(--gold-light);
  background: var(--white);
  color: var(--green-deep);
  font-size: .85rem;
  font-family: var(--primary-font-stack);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.qv-add-cart:hover {
  border-color: var(--green-deep);
  background: var(--bg-cream);
}

.qv-buy-now {
  flex: 1;
  padding: 12px;
  border-radius: var(--radius-md);
  border: none;
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  color: var(--white);
  font-size: .85rem;
  font-family: var(--primary-font-stack);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.qv-buy-now:hover {
  background: linear-gradient(135deg, var(--gold), #e8bf5a);
  color: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, .3);
}

@media (max-width: 640px) {
  .qv-body {
    grid-template-columns: 1fr;
  }

  .qv-image-wrap {
    border-radius: 20px 20px 0 0;
    min-height: 200px;
  }

  .qv-image-wrap img {
    max-height: 220px;
  }

  .qv-details {
    padding: 20px 18px;
  }

  .qv-modal {
    max-height: 95vh;
  }

  .qv-overlay {
    padding: 10px;
  }
}

/* ── ANIMATED CART BADGE ── */
.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #e11d48;
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  font-family: var(--primary-font-stack);
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  transition: transform .2s cubic-bezier(.34, 1.56, .64, 1);
  box-shadow: 0 2px 6px rgba(225, 29, 72, .3);
}

.cart-badge.pop {
  transform: scale(1.35);
}

/* ── BUY NOW BUTTON ON CARDS ── */
.btn-buy-now {
  padding: 8px 14px;
  border-radius: var(--radius-md);
  border: none;
  background: linear-gradient(135deg, var(--gold), #e8bf5a);
  color: var(--green-deep);
  font-size: .72rem;
  font-family: var(--primary-font-stack);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-buy-now:hover {
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(26, 74, 46, .25);
}

.prod-footer .btn-buy-now {
  font-size: .7rem;
  padding: 7px 10px;
}

/* ── QUICK VIEW TRIGGER ON CARDS ── */
.prod-card {
  cursor: pointer;
}

.prod-card .btn-cart,
.prod-card .wishlist-btn,
.prod-card .btn-buy-now,
.prod-card .variant-btn {
  cursor: pointer;
}

/* ── RELATED PRODUCT BUY NOW ── */
.related-buy-now {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #e8bf5a);
  color: var(--green-deep);
  font-size: .72rem;
  font-family: var(--primary-font-stack);
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
}

.related-buy-now:hover {
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  color: var(--white);
}

/* ════════════════════════════════════════════
   PAGE-LEVEL CART (cart.html)
   ════════════════════════════════════════════ */
.page-cart {
  padding: 40px 24px 60px;
  background: var(--bg-cream);
}

.page-cart-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}

.page-cart-items .cart-body {
  flex: none;
  overflow-y: visible;
  padding: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}

.page-cart-items .cart-empty {
  padding: 80px 20px;
}

.page-cart-sidebar {
  position: sticky;
  top: 100px;
}

.pc-summary-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}

.pc-summary-title {
  font-family: var(--primary-font-stack);
  font-size: 1.1rem;
  color: var(--green-deep);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid var(--gold-light);
}

.pc-shipping-note {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
  margin-top: 16px;
}

.pc-shipping-note h4 {
  font-family: var(--primary-font-stack);
  font-size: .9rem;
  color: var(--green-deep);
  margin-bottom: 10px;
}

.pc-shipping-note p {
  font-size: .8rem;
  color: var(--text-light);
  font-family: var(--primary-font-stack);
  line-height: 1.7;
  margin-bottom: 4px;
}

/* ════════════════════════════════════════════
   CHECKOUT HERO TRUST STRIP
   ════════════════════════════════════════════ */
.checkout-hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--green-deep);
  padding: 10px 20px;
  font-size: .78rem;
  font-family: var(--primary-font-stack);
  color: rgba(255, 255, 255, .85);
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.cht-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, .2);
  margin: 0 18px;
}

@media (max-width: 600px) {
  .checkout-hero-trust {
    gap: 6px 14px;
    padding: 8px 14px;
    font-size: .72rem;
  }

  .cht-divider {
    display: none;
  }
}

/* ════════════════════════════════════════════
   CHECKOUT PROGRESS STEPS
   ════════════════════════════════════════════ */
.checkout-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  gap: 0;
}

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

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--primary-font-stack);
  font-weight: 700;
  font-size: .82rem;
  background: var(--gold-light);
  color: var(--text-light);
  flex-shrink: 0;
  transition: var(--transition);
}

.step-label {
  font-size: .82rem;
  font-family: var(--primary-font-stack);
  color: var(--text-light);
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}

.step.active .step-num {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, .2);
}

.step.active .step-label {
  color: var(--gold);
  font-weight: 600;
}

.step.completed .step-num {
  background: var(--green-deep);
  color: var(--white);
  font-size: .7rem;
}

.step.completed .step-label {
  color: var(--green-deep);
  font-weight: 600;
}

.step-line {
  width: 48px;
  height: 2px;
  background: var(--gold-light);
  margin: 0 10px;
  border-radius: 2px;
  transition: var(--transition);
}

.step.completed~.step-line {
  background: var(--green-deep);
}

@media (max-width: 600px) {
  .checkout-steps {
    margin-bottom: 24px;
  }

  .step-label {
    display: none;
  }

  .step-line {
    width: 24px;
    margin: 0 6px;
  }
}

/* ════════════════════════════════════════════
   CHECKOUT SECTION HEADINGS
   ════════════════════════════════════════════ */
.checkout-section {
  margin-bottom: 24px;
}

.checkout-section h3 {
  font-family: var(--primary-font-stack);
  font-size: 1rem;
  color: var(--green-deep);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1.5px solid var(--gold-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ════════════════════════════════════════════
   PAGE-LEVEL CHECKOUT (checkout.html)
   ════════════════════════════════════════════ */
.page-checkout {
  padding: 32px 24px 60px;
  background: var(--bg-cream);
}

.page-checkout-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}

/* ── LEFT COLUMN: Form ── */
.checkout-main .checkout-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gold-light);
}

.checkout-main .checkout-form .form-group label {
  font-size: .82rem;
  font-family: var(--primary-font-stack);
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: 5px;
  display: block;
}

.checkout-main .checkout-form .form-group input,
.checkout-main .checkout-form .form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--gold-light);
  border-radius: var(--radius-md);
  font-size: .9rem;
  font-family: var(--primary-font-stack);
  color: var(--green-deep);
  background: var(--bg-cream);
  transition: var(--transition);
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

.checkout-main .checkout-form .form-group input:focus,
.checkout-main .checkout-form .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, .15);
  background: var(--white);
}

.checkout-main .checkout-form .form-group textarea {
  resize: vertical;
  min-height: 60px;
}

/* ── LEFT COLUMN: Confirmation ── */
.checkout-main .confirmation-screen {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 60px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gold-light);
  margin-top: 24px;
}

/* ── RIGHT COLUMN: Sidebar ── */
.checkout-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checkout-sidebar .checkout-summary {
  margin-bottom: 0;
}

.checkout-sidebar .pc-shipping-note {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gold-light);
  margin-top: 0;
}

.checkout-sidebar .pc-shipping-note h4 {
  font-family: var(--primary-font-stack);
  font-size: .85rem;
  color: var(--green-deep);
  margin-bottom: 10px;
}

.checkout-sidebar .pc-shipping-note p {
  font-size: .78rem;
  color: var(--text-light);
  font-family: var(--primary-font-stack);
  line-height: 1.7;
  margin-bottom: 4px;
}

.checkout-sidebar .pc-shipping-note p a:hover {
  text-decoration: underline;
}

/* ── CHECKOUT PAGE RESPONSIVE ── */
@media (max-width: 900px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-sidebar {
    position: static;
    margin-top: 24px;
  }

  .pay-radio {
    min-width: 120px;
  }
}

@media (max-width: 600px) {
  .checkout-main .checkout-form {
    padding: 20px 18px;
  }

  .pay-radio-group {
    flex-direction: column;
  }

  .pay-radio {
    min-width: 0;
  }

  .promo-section {
    flex-direction: column;
  }

  .promo-btn {
    width: 100%;
  }

  .checkout-main .confirmation-screen {
    padding: 40px 18px;
  }
}

/* ════════════════════════════════════════════
   CART PAGE RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 768px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .page-cart-sidebar {
    position: static;
  }
}

/* ── Mobile product grid: 2 columns ── */
@media (max-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

/* ── Mobile product card buttons ── */
@media (max-width: 768px) {
  .prod-card .grid.grid-cols-2 {
    gap: 6px;
  }

  .prod-card .grid.grid-cols-2 .btn-primary,
  .prod-card .grid.grid-cols-2 .btn-outline {
    padding: 9px 8px;
    font-size: .68rem;
    min-height: 42px;
    white-space: normal;
    line-height: 1.25;
  }
}