/* ===== ROOT VARIABLES ===== */
:root {
  --green-dark: #1a4a2e;
  --green-mid: #2d6a4f;
  --green-light: #52b788;
  --green-pale: #d8f3dc;
  --earth-brown: #6b4226;
  --earth-warm: #a97c50;
  --earth-pale: #f5ebe0;
  --gold: #d4a017;
  --gold-light: #f4d03f;
  --white: #fdfaf6;
  --text-dark: #1c1c1c;
  --text-mid: #4a4a4a;
  --text-light: #7a7a7a;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 6px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 12px 50px rgba(0, 0, 0, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Nunito", sans-serif;
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ===== SECTION VISIBILITY ===== */
.section {
  display: none;
}
.section.active {
  display: block;
  animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 250, 246, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(45, 106, 79, 0.12);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green-light);
}

.logo-text-fallback {
  font-size: 2rem;
  align-items: center;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-en {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
}

.brand-ne {
  font-size: 0.7rem;
  color: var(--green-mid);
  font-weight: 600;
}

.nav-links {
  /* transform: translateY(-110%); */
  display: flex;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-links a {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-mid);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--green-light);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--green-dark);
}
.nav-links a:hover::after {
  left: 1rem;
  right: 1rem;
}

.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--green-pale);
  border-radius: 50%;
  transition: var(--transition);
  flex-shrink: 0;
}

.cart-btn:hover {
  background: var(--green-light);
  transform: scale(1.05);
}
.cart-icon {
  font-size: 1.2rem;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 0.65rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== CART SIDEBAR ===== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--white);
  z-index: 1200;
  box-shadow: var(--shadow-lg);
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.cart-sidebar.open {
  right: 0;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--green-pale);
  background: var(--green-dark);
  color: white;
}

.cart-header h2 {
  font-size: 1.25rem;
  color: white;
}
.close-cart {
  color: white;
  font-size: 1.2rem;
  opacity: 0.8;
  transition: var(--transition);
}
.close-cart:hover {
  opacity: 1;
  transform: scale(1.2);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}

.empty-cart {
  text-align: center;
  color: var(--text-light);
  margin-top: 3rem;
  font-size: 1rem;
  line-height: 2;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: var(--earth-pale);
  margin-bottom: 0.75rem;
  animation: fadeInUp 0.3s ease;
}

.cart-item-img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  background: var(--green-pale);
}

.cart-item-info {
  flex: 1;
}
.cart-item-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--green-dark);
}
.cart-item-price {
  color: var(--earth-brown);
  font-weight: 600;
  font-size: 0.85rem;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-mid);
  color: white;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-weight: 700;
}

.qty-btn:hover {
  background: var(--green-dark);
}
.cart-qty {
  font-weight: 700;
  min-width: 20px;
  text-align: center;
}

.remove-btn {
  color: #e74c3c;
  font-size: 1rem;
  margin-left: 0.5rem;
  opacity: 0.7;
  transition: var(--transition);
}
.remove-btn:hover {
  opacity: 1;
  transform: scale(1.2);
}

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--green-pale);
  background: var(--earth-pale);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--green-dark);
}

.checkout-btn {
  width: 100%;
  padding: 1rem;
  background: var(--green-dark);
  color: white;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition);
}

.checkout-btn:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--green-dark);
  color: white;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition);
  border: 2px solid var(--green-dark);
}

.btn-primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(45, 106, 79, 0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--green-dark);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition);
  border: 2px solid var(--green-dark);
}

.btn-outline:hover {
  background: var(--green-dark);
  color: white;
  transform: translateY(-2px);
}

.full-width {
  width: 100%;
  justify-content: center;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding-top: 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--white) 0%,
    var(--green-pale) 40%,
    #b7e4c7 100%
  );
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}

.shape1 {
  width: 600px;
  height: 600px;
  background: var(--green-light);
  top: -200px;
  right: -150px;
  animation: float 8s ease-in-out infinite;
}

.shape2 {
  width: 300px;
  height: 300px;
  background: var(--gold);
  bottom: 10%;
  left: -80px;
  animation: float 6s ease-in-out infinite reverse;
}

.shape3 {
  width: 200px;
  height: 200px;
  background: var(--earth-brown);
  top: 40%;
  left: 40%;
  animation: float 10s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 4rem 1.5rem 4rem 6%;
  flex: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  background: var(--green-dark);
  color: white;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.6s ease 0.2s both;
  line-height: 1.2;
}

.hero-title em {
  font-style: italic;
  color: var(--green-mid);
  position: relative;
}

.hero-title em::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  opacity: 0.6;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease 0.3s both;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  animation: fadeInUp 0.6s ease 0.5s both;
}

.stat {
  display: flex;
  flex-direction: column;
  border-left: 3px solid var(--green-light);
  padding-left: 1rem;
}

.stat strong {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  color: var(--green-dark);
  line-height: 1;
}

.stat span {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 600;
}

.hero-visual {
  flex: 1;
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mountain-scene {
  position: relative;
  width: 100%;
  height: 500px;
}

.mtn-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(45, 106, 79, 0.08), transparent);
  border-radius: 50%;
}

.product-float {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition);
}

.product-float:hover {
  transform: translateY(-8px) scale(1.02);
}

.product-float img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}

.product-float span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-dark);
  padding: 0.5rem 0.75rem;
  text-align: center;
}

.p1 {
  width: 160px;
  top: 60px;
  left: 50px;
  animation: float 7s ease-in-out infinite;
}
.p2 {
  width: 145px;
  top: 30px;
  right: 80px;
  animation: float 9s ease-in-out infinite reverse;
}
.p3 {
  width: 155px;
  bottom: 80px;
  left: 120px;
  animation: float 8s ease-in-out infinite 1s;
}

/* ===== FEATURES STRIP ===== */
.features-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--green-dark);
  padding: 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.75rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.feature-item:last-child {
  border-right: none;
}
.feature-item:hover {
  background: var(--green-mid);
}

.feat-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.feature-item strong {
  display: block;
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
}

.feature-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  margin: 0;
}

/* ===== SECTION CONTAINER ===== */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: var(--green-pale);
  color: var(--green-dark);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ===== PRODUCT CARDS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.75rem;
}

.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
  background: var(--earth-pale);
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-img img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--green-dark);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.product-badge.spice {
  background: var(--earth-brown);
}
.product-badge.snack {
  background: var(--gold);
  color: var(--green-dark);
}
.product-badge.flour {
  background: #7b6f5a;
}

.product-card-body {
  padding: 1.25rem;
}

.product-card-name {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  color: var(--green-dark);
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.product-card-ne {
  font-size: 0.82rem;
  color: var(--green-mid);
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.product-card-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--earth-brown);
}

.product-weight {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 600;
}

.add-to-cart-btn {
  padding: 0.5rem 1rem;
  background: var(--green-dark);
  color: white;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
}

.add-to-cart-btn:hover {
  background: var(--green-mid);
  transform: scale(1.05);
}

/* ===== BRAND BANNER ===== */
.brand-banner {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  padding: 4rem 1.5rem;
}

.banner-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.banner-text h3 {
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.banner-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
}

.banner-logo img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.3);
  object-fit: cover;
}

/* ===== PAGE HERO MINI ===== */
.page-hero.mini {
  background: linear-gradient(
    135deg,
    var(--green-dark) 0%,
    var(--green-mid) 100%
  );
  padding: 8rem 1.5rem 3.5rem;
  text-align: center;
}

.page-hero.mini h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  margin-bottom: 0.75rem;
}

.page-hero.mini p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}

/* ===== FILTER BAR ===== */
.filter-bar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.55rem 1.25rem;
  border: 2px solid var(--green-pale);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
  background: white;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: white;
}

/* ===== PRODUCT DETAIL ===== */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--green-mid);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  transition: var(--transition);
  padding: 0.5rem 0;
}

.back-btn:hover {
  color: var(--green-dark);
  gap: 0.75rem;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.detail-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1;
  background: var(--earth-pale);
}

.detail-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-info {
  padding: 1rem 0;
}

.detail-category {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: var(--green-pale);
  color: var(--green-dark);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.detail-title {
  font-size: 2.2rem;
  color: var(--green-dark);
  margin-bottom: 0.3rem;
}

.detail-ne {
  font-size: 1rem;
  color: var(--green-mid);
  margin-bottom: 1.25rem;
}

.detail-price {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--earth-brown);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.detail-weight {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.detail-desc {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  border-left: 4px solid var(--green-pale);
  padding-left: 1rem;
}

.detail-benefits {
  margin-bottom: 2rem;
}

.detail-benefits h4 {
  font-size: 1rem;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
}

.benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.benefit-tag {
  padding: 0.35rem 0.9rem;
  background: var(--green-pale);
  color: var(--green-dark);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
}

.quantity-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.quantity-row label {
  font-weight: 700;
  color: var(--green-dark);
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--earth-pale);
  border-radius: var(--radius-sm);
  padding: 0.35rem;
}

.qty-ctrl-btn {
  width: 36px;
  height: 36px;
  background: var(--green-mid);
  color: white;
  border-radius: 8px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: var(--transition);
}

.qty-ctrl-btn:hover {
  background: var(--green-dark);
}
.qty-display {
  font-size: 1.1rem;
  font-weight: 700;
  min-width: 30px;
  text-align: center;
}

.detail-btns {
  display: flex;
  gap: 1rem;
}

.detail-info-tags {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--green-pale);
}

.info-tag {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-mid);
  font-weight: 600;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 5rem;
}

.about-image-block {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
}

.about-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
}

.about-img-wrap.small {
  align-self: end;
}

.img-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--green-dark);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
}

.about-text .section-tag {
  margin-bottom: 0.75rem;
}

.about-text h2 {
  font-size: 2.4rem;
  color: var(--green-dark);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.about-text p {
  color: var(--text-mid);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.8;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.value-card {
  padding: 1.25rem;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.value-card:hover {
  background: var(--green-dark);
  transform: translateY(-4px);
}

.value-card:hover h4,
.value-card:hover p {
  color: white;
}

.value-card span {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.5rem;
}
.value-card h4 {
  font-size: 1rem;
  color: var(--green-dark);
  margin-bottom: 0.25rem;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
}
.value-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

/* ===== TIMELINE ===== */
.timeline-section {
  padding-top: 3rem;
  border-top: 1px solid var(--green-pale);
}

.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--green-pale);
}

.timeline-item {
  display: flex;
  gap: 2rem;
  padding-bottom: 2.5rem;
  position: relative;
}

.tl-dot {
  width: 42px;
  height: 42px;
  background: var(--green-dark);
  border-radius: 50%;
  flex-shrink: 0;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--green-light);
  position: relative;
  z-index: 1;
}

.tl-content {
  padding-top: 0.5rem;
  padding-bottom: 1rem;
}

.tl-content h4 {
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-bottom: 0.4rem;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
}

.tl-content p {
  color: var(--text-mid);
  font-size: 0.95rem;
  margin: 0;
}

/* ===== CONTACT ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.8rem;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}

.contact-info > p {
  color: var(--text-mid);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.c-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item strong {
  display: block;
  color: var(--green-dark);
  font-weight: 700;
  margin-bottom: 0.2rem;
  font-size: 0.9rem;
}

.contact-item p {
  color: var(--text-mid);
  font-size: 0.9rem;
  margin: 0;
}

.social-links-inline {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.social-links-inline a {
  color: var(--green-mid);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-links-inline a:hover {
  color: var(--green-dark);
  text-decoration: underline;
}

.contact-form-wrap {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  font-size: 1.5rem;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--green-dark);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--green-pale);
  border-radius: var(--radius-sm);
  font-family: "Nunito", sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.15);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--green-dark);
  color: white;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
}

.footer-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-brand h3 {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 0.25rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 0.82rem !important;
  font-style: italic;
  margin-top: 0.5rem !important;
}

.footer-links h4,
.footer-products h4,
.footer-contact h4 {
  color: var(--gold-light);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  font-family: "Nunito", sans-serif;
}

.footer-links ul,
.footer-products ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
  padding-left: 4px;
}

.footer-products li {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  margin-bottom: 0.6rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.8rem;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--green-light);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
  line-height: 1.8;
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--green-dark);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 9999;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  white-space: nowrap;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ===== PLACEHOLDER ===== */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--green-pale), var(--earth-pale));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--green-mid);
}

.img-placeholder span:first-child {
  font-size: 3rem;
}
.img-placeholder span:last-child {
  font-size: 0.8rem;
  font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    min-height: auto;
  }
  .hero-content {
    padding: 6rem 1.5rem 3rem;
    max-width: 100%;
  }
  .hero-visual {
    width: 100%;
    min-height: 350px;
  }
  .features-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    box-shadow: var(--shadow-md);
    transform: translateY(-110%);
    transition: transform 0.35s ease;
    border-bottom: 1px solid var(--green-pale);
  }
  .nav-links.open {
    transform: translateY(0);
  }
  .nav-links a {
    padding: 1rem;
    border-radius: 0;
    border-bottom: 1px solid var(--green-pale);
  }
  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: 2rem;
  }
  .hero-stats {
    gap: 1.25rem;
  }
  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .p1,
  .p2,
  .p3 {
    display: none;
  }
  .hero-visual {
    display: none;
  }

  .features-strip {
    grid-template-columns: 1fr 1fr;
  }
  .feature-item {
    padding: 1.25rem 1rem;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .about-image-block {
    grid-template-columns: 1fr;
  }
  .about-img-wrap.small {
    display: none;
  }

  .banner-inner {
    flex-direction: column;
    text-align: center;
  }
  .banner-logo {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-products {
    display: none;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .section-container {
    padding: 3rem 1rem;
  }

  .contact-form-wrap {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .features-strip {
    grid-template-columns: 1fr;
  }
  .feature-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .hero-content {
    padding: 5rem 1rem 2.5rem;
  }
  .filter-bar {
    gap: 0.5rem;
  }
  .filter-btn {
    font-size: 0.8rem;
    padding: 0.45rem 0.9rem;
  }
  .detail-btns {
    flex-direction: column;
  }
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
/* ===== WHATSAPP CONTAINER ===== */
.whatsapp-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

/* ===== FLOAT BUTTON ===== */
.whatsapp-float {
  background: #25d366;
  border: none;
  border-radius: 50%;
  padding: 12px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-float img {
  width: 30px;
}

/* ===== POPUP BOX ===== */
.whatsapp-popup {
  width: 300px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  position: absolute;
  bottom: 70px;
  right: 0;
  display: none;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

/* HEADER */
.wp-header {
  background: #075e54;
  color: #fff;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wp-header img {
  width: 40px;
  border-radius: 50%;
}

.wp-header h4 {
  margin: 0;
  font-size: 14px;
}

.wp-header .online {
  font-size: 12px;
  color: #25d366;
}

.wp-header button {
  margin-left: auto;
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

/* BODY */
.wp-body {
  padding: 15px;
  font-size: 14px;
  background: #f1f1f1;
}

/* FOOTER */
.wp-footer {
  padding: 10px;
  text-align: center;
}

.wp-footer a {
  display: block;
  background: #25d366;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

/*

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
  background: #25d366;
  border: none;
  border-radius: 50%;
  padding: 14px;
  cursor: pointer;
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);

  /* smooth hover */
  transition: transform 0.3s ease;
}

/* ICON */
.whatsapp-float img {
  width: 32px;
  height: 32px;
}

/* HOVER EFFECT */
.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ===== GLOW ANIMATION ===== */
.whatsapp-float::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.6);
  z-index: -1;

  animation: pulseGlow 2s infinite;
}

/* SECOND RING (MORE PROFESSIONAL) */
.whatsapp-float::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  z-index: -2;

  animation: pulseGlow 2s infinite 1s; /* delay */
}

/* KEYFRAMES */
@keyframes pulseGlow {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.8);
    opacity: 0;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;

  background: rgba(253, 250, 246, 0.9);
  backdrop-filter: blur(14px);

  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 0.8rem 1.5rem;

  display: flex;
  align-items: center;
  gap: 1.2rem;
}

/* ================= LOGO ================= */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #52b788;
}

.logo-text {
  font-weight: 700;
  font-size: 1rem;
  color: #1a4a2e;
}

/* ================= MENU (DESKTOP) ================= */
.nav-links {
  display: flex;
  gap: 1rem;
  margin-left: auto;
  list-style: none;
}

.nav-links li a {
  text-decoration: none;
  font-weight: 600;
  color: #4a4a4a;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  transition: 0.3s;
}

.nav-links li a:hover {
  background: #d8f3dc;
  color: #1a4a2e;
}

/* ================= CART ================= */
.cart-btn {
  background: #d8f3dc;
  border-radius: 50px;
  padding: 6px 12px;
  font-weight: 700;
  cursor: pointer;
}

/* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1101;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: #1a4a2e;
  border-radius: 2px;
  transition: 0.35s;
  -webkit-transition: 0.35s;
  -moz-transition: 0.35s;
  -ms-transition: 0.35s;
  -o-transition: 0.35s;
}

/* ===== X ANIMATION ===== */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
  -webkit-transform: rotate(-45deg) translate(7px, -7px);
  -moz-transform: rotate(-45deg) translate(7px, -7px);
  -ms-transform: rotate(-45deg) translate(7px, -7px);
  -o-transform: rotate(-45deg) translate(7px, -7px);
}

/* ================= OVERLAY ================= */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s;
  z-index: 998;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/* ================= MOBILE MENU ================= */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(
      135deg,
      rgba(27, 67, 50, 0.95),
      rgba(45, 106, 79, 0.92),
      rgba(82, 183, 136, 0.85)
    );
    color: #ffffff;
    backdrop-filter: blur(16px);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    padding: 5rem 1.5rem;
    gap: 1rem;
    transition: 0.35s ease;
    z-index: 999;
    -webkit-transition: 0.35s ease;
    -moz-transition: 0.35s ease;
    -ms-transition: 0.35s ease;
    -o-transition: 0.35s ease;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links li a {
    display: block;
    padding: 1rem;
    border-radius: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-links li a:hover {
    background: #d8f3dc;
  }

  .hamburger span {
    color: #ffffff;
  }

  .cart-btn {
    margin-left: auto;
  }

  .nav-links li a {
    color: #ffffff; /* ✅ make text white */
    font-weight: 700;
  }

  .nav-links li a:hover {
    background: rgba(255, 255, 255, 0.12); /* soft hover */
    color: #ffffff;
  }

  .nav-links {
    gap: 0.3rem; /* ↓ smaller gap */
    padding: 4rem 1rem; /* slightly tighter */
  }

  .nav-links li a {
    padding: 0.7rem 1rem; /* ↓ reduce item height */
  }

  .hamburger.active span {
    background: #fff;
  }
}
