/* =========================================================
   COVAI COTTONS — Main Stylesheet
   Color System:
      --cream:  #FAF8F5  (background)
      --green:  #2D5A27  (primary/headings)
      --gold:   #C9A84C  (accent)
     --sand:   #E8E0D5  (borders/dividers)
     --charcoal:#2C2C2C (body text)
     --white:  #FFFFFF
   Fonts: Cormorant Garamond (headings) + Inter (body)
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ── CSS Variables ───────────────────────────────────── */
:root {
  --cream: #FAF8F5;
  --green: #2D5A27;
  --green-lt: #3E7236;
  --gold: #C9A84C;
  --gold-lt: #e2c46e;
  --sand: #E8E0D5;
  --charcoal: #2C2C2C;
  --grey: #7A7A7A;
  --white: #FFFFFF;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1280px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Typography ───────────────────────────────────────── */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  color: var(--green);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
}

h4 {
  font-size: 1.2rem;
}

p {
  color: var(--charcoal);
  font-size: 0.95rem;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: var(--transition);
  text-transform: uppercase;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-lt);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}

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

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  flex: 1;
  justify-content: center;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.btn-call {
  background: transparent;
  color: var(--green);
  border: 1px solid var(--green);
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  flex: 1;
  justify-content: center;
}

.btn-call:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-1px);
}

/* ── Bottom Bar ─────────────────────────────────────── */
.bottom-bar {
  background: var(--green);
  color: var(--white);
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom-bar-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  font-size: 1.1rem; /* Big text */
  font-weight: 500;
}

.bottom-bar-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  white-space: nowrap;
}

.bottom-bar-item span:first-child {
  color: var(--gold);
  font-size: 1.2rem;
}

.bottom-bar-item a {
  color: var(--white);
  transition: var(--transition);
}

.bottom-bar-item a:hover {
  color: var(--gold);
}

@media (max-width: 768px) {
  .bottom-bar-items {
    gap: 1rem;
    font-size: 1rem;
    flex-direction: column;
    text-align: center;
  }
}

/* ── Navigation ───────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sand);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.navbar.nav-hidden {
  transform: translateY(-100%);
  pointer-events: none; /* Prevent interaction while hidden */
}


.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  width: 28px;
  height: 28px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
}

.logo-img {
  height: 60px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
  /* Original red color from SVG — no filter applied */
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  color: #da251d;
}

.logo-text span:first-child {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: #da251d;
  letter-spacing: 0.02em;
}

.logo-text span:last-child {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.navbar-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition);
}

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

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--green);
}

.navbar-links a:hover::after,
.navbar-links a.active::after {
  width: 100%;
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar-cta a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

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

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 120px; /* Desktop height by default */
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--sand);
  padding: 1.5rem 2rem;
  flex-direction: column;
  gap: 1.25rem;
  z-index: 999;
}

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

.mobile-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  text-transform: uppercase;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--sand);
}

.mobile-menu-contact {
  margin-top: auto;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 2px solid var(--sand);
}

.mobile-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--green);
  font-weight: 500;
}

.mobile-contact-item span:first-child {
  font-size: 1.1rem;
}

.mobile-contact-item a:hover {
  color: var(--gold);
}

/* ── Hero Section ─────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f0ece5 0%, var(--cream) 50%, #e8f0e7 100%);
  z-index: 0;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.04;
  background-image: repeating-linear-gradient(45deg,
      var(--green) 0px,
      var(--green) 1px,
      transparent 1px,
      transparent 40px);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: 4rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero-text {
  padding-right: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(45, 90, 39, 0.08);
  border: 1px solid rgba(45, 90, 39, 0.2);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.5rem;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--green);
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--sand);
}

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

.stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--green);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 0.25rem;
}

.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.hero-img-main {
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 320px;
  background: var(--sand);
}

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

.hero-img-sm {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 160px;
  background: var(--sand);
}

.hero-img-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-cert-badge {
  position: absolute;
  bottom: 1.5rem;
  left: -1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 5;
}

.cert-icon {
  font-size: 1.75rem;
}

.cert-text span {
  display: block;
  font-size: 0.7rem;
  color: var(--grey);
}

.cert-text strong {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
}

/* ── Section Shared ───────────────────────────────────── */
section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.section-header p {
  color: var(--grey);
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.8;
}

/* ── Features Strip ───────────────────────────────────── */
.features-strip {
  background: var(--green);
  padding: 2.5rem 0;
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--white);
}

.feature-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}

.feature-item h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.feature-item p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
}

/* ── Product Cards ────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

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

.product-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--sand);
}

.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.05);
}

.product-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

.product-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-category-pill {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.product-card-body h3 {
  font-size: 1.15rem;
  color: var(--green);
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.product-card-body p {
  font-size: 0.83rem;
  color: var(--grey);
  line-height: 1.65;
  flex: 1;
}

.product-moq {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: var(--green);
  font-weight: 500;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--sand);
}

.product-moq::before {
  content: '📦';
  font-size: 0.8rem;
}

.product-card-actions {
  display: flex;
  gap: 0.75rem;
  padding: 1rem 1.5rem 1.5rem;
}

/* ── Category Filters ─────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.55rem 1.4rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: 1.5px solid var(--sand);
  background: var(--white);
  color: var(--grey);
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(45, 90, 39, 0.2);
}

/* ── About Section ────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 480px;
  background: var(--sand);
}

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

.about-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-md);
  background: var(--sand);
}

.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content .section-label {
  margin-bottom: 1rem;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--grey);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 2rem 0;
}

.pillar {
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
}

.pillar-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pillar h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 0.25rem;
}

.pillar p {
  font-size: 0.78rem;
  color: var(--grey);
}

/* ── Jute Benefits Grid ───────────────────────────────── */
.jute-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.jute-benefit {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  border: 1px solid rgba(201, 168, 76, 0.15);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.jute-benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(45, 90, 39, 0.2);
}

.jute-benefit-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.jute-benefit h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.jute-benefit p {
  font-size: 0.82rem;
  color: var(--grey);
  line-height: 1.7;
}

/* ── Testimonials / CTA ───────────────────────────────── */
.cta-section {
  background: var(--green);
  text-align: center;
  padding: 5rem 2rem;
}

.cta-section h2,
.cta-section p,
.cta-section .section-label {
  color: var(--white);
}

.cta-section .section-label {
  color: var(--gold-lt);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.75);
  margin: 1rem 0 2.5rem;
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-light {
  background: var(--white);
  color: var(--green);
}

.btn-light:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

/* ── Footer ───────────────────────────────────────────── */
.footer {
  background: #FAFAFA;
  color: #2C2C2C;
  padding: 4rem 0 2rem;
  border-top: 3px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-mark {
  background: rgba(201, 168, 76, 0.15);
}

.footer-brand .logo-text span:first-child {
  color: #da251d;
}

.footer-brand .logo-text span:last-child {
  color: var(--gold);
}

.footer-brand p {
  color: rgba(44, 44, 44, 0.7);
  font-size: 0.85rem;
  margin-top: 1rem;
  line-height: 1.8;
}

.footer-col h4 {
  color: #1a1a1a;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  color: #444444;
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--green);
}

.footer-contact li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: #444444;
  margin-bottom: 0.75rem;
  align-items: flex-start;
}

.footer-contact li span:first-child {
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid #e0e0e0;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: #666666;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom a {
  color: var(--green);
}

/* ── Floating Buttons ─────────────────────────────────── */
.floating-buttons {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 500;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  transition: var(--transition);
  position: relative;
}

.float-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.float-btn svg {
  width: 24px;
  height: 24px;
}

.float-whatsapp {
  background: #25D366;
}

.float-call {
  background: var(--green);
}

.float-tooltip {
  position: absolute;
  right: 64px;
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.float-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right: none;
  border-left-color: var(--charcoal);
}

.float-btn:hover .float-tooltip {
  opacity: 1;
}

/* ── Scroll Animations ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ── Page Hero (inner pages) ──────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--green) 0%, #3E7236 100%);
  padding: 8rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg,
      rgba(255, 255, 255, 0.03) 0px,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 40px);
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4rem);
  position: relative;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  margin-top: 1rem;
  position: relative;
}

/* ── Contact Page ─────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-card {
  background: var(--green);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  color: var(--white);
  position: sticky;
  top: 100px;
}

.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.contact-info-card>p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-text strong {
  color: var(--white);
  font-size: 0.85rem;
  display: block;
  margin-bottom: 0.15rem;
}

.contact-detail-text span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
}

.contact-form-wrap {
  padding: 0;
}

.contact-form-wrap h3 {
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: var(--white);
  color: var(--charcoal);
  transition: border-color var(--transition);
}

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

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

.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 2rem;
  box-shadow: var(--shadow-sm);
}

.map-wrap iframe {
  display: block;
}

/* ── About Page ───────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  padding: 2.5rem;
  border: 1px solid var(--sand);
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(45, 90, 39, 0.2);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.value-card p {
  color: var(--grey);
  font-size: 0.88rem;
  line-height: 1.75;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

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

.process-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.process-step h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.82rem;
  color: var(--grey);
  line-height: 1.7;
}

/* ── Admin Panel ──────────────────────────────────────── */
.admin-body {
  background: #f4f5f7;
}

.admin-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  background: var(--green);
  padding: 2rem 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.admin-sidebar-logo {
  padding: 0 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
}

.admin-sidebar-logo span {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 600;
}

.admin-sidebar-logo small {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
}

.admin-nav a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.admin-nav a:hover,
.admin-nav a.active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-left-color: var(--gold);
}

.admin-nav a .nav-icon {
  font-size: 1.1rem;
}

.admin-main {
  padding: 2.5rem;
  overflow-y: auto;
}

.admin-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}

.admin-topbar h1 {
  font-size: 1.8rem;
  color: var(--charcoal);
}

.admin-topbar p {
  color: var(--grey);
  font-size: 0.85rem;
}

.admin-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.admin-card h2 {
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.admin-card .card-subtitle {
  color: var(--grey);
  font-size: 0.82rem;
  margin-bottom: 1.5rem;
}

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

.admin-table th {
  background: var(--cream);
  padding: 0.85rem 1rem;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
  border-bottom: 2px solid var(--sand);
}

.admin-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--sand);
  font-size: 0.88rem;
  vertical-align: middle;
}

.admin-table tr:hover td {
  background: var(--cream);
}

.admin-table .product-thumb {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--sand);
}

.admin-table .product-thumb-placeholder {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.action-btn {
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 500;
  transition: var(--transition);
}

.action-edit {
  background: rgba(45, 90, 39, 0.08);
  color: var(--green);
}

.action-edit:hover {
  background: var(--green);
  color: var(--white);
}

.action-delete {
  background: rgba(220, 50, 50, 0.08);
  color: #c0392b;
}

.action-delete:hover {
  background: #c0392b;
  color: var(--white);
}

.admin-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.admin-form .form-group {
  margin-bottom: 1rem;
}

.admin-form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.35rem;
  letter-spacing: 0.03em;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.88rem;
  background: var(--cream);
  color: var(--charcoal);
  transition: border-color var(--transition);
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
}

.admin-form textarea {
  min-height: 100px;
  resize: vertical;
}

.image-upload-area {
  border: 2px dashed var(--sand);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--cream);
}

.image-upload-area:hover {
  border-color: var(--green);
  background: rgba(45, 90, 39, 0.03);
}

.image-upload-area p {
  color: var(--grey);
  font-size: 0.82rem;
  margin-top: 0.5rem;
}

.image-upload-area .upload-icon {
  font-size: 2rem;
}

.image-preview-wrap {
  margin-top: 1rem;
}

.image-preview {
  max-height: 120px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--sand);
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
}

.badge-red {
  background: rgba(45, 90, 39, 0.1);
  color: var(--green);
}

.badge-gold {
  background: rgba(201, 168, 76, 0.15);
  color: #8a6e1e;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.stat-card .stat-num {
  color: var(--green);
  font-size: 2.5rem;
}

.stat-card .stat-label {
  color: var(--grey);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── Admin Login ──────────────────────────────────────── */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1b3617 0%, #2D5A27 100%);
}

.login-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.login-card .logo-mark {
  margin: 0 auto 1rem;
  width: 56px;
  height: 56px;
  font-size: 1.5rem;
}

.login-card h1 {
  font-size: 1.8rem;
  margin-bottom: 0.25rem;
}

.login-card p {
  color: var(--grey);
  font-size: 0.85rem;
  margin-bottom: 2rem;
}

.login-form .form-group {
  text-align: left;
  margin-bottom: 1.25rem;
}

.login-error {
  color: #c0392b;
  font-size: 0.82rem;
  margin-top: 0.75rem;
  display: none;
}

/* ── No products state ────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  grid-column: 1 / -1;
}

.empty-state p {
  color: var(--grey);
  font-size: 0.95rem;
}

/* ── Toast ────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--green);
  color: var(--white);
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  z-index: 9999;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

.toast.error {
  background: #c0392b;
}

/* ── Floating Buttons ─────────────────────────────────── */
.floating-buttons {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
}

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.float-whatsapp {
  background: #25D366;
}

.float-call {
  background: var(--green);
}

.float-tooltip {
  position: absolute;
  right: 120%;
  background: var(--charcoal);
  color: var(--white);
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  pointer-events: none;
}

.float-btn:hover .float-tooltip {
  opacity: 1;
  visibility: visible;
}

.float-btn svg {
  width: 28px;
  height: 28px;
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 6rem;
    min-height: auto;
  }

  .hero-visual {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0;
  }

  .hero-img-main {
    grid-column: 1 / -1;
    height: 280px;
    border-radius: var(--radius-md);
  }

  .hero-img-sm {
    display: none;
  }

  .hero-cert-badge {
    display: none;
  }

  .hero-text {
    padding-right: 0;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }

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

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

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

  .about-visual {
    display: none;
  }

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

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

  .jute-benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .admin-stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  .navbar-links,
  .navbar-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .hero-img-main {
    height: 220px;
  }

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

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

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

  .contact-info-card {
    position: static;
  }

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

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

  .jute-benefits-grid {
    grid-template-columns: 1fr;
  }

  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .admin-stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  section {
    padding: 4rem 0;
  }

  .hero-img-main {
    height: 180px;
  }

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

  .admin-stats {
    grid-template-columns: 1fr;
  }

  .about-pillars {
    grid-template-columns: 1fr;
  }
}
 / *    % %  E n h a n c e d   B o t t o m   B a r   R e s p o n s i v e n e s s    % %  * / 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
     . m o b i l e - m e n u   { 
         t o p :   1 6 4 p x   ! i m p o r t a n t ; 
     } 
     . h e r o   { 
         p a d d i n g - t o p :   1 6 4 p x   ! i m p o r t a n t ; 
     } 
     . p a g e - h e r o   { 
         p a d d i n g - t o p :   1 6 4 p x   ! i m p o r t a n t ; 
     } 
 }  
 