/* ============================================================
   Akij Eco Lifestyle Ltd. — Main Stylesheet
   Author: Frontend Team
   Description: Premium eco-friendly product website styles
   ============================================================ */

/* ---- Google Fonts are loaded via HTML <link> ---- */

/* ============================================================
   0. Custom Cursor
   ============================================================ */
* { cursor: none !important; }

/* ---- Leaf icon cursor dot ---- */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 26px;
  height: 26px;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%) rotate(-35deg);
  transition: width 0.2s ease, height 0.2s ease,
              opacity 0.25s ease, transform 0.2s ease,
              filter 0.2s ease;
  will-change: left, top;
  filter: drop-shadow(0 0 6px rgba(46,125,50,0.9))
          drop-shadow(0 0 14px rgba(46,125,50,0.45));
}
.cursor-dot svg {
  width: 100%;
  height: 100%;
  fill: #2e7d32;
  transition: fill 0.2s ease;
}

/* Outer trailing ring */
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999998;
  transform: translate(-50%, -50%);
  will-change: left, top;

  /* Rotating conic-gradient border trick */
  background: conic-gradient(
    from 0deg,
    rgba(184,135,70,0.9) 0%,
    rgba(46,125,50,0.9) 35%,
    rgba(240,192,96,0.8) 65%,
    rgba(184,135,70,0.9) 100%
  );
  animation: cursorSpin 3s linear infinite;

  /* mask the inside to create a border-only look */
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2.5px), #fff calc(100% - 2.5px));
          mask: radial-gradient(farthest-side, transparent calc(100% - 2.5px), #fff calc(100% - 2.5px));

  transition: width 0.35s cubic-bezier(0.23,1,0.32,1),
              height 0.35s cubic-bezier(0.23,1,0.32,1),
              opacity 0.3s ease;
}

/* Second static glow ring */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999997;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(46,125,50,0.12) 0%,
    rgba(184,135,70,0.06) 50%,
    transparent 75%
  );
  transition: width 0.5s cubic-bezier(0.23,1,0.32,1),
              height 0.5s cubic-bezier(0.23,1,0.32,1),
              opacity 0.3s ease;
  will-change: left, top;
}

/* Hover label inside ring */
.cursor-label {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 999997;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transition: opacity 0.2s ease;
  white-space: nowrap;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
  will-change: left, top;
}

/* Click ripple burst */
.cursor-ripple {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999996;
  transform: translate(-50%, -50%) scale(0);
  border: 1.5px solid rgba(184,135,70,0.7);
  width: 10px;
  height: 10px;
  animation: cursorRippleBurst 0.55s cubic-bezier(0.23,1,0.32,1) forwards;
}
@keyframes cursorRippleBurst {
  0%   { transform: translate(-50%,-50%) scale(0);  opacity: 1; }
  100% { transform: translate(-50%,-50%) scale(8);  opacity: 0; }
}

@keyframes cursorSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ---- HOVER STATE ---- */
body.cursor-hover .cursor-dot {
  width: 30px;
  height: 30px;
  transform: translate(-50%, -50%) rotate(-10deg) scale(1.15);
  filter: drop-shadow(0 0 8px rgba(184,135,70,0.95))
          drop-shadow(0 0 20px rgba(184,135,70,0.5));
}
body.cursor-hover .cursor-dot svg {
  fill: #b88746;
}
body.cursor-hover .cursor-ring {
  width: 64px;
  height: 64px;
  background: conic-gradient(
    from 0deg,
    rgba(46,125,50,1) 0%,
    rgba(240,192,96,1) 40%,
    rgba(46,125,50,1) 70%,
    rgba(240,192,96,1) 100%
  );
  animation: cursorSpin 1.6s linear infinite;
}
body.cursor-hover .cursor-glow {
  width: 110px;
  height: 110px;
  background: radial-gradient(
    circle,
    rgba(184,135,70,0.18) 0%,
    rgba(46,125,50,0.1) 50%,
    transparent 75%
  );
}
body.cursor-hover .cursor-label {
  opacity: 1;
}

/* ---- CLICK STATE ---- */
body.cursor-click .cursor-dot {
  width: 22px;
  height: 22px;
  transform: translate(-50%, -50%) rotate(-55deg) scale(0.9);
  filter: drop-shadow(0 0 10px rgba(240,192,96,0.95))
          drop-shadow(0 0 24px rgba(184,135,70,0.6));
}
body.cursor-click .cursor-dot svg {
  fill: #f0c060;
}
body.cursor-click .cursor-ring {
  width: 32px;
  height: 32px;
  animation: cursorSpin 0.6s linear infinite;
}
body.cursor-click .cursor-glow {
  width: 52px;
  height: 52px;
}

/* ---- HIDE on touch devices ---- */
@media (hover: none) and (pointer: coarse) {
  .cursor-dot, .cursor-ring, .cursor-glow, .cursor-label { display: none !important; }
  * { cursor: auto !important; }
}

/* ============================================================
   1. CSS Custom Properties (Design Tokens)
   ============================================================ */
:root {
  --primary-green: #2e7d32;
  --deep-forest: #1b5e20;
  --natural-beige: #f4efe6;
  --jute-brown: #b88746;
  --dark-charcoal: #222222;
  --soft-white: #ffffff;
  --light-gray: #f7f7f7;
  --text-muted: #6c757d;
  --border-color: #e0d7cc;
  --shadow-sm: 0 2px 12px rgba(46, 125, 50, 0.08);
  --shadow-md: 0 6px 30px rgba(46, 125, 50, 0.13);
  --shadow-lg: 0 16px 48px rgba(46, 125, 50, 0.18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
}

/* ============================================================
   2. Base Reset & Global Styles
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark-charcoal);
}

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

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ============================================================
   3. Utility Classes
   ============================================================ */
.text-primary-green {
  color: var(--primary-green) !important;
}
.text-jute-brown {
  color: var(--jute-brown) !important;
}
.bg-natural-beige {
  background-color: var(--natural-beige) !important;
}
.bg-light-gray {
  background-color: var(--light-gray) !important;
}
.section-padding {
  padding: 90px 0;
}
.section-padding-sm {
  padding: 60px 0;
}

/* Section Headings */
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--dark-charcoal);
  margin-bottom: 0.5rem;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-green);
  background: rgba(46, 125, 50, 0.1);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.divider-leaf {
  width: 50px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-green),
    var(--jute-brown)
  );
  border-radius: 4px;
  margin: 16px auto 0;
}
.divider-leaf.left {
  margin-left: 0;
  margin-right: auto;
}

/* ============================================================
   4. Buttons
   ============================================================ */
.btn-eco {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-green);
  color: var(--soft-white);
  border: 2px solid var(--primary-green);
  padding: 12px 30px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-eco:hover,
.btn-eco:focus {
  background: var(--deep-forest);
  border-color: var(--deep-forest);
  color: var(--soft-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 94, 32, 0.28);
}

.btn-eco-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  padding: 12px 30px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-eco-outline:hover,
.btn-eco-outline:focus {
  background: var(--primary-green);
  color: var(--soft-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 94, 32, 0.2);
}

.btn-eco-brown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--jute-brown);
  color: var(--soft-white);
  border: 2px solid var(--jute-brown);
  padding: 10px 24px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-eco-brown:hover {
  background: #9a702f;
  border-color: #9a702f;
  color: var(--soft-white);
  transform: translateY(-2px);
}

.btn-eco-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--soft-white);
  color: var(--primary-green);
  border: 2px solid var(--soft-white);
  padding: 12px 30px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-eco-white:hover {
  background: var(--natural-beige);
  border-color: var(--natural-beige);
  color: var(--deep-forest);
  transform: translateY(-2px);
}

/* ============================================================
   5. Top Contact Bar
   ============================================================ */
.top-bar {
  background: var(--deep-forest);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8rem;
  padding: 7px 0;
}
.top-bar a {
  color: rgba(255, 255, 255, 0.88);
}
.top-bar a:hover {
  color: var(--soft-white);
}
.top-bar .top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.top-bar .top-bar-item i {
  color: var(--jute-brown);
  font-size: 0.82rem;
}

/* ============================================================
   6. Navigation / Header
   ============================================================ */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.main-navbar {
  background: var(--soft-white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
  padding: 14px 0;
  transition: var(--transition);
}
.main-navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

/* Logo */
.navbar-brand .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.navbar-brand .logo-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary-green);
  letter-spacing: -0.01em;
}
.navbar-brand .logo-tag {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--jute-brown);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--deep-forest)
  );
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--soft-white);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Nav Links */
.main-navbar .nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--dark-charcoal);
  padding: 6px 14px !important;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}
.main-navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-green);
  border-radius: 2px;
  transition: var(--transition);
}
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
  color: var(--primary-green);
  background: rgba(46, 125, 50, 0.06);
}
.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after {
  width: 60%;
}
.navbar-toggler {
  border: 1.5px solid var(--border-color) !important;
  padding: 6px 10px;
}
.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.2) !important;
}

/* ============================================================
   7. Hero Section
   ============================================================ */
.hero-section {
  background: linear-gradient(
      135deg,
      rgba(27, 94, 32, 0.9) 0%,
      rgba(46, 125, 50, 0.82) 100%
    ),
    url("../images/banners/hero-bg.jpg") center/cover no-repeat;
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Jute texture overlay */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.015) 2px,
      rgba(255, 255, 255, 0.015) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.015) 2px,
      rgba(255, 255, 255, 0.015) 4px
    );
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--soft-white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}
.hero-badge i {
  color: #a5d6a7;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--soft-white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero-title span {
  color: #a5d6a7;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--soft-white);
  display: block;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero image card */
.hero-image-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 20px;
  backdrop-filter: blur(10px);
}
.hero-image-card img {
  border-radius: var(--radius-md);
  width: 100%;
  object-fit: cover;
  min-height: 400px;
}

/* ============================================================
   8. About / Intro Strip
   ============================================================ */
.intro-strip {
  background: var(--natural-beige);
  border-top: 4px solid var(--primary-green);
}
.intro-icon-box {
  width: 52px;
  height: 52px;
  background: var(--primary-green);
  color: var(--soft-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.intro-strip .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.intro-strip .feature-item h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 3px;
}
.intro-strip .feature-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================================
   9. About Section (Home)
   ============================================================ */
.about-home-section {
  background: var(--soft-white);
}
.about-img-wrapper {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}
.about-badge-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary-green);
  color: var(--soft-white);
  padding: 18px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge-card .big-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}
.about-badge-card small {
  font-size: 0.72rem;
  opacity: 0.85;
  display: block;
  margin-top: 4px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.95rem;
}
.check-list li i {
  color: var(--primary-green);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ============================================================
   10. Featured Categories
   ============================================================ */
.categories-section {
  background: var(--light-gray);
}
.category-card {
  background: var(--soft-white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  border: 1.5px solid var(--border-color);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.category-card:hover {
  border-color: var(--primary-green);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.category-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(
    135deg,
    rgba(46, 125, 50, 0.1),
    rgba(184, 135, 70, 0.1)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.6rem;
  color: var(--primary-green);
  transition: var(--transition);
}
.category-card:hover .category-icon {
  background: var(--primary-green);
  color: var(--soft-white);
  transform: scale(1.1);
}
.category-card h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.category-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================================
   11. Why Choose Us
   ============================================================ */
.why-us-section {
  background: var(--soft-white);
}
.why-us-card {
  padding: 30px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
}
.why-us-card:hover {
  border-color: var(--primary-green);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.why-us-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary-green), var(--deep-forest));
  color: var(--soft-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}
.why-us-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.why-us-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

/* ============================================================
   12. Product Cards & Grid
   ============================================================ */
.products-section {
  background: var(--light-gray);
}
.product-card {
  background: var(--soft-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: var(--primary-green);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.product-img-wrapper {
  position: relative;
  overflow: hidden;
  background: var(--natural-beige);
  height: 240px;
}
.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrapper img {
  transform: scale(1.06);
}
.product-category-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary-green);
  color: var(--soft-white);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.product-eco-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-green);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.product-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark-charcoal);
}
.product-size {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.product-size i {
  color: var(--jute-brown);
}

/* Color chips */
.color-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.color-chip {
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 50px;
  background: var(--natural-beige);
  color: var(--dark-charcoal);
  border: 1px solid var(--border-color);
  font-weight: 500;
}

.product-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}
.product-actions .btn-eco {
  flex: 1;
  justify-content: center;
  padding: 9px 14px;
  font-size: 0.8rem;
}
.product-actions .btn-eco-outline {
  flex: 1;
  justify-content: center;
  padding: 9px 14px;
  font-size: 0.8rem;
}

/* ============================================================
   13. Filter Bar (Products Page)
   ============================================================ */
.filter-bar {
  background: var(--soft-white);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 32px;
  border: 1.5px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}
.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--border-color);
  background: transparent;
  color: var(--dark-charcoal);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-green);
  border-color: var(--primary-green);
  color: var(--soft-white);
}
.filter-buttons-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.search-input-wrap {
  position: relative;
}
.search-input-wrap i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.9rem;
}
.search-input-wrap input {
  width: 100%;
  padding: 10px 16px 10px 40px;
  border: 1.5px solid var(--border-color);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  transition: var(--transition);
  color: var(--dark-charcoal);
}
.search-input-wrap input:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.12);
}
.search-input-wrap input::placeholder {
  color: var(--text-muted);
}

/* Results counter */
.results-count {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.results-count span {
  font-weight: 700;
  color: var(--primary-green);
}

/* No results */
.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}
.no-results i {
  font-size: 3rem;
  color: var(--border-color);
  margin-bottom: 1rem;
  display: block;
}

/* ============================================================
   14. Product Detail Modal
   ============================================================ */
.product-modal .modal-content {
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.product-modal .modal-header {
  background: var(--natural-beige);
  border-bottom: 1px solid var(--border-color);
  padding: 20px 28px;
}
.product-modal .modal-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--dark-charcoal);
}
.product-modal .btn-close {
  opacity: 0.6;
}
.product-modal .modal-body {
  padding: 28px;
}
.modal-product-img {
  border-radius: var(--radius-md);
  width: 100%;
  height: 320px;
  object-fit: cover;
  background: var(--natural-beige);
}
.modal-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(46, 125, 50, 0.1);
  color: var(--primary-green);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.modal-product-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark-charcoal);
  margin-bottom: 12px;
}
.modal-detail-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
}
.modal-detail-label {
  font-weight: 700;
  color: var(--dark-charcoal);
  min-width: 80px;
  flex-shrink: 0;
}
.modal-detail-value {
  color: var(--text-muted);
}
.eco-note {
  background: rgba(46, 125, 50, 0.06);
  border: 1px solid rgba(46, 125, 50, 0.2);
  border-left: 4px solid var(--primary-green);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin: 20px 0;
  font-size: 0.85rem;
  color: var(--dark-charcoal);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.eco-note i {
  color: var(--primary-green);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.modal-footer-custom {
  border-top: 1px solid var(--border-color);
  padding: 20px 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   15. Sustainability Banner
   ============================================================ */
.sustainability-banner {
  background: linear-gradient(
    135deg,
    var(--deep-forest) 0%,
    var(--primary-green) 60%,
    #388e3c 100%
  );
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.sustainability-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}
.sustainability-banner::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}
.sustainability-banner h2 {
  color: var(--soft-white);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}
.sustainability-banner p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}
.eco-pillars {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.eco-pillar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--soft-white);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}
.eco-pillar i {
  color: #a5d6a7;
}

/* ============================================================
   16. Contact Section / Page
   ============================================================ */
.contact-section {
  background: var(--soft-white);
}
.contact-info-card {
  background: var(--natural-beige);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1.5px solid var(--border-color);
  height: 100%;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
}
.contact-info-item:last-child {
  border-bottom: none;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-green);
  color: var(--soft-white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-info-item h6 {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 3px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.contact-info-item p,
.contact-info-item a {
  font-size: 0.92rem;
  color: var(--dark-charcoal);
  font-weight: 500;
}
.contact-info-item a:hover {
  color: var(--primary-green);
}

/* Contact Form */
.contact-form-card {
  background: var(--soft-white);
  border-radius: var(--radius-md);
  padding: 36px;
  border: 1.5px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}
.form-label-eco {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-charcoal);
  margin-bottom: 6px;
}
.form-control-eco {
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 11px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark-charcoal);
  background: var(--soft-white);
  width: 100%;
  outline: none;
  transition: var(--transition);
}
.form-control-eco:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.12);
}
.form-control-eco.is-invalid {
  border-color: #dc3545;
}
.form-control-eco::placeholder {
  color: #bbb;
}
select.form-control-eco {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236c757d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-success-msg {
  display: none;
  background: rgba(46, 125, 50, 0.08);
  border: 1px solid rgba(46, 125, 50, 0.3);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: var(--primary-green);
  font-weight: 600;
  font-size: 0.92rem;
  margin-top: 16px;
}
.form-success-msg i {
  margin-right: 8px;
}

/* Map placeholder */
.map-placeholder {
  background: var(--natural-beige);
  border-radius: var(--radius-md);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border-color);
  flex-direction: column;
  gap: 12px;
  color: var(--text-muted);
}
.map-placeholder i {
  font-size: 2.5rem;
  color: var(--primary-green);
}
.map-placeholder h6 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-charcoal);
}
.map-placeholder p {
  font-size: 0.82rem;
  margin: 0;
}

/* Google Map iframe */
.map-iframe-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--border-color);
  height: 350px;
}
.map-iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

/* ============================================================
   17. About Page Specifics
   ============================================================ */
.page-hero {
  background: linear-gradient(
    135deg,
    var(--deep-forest) 0%,
    var(--primary-green) 100%
  );
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 30px,
    rgba(255, 255, 255, 0.015) 30px,
    rgba(255, 255, 255, 0.015) 60px
  );
}
.page-hero h1 {
  color: var(--soft-white);
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  max-width: 600px;
}
.breadcrumb-eco {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.breadcrumb-eco a {
  color: rgba(255, 255, 255, 0.7);
}
.breadcrumb-eco a:hover {
  color: var(--soft-white);
}
.breadcrumb-eco span {
  color: rgba(255, 255, 255, 0.5);
}
.breadcrumb-eco .current {
  color: var(--soft-white);
}

/* Mission Vision Cards */
.mv-card {
  background: var(--soft-white);
  border-radius: var(--radius-md);
  padding: 36px;
  border: 1.5px solid var(--border-color);
  height: 100%;
  transition: var(--transition);
}
.mv-card:hover {
  border-color: var(--primary-green);
  box-shadow: var(--shadow-md);
}
.mv-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}
.mv-icon.green {
  background: linear-gradient(135deg, var(--primary-green), var(--deep-forest));
  color: var(--soft-white);
}
.mv-icon.brown {
  background: linear-gradient(135deg, var(--jute-brown), #9a702f);
  color: var(--soft-white);
}
.mv-card h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.mv-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

/* Jute Benefits */
.jute-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--soft-white);
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-color);
  margin-bottom: 16px;
  transition: var(--transition);
}
.jute-benefit-item:hover {
  border-color: var(--primary-green);
  box-shadow: var(--shadow-sm);
}
.jute-benefit-icon {
  width: 44px;
  height: 44px;
  background: rgba(46, 125, 50, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary-green);
  flex-shrink: 0;
}
.jute-benefit-item h6 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.jute-benefit-item p {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin: 0;
}

/* Stat counters */
.stat-box {
  text-align: center;
  padding: 28px 20px;
  background: var(--soft-white);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-color);
}
.stat-box .stat-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary-green);
  display: block;
  line-height: 1;
}
.stat-box .stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 500;
}

/* ============================================================
   18. CTA Section
   ============================================================ */
.cta-section {
  background: var(--natural-beige);
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.cta-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}
.cta-section p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 2rem;
}

/* ============================================================
   19. Footer
   ============================================================ */
.main-footer {
  background: var(--dark-charcoal);
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 0 0;
}
.footer-brand .logo-name {
  color: var(--soft-white);
  font-size: 1.15rem;
}
.footer-brand .logo-tag {
  color: var(--jute-brown);
}
.footer-desc {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  max-width: 280px;
  margin: 16px 0 20px;
}
.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--soft-white);
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 10px;
}
.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--jute-brown);
  border-radius: 2px;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a i {
  font-size: 0.7rem;
  color: var(--primary-green);
}
.footer-links a:hover {
  color: var(--soft-white);
  padding-left: 4px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-contact-item i {
  color: var(--primary-green);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-item span {
  font-size: 0.855rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}
.footer-contact-item a {
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
}
.footer-contact-item a:hover {
  color: var(--soft-white);
}

/* Social Links */
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 1rem;
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  text-decoration: none;
}
.social-link:hover {
  background: var(--primary-green);
  border-color: var(--primary-green);
  color: var(--soft-white);
  transform: translateY(-2px);
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
  padding: 20px 0;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}
.footer-bottom a {
  color: var(--jute-brown);
}
.footer-bottom a:hover {
  color: var(--soft-white);
}

/* ============================================================
   20. Back to Top Button
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--primary-green);
  color: var(--soft-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(46, 125, 50, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  border: none;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}
.back-to-top:hover {
  background: var(--deep-forest);
  transform: translateY(-3px);
}

/* ============================================================
   WhatsApp Floating Button
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 60px;
  left: 28px;
  right: auto;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
  display: block;
}
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}
.whatsapp-float .wa-tooltip {
  position: absolute;
  left: 62px;
  right: auto;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.whatsapp-float .wa-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -6px;
  right: auto;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right-color: #1a1a1a;
  border-left: none;
}
.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
}
/* On mobile, move up above bottom nav */
@media (max-width: 991px) {
  .whatsapp-float {
    bottom: 60px;
    left: 16px;
    right: auto;
  }
}

/* ============================================================
   21. Page Loader
   ============================================================ */
/* ============================================================
   PREMIUM PAGE LOADER
   ============================================================ */
.page-loader {
  position: fixed;
  inset: 0;
  background: linear-gradient(145deg, #0d3b14 0%, #1b5e20 45%, #2e7d32 80%, #388e3c 100%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), visibility 0.6s ease;
}
.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Floating background particles */
.loader-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.loader-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  animation: loaderFloat linear infinite;
}
.loader-particle:nth-child(1) { width:300px; height:300px; left:-80px; top:-80px; animation-duration:12s; background:rgba(255,255,255,0.04); }
.loader-particle:nth-child(2) { width:200px; height:200px; right:-50px; bottom:10%; animation-duration:9s; animation-delay:2s; background:rgba(184,135,70,0.12); }
.loader-particle:nth-child(3) { width:120px; height:120px; left:15%; bottom:20%; animation-duration:7s; animation-delay:1s; }
.loader-particle:nth-child(4) { width:80px;  height:80px;  right:20%; top:15%;    animation-duration:8s; animation-delay:3s; background:rgba(255,255,255,0.08); }
.loader-particle:nth-child(5) { width:160px; height:160px; left:50%;  top:60%;    animation-duration:11s; animation-delay:0.5s; background:rgba(184,135,70,0.07); }
@keyframes loaderFloat {
  0%   { transform: scale(1) translateY(0);   opacity: 0.6; }
  50%  { transform: scale(1.15) translateY(-20px); opacity: 1; }
  100% { transform: scale(1) translateY(0);   opacity: 0.6; }
}

/* Center content */
.loader-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: loaderFadeIn 0.8s ease forwards;
}
@keyframes loaderFadeIn {
  from { opacity:0; transform: translateY(20px); }
  to   { opacity:1; transform: translateY(0); }
}

/* Outer rotating ring */
.loader-ring-outer {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  padding: 5px;
  background: conic-gradient(
    from 0deg,
    #b88746 0%,
    #f0c060 25%,
    #2e7d32 50%,
    #b88746 75%,
    #f0c060 100%
  );
  animation: loaderSpin 2.4s linear infinite;
  box-shadow: 0 0 40px rgba(184,135,70,0.4), 0 0 80px rgba(46,125,50,0.2);
}
@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}

/* Inner ring */
.loader-ring-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(145deg, #0d3b14, #1b5e20);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 4px 16px rgba(0,0,0,0.4);
}

/* Logo inside the ring */
.loader-logo-wrap {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: loaderPulse 2s ease-in-out infinite;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.12);
}
@keyframes loaderPulse {
  0%, 100% { transform: scale(1);    box-shadow: 0 0 0 0 rgba(255,255,255,0.15); }
  50%       { transform: scale(1.06); box-shadow: 0 0 0 12px rgba(255,255,255,0); }
}
.loader-logo {
  width: 36px;
  height: auto;
  filter: brightness(0) invert(1);
  display: block;
}

/* Brand text */
.loader-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.loader-brand-main {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.loader-brand-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  color: rgba(255, 218, 140, 0.85);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Progress bar */
.loader-bar-wrap {
  width: 120px;
  height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 99px;
  overflow: hidden;
}
.loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #b88746, #f0c060, #b88746);
  background-size: 200% 100%;
  border-radius: 99px;
  animation: loaderProgress 2s cubic-bezier(0.25,0.46,0.45,0.94) forwards,
             loaderShimmer 1.2s linear infinite;
}
@keyframes loaderProgress {
  0%   { width: 0%; }
  60%  { width: 80%; }
  100% { width: 100%; }
}
@keyframes loaderShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Animated dots */
.loader-dots {
  display: flex;
  gap: 8px;
}
.loader-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  animation: loaderDot 1.2s ease-in-out infinite;
}
.loader-dots span:nth-child(2) { animation-delay: 0.2s; background: rgba(240,192,96,0.7); }
.loader-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes loaderDot {
  0%, 80%, 100% { transform: scale(0.7); opacity: 0.5; }
  40%           { transform: scale(1.2); opacity: 1; }
}

/* ============================================================
   22. Animation Utilities
   ============================================================ */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Delay helpers */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ============================================================
   23. Misc / Overrides
   ============================================================ */
/* Bootstrap modal override for clean look */
.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.55);
}
.modal-backdrop.show {
  opacity: 1;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 7px;
}
::-webkit-scrollbar-track {
  background: var(--light-gray);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-green);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--deep-forest);
}

/* Image placeholder (before real image loads) */
.img-placeholder {
  background: linear-gradient(
    135deg,
    var(--natural-beige) 0%,
    #e8dece 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--jute-brown);
  font-size: 2.5rem;
}

/* Tooltip style for colors */
[data-bs-toggle="tooltip"] {
  cursor: default;
}

/* ============================================================
   PREMIUM MOBILE NAVIGATION — Slim Floating Pill  v5
   ============================================================ */

@media (max-width: 991.98px) {
  .navbar-toggler  { display: none !important; }
  .navbar-collapse { display: none !important; }
  body { padding-bottom: 84px; }
}

/* ══ KEYFRAMES ══ */
@keyframes pillFloat {
  from { transform: translateX(-50%) translateY(100px); opacity: 0; }
  to   { transform: translateX(-50%) translateY(0);     opacity: 1; }
}
@keyframes pillItemIn {
  from { opacity: 0; transform: translateY(10px) scale(0.85); }
  to   { opacity: 1; transform: translateY(0)     scale(1);   }
}
@keyframes activeGlow {
  0%, 100% { box-shadow: 0 0 0 0   rgba(46,125,50,0), 0 5px 18px rgba(46,125,50,0.55), 0 2px 8px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.25); }
  55%       { box-shadow: 0 0 0 8px rgba(46,125,50,0), 0 5px 18px rgba(46,125,50,0.55), 0 2px 8px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.25); }
}

/* ══ FLOATING PILL ══ */
.mob-bottom-nav {
  display: none;
  position: fixed;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10001;
  width: calc(100% - 32px);
  max-width: 400px;
  border-radius: 100px;
  background: rgba(8, 18, 11, 0.96);
  backdrop-filter: blur(26px) saturate(160%);
  -webkit-backdrop-filter: blur(26px) saturate(160%);
  border: 1px solid rgba(76, 175, 80, 0.13);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.05) inset,
    0 8px 30px rgba(0,0,0,0.55),
    0 2px 8px rgba(0,0,0,0.30);
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  /* slim vertical padding */
  padding: 4px 6px env(safe-area-inset-bottom, 4px);
  animation: pillFloat 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
  overflow: visible;
}
@media (max-width: 991.98px) {
  .mob-bottom-nav { display: flex; }
}

/* ══ TAB ITEMS ══ */
.mob-btm-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 6px;
  flex: 1;
  min-width: 0;
  text-decoration: none !important;
  color: rgba(255,255,255,0.28);
  font-family: var(--font-heading);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  transform: translateY(0);
  transition:
    color     0.28s ease,
    transform 0.36s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
  animation: pillItemIn 0.48s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.mob-btm-item:nth-child(1) { animation-delay: 0.22s; }
.mob-btm-item:nth-child(2) { animation-delay: 0.28s; }
.mob-btm-item:nth-child(3) { animation-delay: 0.16s; }
.mob-btm-item:nth-child(4) { animation-delay: 0.28s; }
.mob-btm-item:nth-child(5) { animation-delay: 0.22s; }

/* Icon circle */
.mob-btm-item i {
  font-size: 1.1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  position: relative;
  z-index: 2;
  transition:
    background  0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow  0.32s ease,
    color       0.26s ease;
}

/* Notch behind raised icon */
.mob-btm-item::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(8, 18, 11, 0.96);
  border: 1px solid rgba(76, 175, 80, 0.13);
  z-index: 1;
  opacity: 0;
  transition:
    transform 0.36s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity   0.24s ease;
}

.mob-btm-item span {
  position: relative;
  z-index: 2;
  line-height: 1;
  transition: color 0.26s ease;
}

/* Tap */
.mob-btm-item:active {
  transform: scale(0.86) !important;
  transition-duration: 0.1s;
}

/* ══ ACTIVE — circle lifts to this tab ══ */
.mob-btm-item.active {
  color: #8dd991;
  transform: translateY(-17px);
  animation: none;
  opacity: 1;
}
.mob-btm-item.active::before {
  transform: translateX(-50%) scale(1);
  opacity: 1;
}
.mob-btm-item.active i {
  color: #fff;
  background: linear-gradient(145deg, #3aab40 0%, #2e7d32 55%, #1b5e20 100%);
  box-shadow:
    0 5px 18px rgba(46,125,50,0.58),
    0 2px 8px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.25);
  animation: activeGlow 3s ease-in-out 0.4s infinite;
}
.mob-btm-item.active span {
  color: #8dd991;
}



