    :root{
      --primary:#2B8C00;
      --primary-dark:#1f5f00;
      --accent:#ffd600;

      --bg:#fffdf5;
      --surface:#ffffff;
      --text:#1f2328;
      --muted:#6b7280;

      --radius-lg: 1.25rem;
      --radius-md: 0.9rem;
      --shadow-sm: 0 6px 18px rgba(0,0,0,.06);
      --shadow-md: 0 14px 44px rgba(0,0,0,.12);
      --ring: 0 0 0 .25rem rgba(43,140,0,.2);
    }

    html{ scroll-behavior:smooth; }
    body{
      font-family:"Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      background:var(--bg);
      color:var(--text);
      line-height:1.65;
    }
    img {
      width: auto;
      max-width: 100%;
    }
    section{ scroll-margin-top: 92px; }
    a{ text-decoration:none; }
    ul {
      list-style-type: disc;
      padding-left: 20px;
    }
    .section-padding{ padding-block: clamp(3rem, 6vw, 5rem); }
    .section-title{
      font-weight:700;
      text-transform:uppercase;
      letter-spacing:.10em;
      font-size:.82rem;
      color:var(--primary);
    }
    .section-heading{
      font-weight:800;
      font-size: clamp(1.7rem, 3.2vw, 2.25rem);
      letter-spacing: -.02em;
    }
    .section-subtitle{
      max-width: 760px;
      margin-inline:auto;
      color: var(--muted);
    }

    /* Buttons */
    /* Buttons / pills */
    .btn-primary-custom {
      background: linear-gradient(135deg, var(--primary-dark), var(--primary));
      border: none;
      color: #fff;
      border-radius: 999px;
      padding: 0.6rem 1.6rem;
      font-weight: 500;
      box-shadow: 0 10px 25px rgba(43, 140, 0, 0.25);
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    }

    .btn-primary-custom:hover {
      transform: translateY(-1px);
      box-shadow: 0 16px 35px rgba(43, 140, 0, 0.3);
      background: linear-gradient(135deg, #246e00, var(--primary));
      color: #fff;
    }

    .btn-pill {
      border-radius: 999px;
    }

    /* Top bar */
    .top-bar{
      background: #fffaf0;
      border-bottom: 1px solid #eee7df;
      font-size: .80rem;
      letter-spacing: .04em;
    }

    /* Inner layout */
    .tophead-menu-bar{
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    /* Links list */
    .top-links{
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      align-items: center;
      gap: .85rem;
    }

    /* Link styling */
    .top-bar a{
      color: #7b1f1f;
      font-weight: 700;
      text-decoration: none;
      padding: .25rem .4rem;
      border-radius: .4rem;
      transition: color .2s ease, background-color .2s ease, transform .2s ease;
    }

    .top-bar a:hover{
      color: #b71c1c;
      background: rgba(183, 28, 28, .08);
    }

    .top-bar a:focus-visible{
      outline: 2px solid rgba(183, 28, 28, .45);
      outline-offset: 2px;
    }
    .lang-select{
      width: 120px;
      height: 28px;
      font-size: .75rem;
      padding-top:0; padding-bottom:0;
    }

    /* NAVBAR */
    .navbar {
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(148, 163, 184, 0.25);
      padding-block: 0.5rem;
      z-index: 1020;
    }

    .navbar-brand img {
      height: 52px;
    }

    .navbar-nav .nav-link {
      font-size: 0.9rem;
      font-weight: 500;
      color: #4b5563;
      padding-inline: 0.9rem;
      position: relative;
      transition: color 0.15s ease;
    }

    .navbar-nav .nav-link::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 0.25rem;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      border-radius: 999px;
      transition: width 0.2s ease, left 0.2s ease;
    }

    .navbar-nav .nav-link:hover {
      color: var(--primary-dark);
    }

    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
      width: 60%;
      left: 20%;
    }

    .nav-icon-btn {
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.6);
      background: rgba(15, 23, 42, 0.03);
      padding: 0.4rem 0.75rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    /* News ticker */
    .latest-news-bar{
      background: var(--primary);
      color:#fff;
      font-size:.92rem;
    }
    .latest-news-label{
      background: var(--accent);
      color:#000;
      font-weight:900;
      text-transform:uppercase;
      padding:.25rem .75rem;
      border-radius:999px;
      font-size:.75rem;
      letter-spacing:.06em;
      white-space:nowrap;
    }

    .ticker-wrapper {
      position: relative;
      overflow: hidden;
      mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
    }

    .ticker-text {
      display: inline-flex;
      gap: 2.5rem;
      white-space: nowrap;
      animation: ticker-move 35s linear infinite;
    }

    .ticker-text a {
      color: #e5e7eb;
      opacity: 0.8;
    }

    .ticker-text a:hover {
      opacity: 1;
    }

    .ticker-text.is-paused {
      animation-play-state: paused;
    }

    @keyframes ticker-move {
      from {
        transform: translateX(0);
      }
      to {
        transform: translateX(-50%);
      }
    }

    #tickerToggle {
      border-color: rgba(148, 163, 184, 0.6);
      color: #e5e7eb;
      padding-inline: 0.9rem;
    }

/* --- HERO SECTION STYLES --- */
#home-banner {
    position: relative;
    overflow: hidden;
}

/* 1. Image Handling - Ensures images cover area without stretching */
.banner-img {
    height: 85vh; /* Takes up 85% of screen height */
    min-height: 500px; /* Fallback for small screens */
    width: 100%;
    object-fit: cover;
    object-position: center;
}

/* 2. The Dark Overlay - Makes text pop */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient: Darker on left (for text), lighter on right */
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

/* 3. Positioning the Text Content */
.carousel-caption {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    align-items: center; /* Vertically Center */
    text-align: left;    /* Align Text Left */
    padding-bottom: 0;   /* Remove default bootstrap padding */
}

/* 4. The "Glass" Card Effect */
.hero-content-box {
    background: rgba(255, 255, 255, 0.1); /* Transparent White */
    backdrop-filter: blur(10px); /* Blurs background behind text */
    border-left: 5px solid var(--accent, #F4B400); /* Gold Accent Line */
    padding: 2.5rem;
    border-radius: 0 15px 15px 0;
    max-width: 750px;
    color: #fff;
}

/* 5. Typography */
.banner-title {
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive Font Size */
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.banner-highlight {
    color: var(--accent, #F4B400);
}

.btn-register-complaint {
    background-color: var(--primary, #0F9D58);
    color: white;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-register-complaint:hover {
    background-color: #0b7440; /* Darker Green */
    transform: translateY(-3px);
    color: white;
}

/* 6. Animations (Fade Up) */
.carousel-item.active .hero-content-box {
    animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .banner-img { height: 70vh; }
    .hero-content-box {
        background: rgba(0,0,0,0.4); /* Darker bg for mobile readability */
        padding: 1.5rem;
        border-radius: 10px;
        margin: 0 15px; /* Add side margins on mobile */
    }
}



/* ----------------------------------- */
/* CONSUMER RIGHTS SECTION */
/* ----------------------------------- */
#rights .section-title {
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.1em;
    text-align: center;
}
#rights .section-heading {
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 1.5rem;
}

#rights .rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.right-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    border: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}
    .right-card i {
      font-size: 6rem;
      color: var(--primary);
      margin-bottom: 0.75rem;
    }
.right-card .card-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.right-card h5 {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
    text-transform: uppercase;
}

.right-card p {
    font-size: 0.9rem;
    color: #616161;
    max-width: 600px;
    margin-bottom: 1rem;
}
.right-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(15, 157, 88, 0.15);;
    border-color: #0F9D58;
}

/* --- WHAT WE DO (refined / modern) --- */
.what-we-do{
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

/* Background layers */
.what-we-do::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:url("../images/background-img-1.jpg");
  background-size:cover;
  background-position:center;
  opacity:.12;
  filter:saturate(1.1) contrast(1.05);
  pointer-events:none;
}

.what-we-do::after{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(60% 60% at 88% 12%, rgba(255,255,255,.14), transparent 60%),
    radial-gradient(55% 55% at 12% 88%, rgba(0,0,0,.25), transparent 65%),
    linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.25));
  pointer-events:none;
}

.what-we-do__inner{
  position:relative;
  z-index:1;
}

/* Kicker */
.what-we-do__kicker{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  letter-spacing:.10em;
  text-transform:uppercase;
  font-weight:800;
  margin-bottom:.75rem;
  opacity:.95;
}

/* Title + paragraph */
.what-we-do__intro h2{
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: .6rem;
  font-size: clamp(1.6rem, 1.15rem + 1.2vw, 2.35rem);
}

.what-we-do__intro p{
  margin-bottom: .9rem;
  color: rgba(255,255,255,.88);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 54ch;
}
.what-we-do__intro ul {
  list-style: none;
  padding-left: 0;
}

.what-we-do__intro ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  margin-right: 10px;
  color: #28a745;
}

.what-we-do__intro ul li {
  font-size: 1.05rem;
  padding-left: 5px;
  margin-bottom: 8px;
}

/* Make outline button look better on dark bg */
.what-we-do__cta .btn-outline-light{
  border-color: rgba(255,255,255,.55);
  color: rgba(255,255,255,.92);
}
.what-we-do__cta .btn-outline-light:hover{
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.75);
}

/* Media card */
.what-we-do__media{
  position:relative;
  padding: .75rem;
}

/* Subtle glow behind image */
.what-we-do__media::before{
  content:"";
  position:absolute;
  inset:-18%;
  background: radial-gradient(closest-side, rgba(255,193,7,.22), transparent 70%);
  filter: blur(14px);
  opacity: .9;
  pointer-events:none;
}

.what-we-do__img{
  position:relative;
  z-index:1;
  width:100%;
  height:auto;
  display:block;
  border-radius: 1rem;
  object-fit: cover;
}

/* Responsive polish */
@media (max-width: 991.98px){
  .what-we-do__media{
    max-width: 560px;
    margin: 0 auto;
  }
  .what-we-do__intro{
    padding: 1.1rem;
  }
}

@media (max-width: 575.98px){
  .what-we-do__intro ul li{
    padding-left: 2.85rem;
  }
  .what-we-do__intro ul li::before{
    left: .65rem;
  }
}


        /* --- 8. PUBLICATIONS --- */
        .pub-card {
            border: none;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: 0.3s;
            background: #fff;
            height: 100%;
        }
        .pub-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
        .pub-img-wrap { overflow: hidden; }
        .pub-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
        .pub-card:hover img { transform: scale(1.05); }
        .pub-body { 
          padding: 1.5rem;
          background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
           }

.pub-body h5, .pub-body p, .pub-body a {
  color: #fff;
}

        /* --- 9. PEOPLE (PRIME MOVERS) FIXED --- */
        .prime-card {
            background: #fff;
            padding: 1.5rem;
            border-radius: var(--radius-lg);
            text-align: center;
            box-shadow: var(--shadow-sm);
            border: 1px solid #eee;
            transition: 0.3s;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .prime-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }
        
        .prime-img-container {
            position: relative;
            margin-bottom: 1.5rem;
            display: inline-block;
        }
        .prime-img-container img {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #fff;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .prime-role-badge {
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary);
            color: #fff;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            padding: 4px 12px;
            border-radius: 20px;
            white-space: nowrap;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            z-index: 2;
        }
        .prime-name { font-weight: 700; font-size: 1.1rem; margin-top: 10px; line-height: 1.2; }
        .prime-desc { font-size: 0.85rem; color: var(--text-light); margin-top: 5px; }

/* Gallery Section */
#gallery {
  background: #f8f9fa;
}

.gallery-list-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.4s ease;
  height: 100%;
}

.gallery-list-wrap:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.gallery-list-wrap .ratio {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.gallery-list-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 12px;
}

.gallery-list-wrap:hover img {
  transform: scale(1.15);
}

/* Gallery Title Overlay */
.gallery-title-box {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: #fff;
  padding: 30px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  z-index: 2;
}

.gallery-list-wrap:hover .gallery-title-box {
  transform: translateY(0);
}

/* Optional: Add icon on hover */
.gallery-wrapper-item::before {
  content: "\f00e";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 40px;
  color: #fff;
  z-index: 3;
  opacity: 0;
  transition: all 0.4s ease;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.gallery-list-wrap:hover::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

/* View More Button */
.btn-pill {
  border-radius: 50px;
  padding: 12px 40px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-dark:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-title-box {
    font-size: 14px;
    padding: 20px 15px 15px;
  }
}

    /* Testimonials */
    /* .testimonial-carousel {
      position: relative;
    }
    .testimonial-card{
      background:#fff;
      border-radius: var(--radius-lg);
      padding: 2.25rem 2rem;
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(17,24,39,.06);
      height: 100%;
    }
    .testimonial-card img{
      width: 78px; height: 78px;
      border-radius: 999px;
      object-fit: cover;
      box-shadow: 0 0 0 4px #fff, 0 0 0 6px var(--accent);
      margin-top: 1rem;
    }
    .quote-icon{ color: var(--accent); } */

/* Card */
.testimonial-card {
  position: relative;
  height: 100%;
  border-radius: 18px;
  padding: 26px 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(2, 6, 23, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.quote-badge {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #206300;
  background: rgba(13, 110, 253, 0.1);
  border: 1px solid rgba(13, 110, 253, 0.18);
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 15.5px;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 18px;
  overflow: hidden;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}

.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(13, 110, 253, 0.2);
  flex: 0 0 auto;
}

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

.meta .name {
  font-weight: 700;
  color: #0f172a;
}

.meta .place {
  font-size: 13px;
  color: #64748b;
}

.testimonial-btn {
  padding: 12px 18px;
  border-radius: 12px;
}

/* Swiper layout tweaks */
.testimonial-swiper {
  padding: 8px 6px 45px; /* space for pagination */
}

.testimonial-swiper .swiper-slide {
  height: auto; /* allow cards to be full height */
}

/* Arrow buttons */
.testimonial-swiper .swiper-button-prev,
.testimonial-swiper .swiper-button-next {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 25px rgba(2, 6, 23, 0.12);
}

.testimonial-swiper .swiper-button-prev:after,
.testimonial-swiper .swiper-button-next:after {
  font-size: 16px;
  color: #0f172a;
}

/* Pagination dots */
.testimonial-swiper .swiper-pagination {
  bottom: 0 !important;
}

.testimonial-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  background: #cbd5e1;
}

.testimonial-swiper .swiper-pagination-bullet-active {
  background: #0d6efd;
}
.testimonial-swiper .swiper-button-prev,
.testimonial-swiper .swiper-button-next {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.testimonial-swiper .swiper-button-prev {
  transform: translate(-10px, -50%);
}
.testimonial-swiper .swiper-button-next {
  transform: translate(10px, -50%);
}

.testimonial-swiper:hover .swiper-button-prev,
.testimonial-swiper:hover .swiper-button-next {
  opacity: 1;
  visibility: visible;
  transform: translate(0, -50%);
}

@media (max-width: 768px) {
  .testimonial-swiper .swiper-button-prev,
  .testimonial-swiper .swiper-button-next {
    opacity: 1;
    visibility: visible;
    transform: translate(0, -50%);
  }
}

/* Optional: hide arrows on small screens */
@media (max-width: 576px) {
  .testimonial-swiper .swiper-button-prev,
  .testimonial-swiper .swiper-button-next {
    display: none;
  }
}

    
    /* Newsletter */
    .newsletter-section{ background: #fff8e1; }
    .newsletter-box{
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(17,24,39,.06);
      background:#fff;
    }
    .form-control:focus{ box-shadow: var(--ring); border-color: rgba(43,140,0,.35); }


    /* Footer */
    footer.footer{
      background: #2B8C00;
      color:#fff;
    }
    .footer-top{
      padding-block: 3.25rem 2rem;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .footer-logo img{ 
      height: 58px; 
      margin-bottom: 1rem;
      filter: brightness(0) invert(1);
    }
.footer-title {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: .10em;
  color: #fff;
  margin-bottom: .9rem;
}
    .footer-list{ list-style:none; padding-left:0; margin-bottom:0; }
    .footer-list li + li{ margin-top:.45rem; }
    .footer-list a{ color:#bdbdbd; font-size:.92rem; }
    .footer-list a:hover{ color:#fff; text-decoration:underline; }
    .footer-contact{ font-size:.92rem; }
    .footer-contact i{ color:#d1d5db; }
    .footer-social a{
      display:inline-flex;
      width: 34px; height: 34px;
      align-items:center; justify-content:center;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.28);
      color:#e5e7eb;
      margin-right:.45rem;
    }
    .footer-social a:hover{ background:#fff; color:#111; }
    .footer-bottom{
      padding-block: 1.1rem;
      font-size:.86rem;
    }
    .footer-bottom a{ color:#bdbdbd; }
    .footer-bottom a:hover{ color:#fff; text-decoration: underline; }

    /* Accessibility + motion */
    @media (prefers-reduced-motion: reduce){
      *{ animation:none !important; transition:none !important; scroll-behavior:auto !important; }
    }
    /* ========= Contact Us Page ========= */
/* =========================
   Contact Us Page (Modern)
   Add to your main CSS file
   ========================= */

.contact_us_area{
  padding: 56px 0;
  background: radial-gradient(900px 240px at 12% 0%, rgba(43,140,0,.12), transparent 60%),
              radial-gradient(900px 240px at 88% 0%, rgba(15,23,42,.08), transparent 60%),
              #f8fafc;
}

.contact_us_inner{
  margin-top: 18px;
}

/* Shared card look */
.contact-card{
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 18px;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

/* Section titles */
.section-title h2{
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 14px;
  letter-spacing: .2px;
}

/* Left info card */
.contact_us_details{
  padding: 22px 20px;
}

.contact-details{
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

.c_details_item{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(180deg, rgba(248,250,252,1) 0%, rgba(255,255,255,1) 100%);
}

.c_details_item .icon{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(43,140,0,.12);
  color: #2B8C00;
  flex: 0 0 38px;
  margin-top: 2px;
}

.c_details_item .text p{
  margin: 0;
  color: #334155;
  font-weight: 600;
  line-height: 1.45;
}

/* Social icons */
.contact-page-social-links{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-icon{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  color: #0f172a;
  box-shadow: 0 10px 22px rgba(15,23,42,.06);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}

.social-icon:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(15,23,42,.10);
  border-color: rgba(43,140,0,.35);
}

/* Right form card */
.contact-form{
  padding: 22px 20px;
}

.contact-us-form .form-control{
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.14);
  padding: 12px 12px;
  font-weight: 600;
  color: #0f172a;
  background: #fff;
  box-shadow: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.contact-us-form .form-control:focus{
  border-color: rgba(43,140,0,.55);
  box-shadow: 0 0 0 4px rgba(43,140,0,.12);
}

/* Textarea */
.contact-us-form textarea.form-control{
  min-height: 140px;
  resize: vertical;
}

/* Submit button */
.btn-submit-design{
  width: 100%;
  padding: 12px 16px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, #1f5f00 0%, #2B8C00 100%);
  font-weight: 800;
  letter-spacing: .2px;
  box-shadow: 0 14px 28px rgba(43,140,0,.18);
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.btn-submit-design:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(43,140,0,.22);
  opacity: .98;
}

/* Alerts spacing */
.contact-us-form .alert{
  border-radius: 14px;
  margin-bottom: 12px;
}

/* Make both columns look consistent */
.contact_us_details,
.contact-form{
  background: transparent;
}

@media (max-width: 991.98px){
  .contact_us_area{ padding: 40px 0; }
}


    /* ========= Videos Page ========= */
.commom-page-space {
  padding: 30px;
}
.video-page-title h1 {
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 700;
  line-height: 1.2;
  color: #2B8A01;
  margin-bottom: 15px;
}
.video-container {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.video-container img {
  border-radius: 12px 0 0;
}
.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(41, 133, 0, 0.6);
  padding: 15px;
  border-radius: 50%;
  color: #fff;
}
.play-icon svg {
  width: 30px;
  height: 30px;
}
.vid-title {
  font-weight: 600;
  text-align: center;
  color: #fff;
  padding: 1.5rem;
  background: linear-gradient(135deg, #1f5f00 0%, #2B8C00 100%);
}

    /* Hover dropdown for desktop only */
@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0; /* aligns under link */
  }

  .navbar .dropdown-menu {
    margin-top: 0;
    border-radius: 14px;
    box-shadow: 0 14px 44px rgba(0,0,0,.12);
    border: 1px solid rgba(148, 163, 184, 0.25);
  }

  /* Optional: slight fade/slide */
  .navbar .dropdown-menu {
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .15s ease, transform .15s ease;
    display: block;          /* keep block for animation */
    visibility: hidden;      /* hide when not hovered */
    pointer-events: none;
  }

  .navbar .dropdown:hover > .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }
}

/* ============================================== */
/* USER DASHBOARD AREA                            */
/* ============================================== */
.user-dashboard-area {
  padding: 48px 0 72px;
  background:
    radial-gradient(900px 280px at 12% 0%, rgba(43,140,0,.10), transparent 60%),
    radial-gradient(900px 280px at 88% 0%, rgba(255,214,0,.12), transparent 60%),
    #f7faf3;
  min-height: 70vh;
}

/* ---------- Sidebar ---------- */
.user-sidebar {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, .07);
  box-shadow: 0 14px 35px rgba(15, 23, 42, .06);
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.user-sidebar__profile {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 18px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff;
}

.user-sidebar__meta { min-width: 0; }
.user-sidebar__meta h6 { color: #fff; }
.user-sidebar__meta small { color: rgba(255,255,255,.78) !important; }

.user-avatar {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  border: 2px solid rgba(255,255,255,.45);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: .5px;
  backdrop-filter: blur(6px);
}

.user-avatar--lg {
  width: 96px;
  height: 96px;
  font-size: 1.85rem;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border: 3px solid #fff;
  box-shadow: 0 10px 24px rgba(43,140,0,.25);
}

.user-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.user-badge--verified {
  background: rgba(255,255,255,.22);
  color: #fff;
  border: 1px solid rgba(255,255,255,.4);
}

.user-card .user-badge--verified {
  background: rgba(43,140,0,.12);
  color: var(--primary-dark);
  border: 1px solid rgba(43,140,0,.25);
}

.user-badge--pending {
  background: rgba(255, 193, 7, .15);
  color: #b88500;
  border: 1px solid rgba(255, 193, 7, .35);
}

.user-sidebar__nav {
  display: flex;
  flex-direction: column;
  padding: 12px 10px 16px;
}

.user-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 12px;
  color: #475569;
  font-weight: 600;
  font-size: .95rem;
  transition: background-color .18s ease, color .18s ease, transform .18s ease;
  position: relative;
}

.user-nav-link:hover {
  background: rgba(43,140,0,.08);
  color: var(--primary-dark);
}

.user-nav-link.is-active {
  background: linear-gradient(135deg, rgba(43,140,0,.12), rgba(255,214,0,.18));
  color: var(--primary-dark);
}

.user-nav-link.is-active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 3px;
  border-radius: 4px;
  background: var(--primary);
}

.user-nav-link__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(15,23,42,.04);
  color: #64748b;
  font-size: .95rem;
  transition: background-color .18s ease, color .18s ease;
}

.user-nav-link:hover .user-nav-link__icon,
.user-nav-link.is-active .user-nav-link__icon {
  background: var(--primary);
  color: #fff;
}

.user-nav-link__label { flex: 1; }

.user-nav-link__chevron {
  color: #cbd5e1;
  font-size: .75rem;
  transition: transform .18s ease, color .18s ease;
}

.user-nav-link:hover .user-nav-link__chevron,
.user-nav-link.is-active .user-nav-link__chevron {
  color: var(--primary);
  transform: translateX(2px);
}

.user-nav-link--danger { color: #b91c1c; }
.user-nav-link--danger:hover {
  background: rgba(220,38,38,.08);
  color: #991b1b;
}
.user-nav-link--danger:hover .user-nav-link__icon {
  background: #dc2626;
  color: #fff;
}

.user-sidebar__divider {
  margin: 8px 6px;
  border-color: rgba(15,23,42,.08);
}

/* ---------- Hero ---------- */
.user-hero {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 32px 36px;
  color: #fff;
  background:
    radial-gradient(60% 60% at 88% 12%, rgba(255,214,0,.25), transparent 60%),
    linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  box-shadow: 0 18px 40px rgba(43,140,0,.22);
}

.user-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  margin-bottom: 14px;
}

.user-hero__title {
  font-weight: 800;
  letter-spacing: -.02em;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  margin-bottom: 8px;
}

.user-hero__title span { color: var(--accent); }

.user-hero__subtitle {
  color: rgba(255,255,255,.88);
  max-width: 56ch;
  margin-bottom: 20px;
  line-height: 1.65;
}

.user-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.user-hero__actions .btn-light {
  color: var(--primary-dark);
  background: #fff;
  border-color: #fff;
}
.user-hero__actions .btn-light:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #1f2328;
}

.user-hero__decor {
  position: absolute;
  right: -30px;
  bottom: -30px;
  font-size: 14rem;
  color: rgba(255,255,255,.07);
  pointer-events: none;
  line-height: 1;
  transform: rotate(-12deg);
}

/* ---------- Page header ---------- */
.user-page-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}

.user-page-header__title {
  font-weight: 800;
  letter-spacing: -.01em;
  color: #0f172a;
  margin: 0;
}

.user-page-header__subtitle { color: #64748b; }

/* ---------- Stat cards ---------- */
.stat-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: 0 10px 24px rgba(15,23,42,.05);
  display: flex;
  align-items: center;
  gap: 14px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}

.stat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(43,140,0,.06));
  pointer-events: none;
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(15,23,42,.10);
}

.stat-card__icon {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  box-shadow: 0 8px 16px rgba(43,140,0,.25);
}

.stat-card--warning .stat-card__icon { background: linear-gradient(135deg, #b88500, #f59f00); box-shadow: 0 8px 16px rgba(245,159,0,.25); }
.stat-card--success .stat-card__icon { background: linear-gradient(135deg, #166534, #22c55e); box-shadow: 0 8px 16px rgba(34,197,94,.25); }
.stat-card--info    .stat-card__icon { background: linear-gradient(135deg, #1e40af, #3b82f6); box-shadow: 0 8px 16px rgba(59,130,246,.25); }

.stat-card__body { display: flex; flex-direction: column; min-width: 0; }
.stat-card__label {
  font-size: .8rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 700;
}
.stat-card__value {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

/* ---------- Generic card ---------- */
.user-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.07);
  box-shadow: 0 12px 30px rgba(15,23,42,.05);
  overflow: hidden;
}

.user-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(15,23,42,.06);
  background: linear-gradient(180deg, #fbfdf8, #fff);
}

.user-card__header h5 {
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -.01em;
}

.user-card__body { padding: 20px 22px; }
.user-card__footer { padding: 16px 22px; border-top: 1px solid rgba(15,23,42,.06); }

/* ---------- Quick actions ---------- */
.quick-action {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.06);
  background: #fff;
  color: #0f172a;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  height: 100%;
}

.quick-action:hover {
  color: #0f172a;
  transform: translateY(-2px);
  border-color: rgba(43,140,0,.35);
  box-shadow: 0 10px 22px rgba(15,23,42,.08);
}

.quick-action__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1rem;
  flex: 0 0 auto;
}

/* ---------- Info list ---------- */
.info-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.info-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(15,23,42,.08);
  min-width: 0;
}

.info-list li:last-child { border-bottom: 0; }

.info-list__label {
  color: #64748b;
  font-weight: 600;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.info-list__label i { color: var(--primary); }

.info-list__value {
  color: #0f172a;
  font-weight: 600;
  text-align: right;
  max-width: 60%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.info-list--compact li { padding: 8px 0; }

/* ---------- Table ---------- */
.user-table thead th {
  background: #f8fafc;
  color: #475569;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-bottom: 1px solid rgba(15,23,42,.08);
  padding: 14px 22px;
}

.user-table tbody td {
  padding: 16px 22px;
  border-color: rgba(15,23,42,.06);
  color: #0f172a;
}

.user-table tbody tr { transition: background-color .15s ease; }
.user-table tbody tr:hover { background-color: #fbfdf6; }

.order-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(43,140,0,.10);
  color: var(--primary);
}

/* ---------- Status pills ---------- */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.status-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.status-pill--success   { background: rgba(34,197,94,.10);  color: #166534; border-color: rgba(34,197,94,.25); }
.status-pill--warning   { background: rgba(245,159,0,.12);  color: #b88500; border-color: rgba(245,159,0,.30); }
.status-pill--info      { background: rgba(59,130,246,.10); color: #1e40af; border-color: rgba(59,130,246,.25); }
.status-pill--primary   { background: rgba(43,140,0,.10);   color: var(--primary-dark); border-color: rgba(43,140,0,.25); }
.status-pill--danger    { background: rgba(220,38,38,.10);  color: #991b1b; border-color: rgba(220,38,38,.25); }
.status-pill--secondary { background: rgba(100,116,139,.12); color: #475569; border-color: rgba(100,116,139,.25); }

/* ---------- Empty state ---------- */
.user-empty {
  padding: 60px 24px;
  text-align: center;
}

.user-empty__icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(43,140,0,.08);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 2rem;
  margin: 0 auto 18px;
}

/* ---------- Forms ---------- */
.user-form .form-label {
  font-weight: 600;
  color: #475569;
  font-size: .9rem;
  margin-bottom: 6px;
}

.user-form .form-control {
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,.14);
  padding: 11px 14px;
  font-weight: 500;
  font-size: .95rem;
  margin-bottom: 0;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.user-form .form-control:focus {
  border-color: rgba(43,140,0,.55);
  box-shadow: 0 0 0 4px rgba(43,140,0,.12);
}

/* ---------- Profile summary ---------- */
.user-profile-summary {
  background: linear-gradient(180deg, #fff, #fbfdf6);
}

/* ---------- Pagination ---------- */
.user-card__footer .pagination {
  margin: 0;
  gap: 4px;
}

.user-card__footer .page-link {
  border-radius: 10px !important;
  border: 1px solid rgba(15,23,42,.08);
  color: #475569;
  font-weight: 600;
  padding: 8px 14px;
}

.user-card__footer .page-item.active .page-link {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .user-sidebar { position: static; }
  .user-hero { padding: 26px 22px; }
  .user-hero__decor { font-size: 10rem; right: -20px; bottom: -20px; }
}

@media (max-width: 575.98px) {
  .user-dashboard-area { padding: 28px 0 56px; }
  .user-card__header,
  .user-card__body,
  .user-card__footer { padding-inline: 16px; }
  .user-table thead th,
  .user-table tbody td { padding-inline: 16px; }
  .stat-card__value { font-size: 1.35rem; }
}

/* ---------- Payment radio options ---------- */
.payment-options {
  display: grid;
  gap: 12px;
}

.payment-option {
  display: block;
  cursor: pointer;
  margin: 0;
}

.payment-option input { position: absolute; opacity: 0; pointer-events: none; }

.payment-option__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1.5px solid rgba(15,23,42,.10);
  background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.payment-option:hover .payment-option__inner {
  border-color: rgba(43,140,0,.35);
}

.payment-option input:checked + .payment-option__inner {
  border-color: var(--primary);
  background: linear-gradient(180deg, rgba(43,140,0,.05), #fff);
  box-shadow: 0 0 0 4px rgba(43,140,0,.10);
}

.payment-option__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  flex: 0 0 auto;
}

/* ---------- Order timeline ---------- */
.user-timeline {
  position: relative;
  padding-left: 22px;
  margin: 0;
}

.user-timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: rgba(43,140,0,.18);
}

.user-timeline > li {
  position: relative;
  padding: 6px 0 18px;
}

.user-timeline > li:last-child { padding-bottom: 0; }

.user-timeline__dot {
  position: absolute;
  left: -22px;
  top: 10px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px rgba(43,140,0,.25);
}

.user-timeline__dot.bg-success { background: var(--primary); }
.user-timeline__dot.bg-info    { background: #3b82f6; }
.user-timeline__dot.bg-warning { background: #f59f00; }
.user-timeline__dot.bg-danger  { background: #dc3545; }

/* ---------- Cart counter (for navbar later, optional) ---------- */
.cart-counter {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(43,140,0,.08);
  color: var(--primary-dark);
}

.cart-counter__badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: #dc3545;
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
}

/* ================================================================
   SEARCH PAGE
   ================================================================ */
.srp-hero {
  background: linear-gradient(135deg, #1E3C18 0%, #2B8C00 60%, #4caf50 100%);
  padding: clamp(2rem, 4vw, 3.5rem) 0;
}

.srp-hero__form { max-width: 680px; margin: 0 auto; }

.srp-hero__input-wrap {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 999px;
  padding: 6px 6px 6px 44px;
  position: relative;
  box-shadow: 0 10px 32px rgba(0,0,0,.18);
}

.srp-hero__icon {
  position: absolute;
  left: 18px;
  color: var(--primary, #2B8C00);
  font-size: .95rem;
}

.srp-hero__input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  font-family: inherit;
  background: transparent;
  color: #0f172a;
  padding: 6px 8px;
}

.srp-hero__btn {
  border: none;
  background: var(--primary, #2B8C00);
  color: #fff;
  border-radius: 999px;
  padding: 10px 24px;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  transition: background .15s;
  white-space: nowrap;
}
.srp-hero__btn:hover { background: var(--primary-dark, #1f5f00); }

.srp-hero__cats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  max-width: 680px;
  margin: 1rem auto 0;
}

.srp-hero__cats-label {
  color: rgba(255,255,255,.75);
  font-size: .82rem;
  font-weight: 600;
}

.srp-hero__cat-pill {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s, border-color .15s;
}
.srp-hero__cat-pill:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.6);
  color: #fff;
}

/* Also a cat-product-grid with 4 cols on search */
@media (min-width: 992px) {
  .srp-grid { grid-template-columns: repeat(4, 1fr); }
}

/* PDP aside category link */
.jk-pdp-aside__cat-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dashed rgba(43,140,0,.45);
  transition: color .15s, border-color .15s;
}
.jk-pdp-aside__cat-link:hover {
  color: var(--primary, #2B8C00);
  border-color: var(--primary, #2B8C00);
}

/* ================================================================
   CATEGORY PAGE
   ================================================================ */

/* ── Hero ─────────────────────────────────────────────────────── */
.cat-hero {
  position: relative;
  display: flex;
  align-items: center;
  padding-block: clamp(.8rem, .8vw, 1.6rem);
  overflow: hidden;
}

.cat-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.cat-hero__bg--gradient {
  background: linear-gradient(135deg, #1E3C18 0%, #2B8C00 55%, #4caf50 100%);
}

.cat-hero:hover .cat-hero__bg { transform: scale(1); }

.cat-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(15, 30, 10, 0.82) 0%,
    rgba(15, 30, 10, 0.55) 60%,
    rgba(15, 30, 10, 0.30) 100%);
}

.cat-breadcrumb .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.cat-breadcrumb .breadcrumb-item a {
  color: rgba(255,255,255,.75);
  font-size: .82rem;
  font-weight: 500;
  transition: color .15s;
}

.cat-breadcrumb .breadcrumb-item a:hover { color: #fff; }

.cat-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,.4);
}

.cat-breadcrumb .breadcrumb-item.active {
  color: rgba(255,255,255,.9);
  font-size: 1rem;
}

.cat-hero__content { color: #fff; max-width: 640px; }

.cat-hero__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.1;
}


.cat-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.cat-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.28);
  font-size: .82rem;
  font-weight: 600;
}

/* ── Page body ────────────────────────────────────────────────── */
.cat-page-body {
  padding-block: clamp(1.75rem, 3.5vw, 3rem);
  background: var(--bg, #fffdf5);
}

/* ── Sidebar ──────────────────────────────────────────────────── */
.cat-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 112px;
}

.cat-sidebar__card {
  background: #fff;
  border: 1px solid rgba(15,23,42,.07);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(15,23,42,.05);
  overflow: hidden;
}

.cat-sidebar__heading {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--primary, #2B8C00);
  padding: 16px 18px 12px;
  border-bottom: 1px solid rgba(15,23,42,.06);
  margin: 0;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.cat-sidebar__list {
  list-style: none;
  margin: 0;
  padding: 10px 10px;
}

.cat-sidebar__list li + li { margin-top: 2px; }

.cat-sidebar__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 12px;
  color: #475569;
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color .15s ease, color .15s ease;
}

.cat-sidebar__link:hover {
  background: rgba(43,140,0,.07);
  color: var(--primary-dark, #1f5f00);
}

.cat-sidebar__link.is-active {
  background: linear-gradient(135deg, rgba(43,140,0,.12), rgba(255,214,0,.14));
  color: var(--primary-dark, #1f5f00);
  font-weight: 700;
}

.cat-sidebar__sub-img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.cat-sidebar__sub-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(43,140,0,.10);
  color: var(--primary, #2B8C00);
  display: grid;
  place-items: center;
  font-size: .75rem;
  flex-shrink: 0;
}

.cat-sidebar__link-label { flex: 1; min-width: 0; }

.cat-sidebar__link-count {
  font-size: .72rem;
  font-weight: 700;
  color: #94a3b8;
  padding: 2px 7px;
  background: rgba(15,23,42,.05);
  border-radius: 999px;
  flex-shrink: 0;
}

.cat-sidebar__link.is-active .cat-sidebar__link-count {
  background: rgba(43,140,0,.15);
  color: var(--primary-dark, #1f5f00);
}

/* Info card */
.cat-sidebar__info {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cat-sidebar__info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .86rem;
}

.cat-sidebar__info-item > i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(43,140,0,.10);
  color: var(--primary, #2B8C00);
  font-size: .9rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.cat-sidebar__info-item strong {
  display: block;
  font-weight: 700;
  color: #0f172a;
  font-size: .88rem;
  line-height: 1.3;
}

.cat-sidebar__info-item span {
  color: #64748b;
  font-size: .8rem;
}

/* ── Subcategory pill strip ───────────────────────────────────── */
.cat-pills-wrap {
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: 1.25rem;
}

.cat-pills-wrap::-webkit-scrollbar { display: none; }

@media (min-width: 992px) {
  .cat-pills-wrap { display: none; }
}

.cat-pills {
  display: flex;
  gap: .5rem;
  white-space: nowrap;
  padding-bottom: 2px;
}

.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1.5px solid rgba(15,23,42,.10);
  background: #fff;
  color: #475569;
  font-size: .84rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color .15s, background-color .15s, color .15s, transform .15s;
  flex-shrink: 0;
}

.cat-pill img {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  object-fit: cover;
}

.cat-pill span {
  font-size: .72rem;
  padding: 1px 6px;
  border-radius: 999px;
  background: rgba(15,23,42,.06);
  color: #94a3b8;
  font-weight: 700;
}

.cat-pill:hover {
  border-color: var(--primary, #2B8C00);
  color: var(--primary-dark, #1f5f00);
  background: rgba(43,140,0,.05);
}

.cat-pill--active {
  border-color: var(--primary, #2B8C00);
  background: linear-gradient(135deg, rgba(43,140,0,.12), rgba(255,214,0,.10));
  color: var(--primary-dark, #1f5f00);
  font-weight: 700;
}

.cat-pill--active span {
  background: rgba(43,140,0,.18);
  color: var(--primary-dark, #1f5f00);
}

/* ── Toolbar ──────────────────────────────────────────────────── */
.cat-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.07);
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(15,23,42,.04);
  flex-wrap: wrap;
}

.cat-toolbar__count {
  margin: 0;
  font-size: .88rem;
  color: #64748b;
}

.cat-toolbar__count strong { color: #0f172a; }

.cat-toolbar__sort-form { display: flex; align-items: center; gap: .5rem; }

.cat-toolbar__sort {
  appearance: none;
  -webkit-appearance: none;
  padding: 7px 32px 7px 12px;
  border-radius: 10px;
  border: 1.5px solid rgba(15,23,42,.10);
  font-size: .84rem;
  font-weight: 600;
  font-family: inherit;
  color: #0f172a;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 10px center;
  cursor: pointer;
  transition: border-color .15s, box-shadow .15s;
}

.cat-toolbar__sort:focus {
  outline: none;
  border-color: var(--primary, #2B8C00);
  box-shadow: 0 0 0 4px rgba(43,140,0,.12);
}

/* ── Product grid ─────────────────────────────────────────────── */
.cat-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

@media (max-width: 1199.98px) {
  .cat-product-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 767.98px) {
  .cat-product-grid { grid-template-columns: repeat(2, 1fr); gap: .85rem; }
}

@media (max-width: 399.98px) {
  .cat-product-grid { grid-template-columns: 1fr; }
}

/* ── Pagination ───────────────────────────────────────────────── */
.cat-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .4rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.cat-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding-inline: 10px;
  border-radius: 10px;
  border: 1.5px solid rgba(15,23,42,.10);
  background: #fff;
  color: #475569;
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color .15s, background-color .15s, color .15s, transform .15s;
}

.cat-page-btn:hover {
  border-color: var(--primary, #2B8C00);
  color: var(--primary-dark, #1f5f00);
  background: rgba(43,140,0,.06);
  transform: translateY(-1px);
  text-decoration: none;
}

.cat-page-btn--active {
  background: var(--primary, #2B8C00);
  border-color: var(--primary, #2B8C00);
  color: #fff !important;
  pointer-events: none;
}

.cat-page-btn--disabled {
  opacity: .35;
  pointer-events: none;
  cursor: not-allowed;
}

.cat-page-btn--ellipsis {
  border-color: transparent;
  background: transparent;
  pointer-events: none;
  color: #94a3b8;
}

/* ── Empty state ──────────────────────────────────────────────── */
.cat-empty {
  text-align: center;
  padding: clamp(3rem, 8vw, 5.5rem) 1.5rem;
}

.cat-empty__icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(43,140,0,.08);
  color: var(--primary, #2B8C00);
  display: grid;
  place-items: center;
  font-size: 2.25rem;
  margin: 0 auto 1.25rem;
}

.cat-empty__title {
  font-weight: 800;
  font-size: 1.4rem;
  color: #0f172a;
  margin-bottom: .5rem;
}

.cat-empty__desc {
  color: #64748b;
  max-width: 42ch;
  margin: 0 auto 1.5rem;
  font-size: .95rem;
}

/* ── Hero back link (subcategory pages) ──────────────────────── */
.cat-hero__back {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.78);
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: .65rem;
  transition: color .15s;
  text-decoration: none;
}

.cat-hero__back:hover { color: #fff; }

/* ── Subcategory card grid (shown on parent category pages) ───── */
.cat-sub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.cat-sub-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(15,23,42,.07);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  box-shadow: 0 6px 18px rgba(15,23,42,.05);
}

.cat-sub-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(15,23,42,.10);
  border-color: rgba(43,140,0,.3);
}

.cat-sub-card__img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: rgba(43,140,0,.06);
}

.cat-sub-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.cat-sub-card:hover .cat-sub-card__img-wrap img { transform: scale(1.07); }

.cat-sub-card__img-wrap--placeholder {
  display: grid;
  place-items: center;
  color: var(--primary, #2B8C00);
  font-size: 2rem;
  opacity: .55;
}

.cat-sub-card__body {
  display: flex;
  flex-direction: column;
  padding: 12px 14px;
  gap: 2px;
}

.cat-sub-card__title {
  font-size: .9rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.cat-sub-card__count {
  font-size: .75rem;
  color: #64748b;
}

.cat-sub-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(43,140,0,.10);
  color: var(--primary, #2B8C00);
  font-size: .7rem;
  margin-top: 6px;
  align-self: flex-end;
  transition: background-color .15s, transform .15s;
}

/* ================================================================
   "In [Category]" — parent category subcategory showcase grid
   ================================================================ */
.cat-in-section {
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.cat-in-section__head {
  margin-bottom: 28px;
}

.cat-in-section__title {
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-weight: 800;
  color: var(--primary, #1E3C18);
  margin: 0 0 6px;
  letter-spacing: -.01em;
}

.cat-in-section__sub {
  font-size: .9rem;
  color: #64748b;
  margin: 0;
}

/* Responsive grid: 2 cols on mobile → 3 on md → 4 on lg */
.cat-in-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (min-width: 768px)  { .cat-in-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .cat-in-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }

.cat-in-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(15,23,42,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.cat-in-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(15,23,42,.14);
}

.cat-in-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #1E3C18, #2d6b22);
}

.cat-in-card__media img {
  width: 100%;
  /* height: 100%;
  object-fit: cover; */
  display: block;
  transition: transform .45s ease;
}

.cat-in-card:hover .cat-in-card__media img { transform: scale(1.07); }

.cat-in-card__placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 3.5rem;
  color: rgba(255,255,255,.3);
}

.cat-in-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}

.cat-in-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 16px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}

.cat-in-card__title {
  font-size: .97rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0,0,0,.35);
  flex: 1;
}

.cat-in-card__count {
  display: block;
  font-size: .72rem;
  color: rgba(255,255,255,.8);
  font-weight: 600;
  margin-top: 2px;
  text-shadow: 0 1px 4px rgba(0,0,0,.3);
}

/* Stack title and count, arrow floats right */
.cat-in-card__body > :first-child {
  display: flex;
  flex-direction: column;
}

.cat-in-card__arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: .8rem;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.3);
  transition: background .15s ease, transform .15s ease;
}

.cat-in-card:hover .cat-in-card__arrow {
  background: var(--primary, #1E3C18);
  border-color: var(--primary, #1E3C18);
  transform: translateX(3px);
}

.cat-sub-card:hover .cat-sub-card__arrow {
  background: var(--primary, #2B8C00);
  color: #fff;
  transform: translateX(2px);
}

/* ── Sidebar back button (subcategory pages) ──────────────────── */
.cat-sidebar__back {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(43,140,0,.10), rgba(255,214,0,.08));
  border: 1px solid rgba(43,140,0,.18);
  color: var(--primary-dark, #1f5f00);
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color .15s, transform .15s;
}

.cat-sidebar__back i {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--primary, #2B8C00);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: .72rem;
  flex-shrink: 0;
  transition: transform .15s;
}

.cat-sidebar__back:hover {
  background: linear-gradient(135deg, rgba(43,140,0,.15), rgba(255,214,0,.12));
  color: var(--primary-dark, #1f5f00);
  transform: translateX(-2px);
}

.cat-sidebar__back:hover i { transform: translateX(-2px); }

/* ── Responsive adjustments ───────────────────────────────────── */
@media (max-width: 991.98px) {
  .cat-sidebar { position: static; }
  .cat-hero { min-height: 200px; }
  .cat-hero__title { font-size: clamp(1.6rem, 5vw, 2.4rem); }
}

@media (max-width: 575.98px) {
  .cat-hero { padding-block: 2rem; }
  .cat-toolbar { padding: 10px 12px; }
  .cat-toolbar__count { font-size: .8rem; }
}

