
:root {
    --primary-color: #2ecc71;
    --secondary-color: #0faf52;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --accent-color: #e74c3c;
    --transition: all 0.3s ease;
}
.social-links a{
color: var(--secondary-color);
}
/* Nav bar css  */
.header {
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 4px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.header.scrolled {
    padding: 10px 5%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px;
    margin-right: 10px;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
nav{
    margin-top: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin: 0 15px;
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    padding: 8px 0;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

.inquiry-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
    font-size: 15px;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    max-width: 100%;
    word-break: break-word;
}

.inquiry-btn:hover {
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
}

/* Responsive tweaks (Optional) */
@media (max-width: 576px) {
    .inquiry-btn {
        padding: 10px 20px;
        font-size: 14px;
        width: 100%;
    }
}


.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark-color);
    width: 30px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background-color: white;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    padding: 80px 30px 30px;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    left: 0;
}

.mobile-nav-menu {
    list-style: none;
    margin-top: 30px;
}

.mobile-nav-item {
    margin-bottom: 20px;
}

.mobile-nav-link {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 18px;
    transition: var(--transition);
    display: block;
    padding: 10px 0;
}

.mobile-nav-link:hover {
    color: var(--primary-color);
    transform: translateX(10px);
}

.mobile-inquiry-btn {
    margin-top: auto;
    align-self: center;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark-color);
    width: 30px;
}

@media (max-width: 992px) {
    .nav-menu,.in-laptop {
        display: none;
    }

    .hamburger {
        display: block;
    }
}

@media (min-width: 993px) {
    .mobile-menu, .overlay {
        display: none !important;
    }
}





/* boostrap class  */
.text-green{
    color: #05a12c !important;
}

  .text-decoration-none{
      text-decoration: none;
  }

     .footer-link {
                      color: white;
                      text-decoration: none;
                      transition: color 0.3s;
                  }
                  .footer-link:hover {
                      color: #05a12c !important;
                      text-decoration: underline;
                  }
  .brand_logo{
    width: 120px;
      height: 30px;
  }
.cs-title{
  text-decoration: underline #05a12c;
}

      .pro-image-box{
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      }

      .pro-image-box:hover {
         box-shadow: 0 0 15px #05a12c;
      }
      .pro-image-box:hover img {
          transform: scale(1.1);
      }

          .nav-link:hover {
              color: #05a12c !important;
            }
.product-grid-item a{
  text-decoration: none;
}


/*  -=-=-   vedio _+--=-=-=-= */
/* Section Styling */
.video-section {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

/* Video Full Width */
.video-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay Effect */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

/* Text Styling */
.video-overlay h2 {
    font-size: 50px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}
.video-overlay p {
    font-size: 18px;
    color: #f1f1f1;
    margin-bottom: 20px;
}

/* Button Styling */
.video-overlay .cta-btn {
    background: #ffffff;
    color: #000;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.video-overlay .cta-btn:hover {
    background: #000;
    color: white;
}

/* color

  /* Color Option Styling */
  .color-option {
      width: 25px;
      height: 25px;
      border-radius: 50%;
      cursor: pointer;
      border: 2px solid #ddd;
      transition: transform 0.2s ease-in-out, border 0.2s;
  }

  /* When Selected */
  .color-option.selected {
      border: 3px solid #000;
      transform: scale(1.1);
  }

  /* Hover Effect */
  .color-option:hover {
      transform: scale(1.1);
  }*/
      /* Chrome, Safari, Edge, Opera */
      input[type="number"]::-webkit-outer-spin-button,
  input[type="number"]::-webkit-inner-spin-button {
      -webkit-appearance: none;
      margin: 0;
  }

  /* Firefox */
  input[type="number"] {
      -moz-appearance: textfield;
  }
  .navbar-toggler-icon {
  filter: invert(1); /* Invert color to make it white */
}




/* --------------------------------------Category css------------------------------------------------ */

/* Category Box Styling */
.category-box {
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    background: white;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.12);
    width: 250px; /* Default size */
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hover Effect */
.category-box:hover {
    transform: scale(1.08);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}

/* Image Box */
.image-box {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-box img {
    transition: transform 0.4s ease;
    object-fit: cover;
}

/* Hover Image Zoom */
.category-box:hover .image-box img {
    transform: scale(1.01);
}

/* Category Name Overlay */
.text-box {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    text-align: center;
    padding: 16px;
    font-weight: bold;
    position: absolute;
    bottom: 0;
    width: 100%;
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
    border-radius: 0 0 50% 50%;
}

/* Hover Effect for Text */
.category-box:hover .text-box {
    opacity: 1;
    transform: translateY(0);
}

.text-box h5 {
    font-weight: bold;
    font-size: 20px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .category-box {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .category-box {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 480px) {
    .category-box {
        width: 140px;
        height: 140px;
    }

    .text-box h5 {
        font-size: 12px;
    }
}


/* ---------------------------------------Category css END---------------------------------------------- */





/*   ------------------------------------------   customer review ------------------------------------ */
.customer-heading {
    text-align: center;
    margin-bottom: 30px;
}

.customer-heading__sub_title {
    font-size: 1rem;
    color: #6c757d;
}

.customer-heading__title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

.testimonial-slider {
    padding: 40px 0;
}

.testimonial-card {

    border-radius: 10px;

    padding: 25px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
}



.rating {
    color: #f4c150;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1rem;
    color: #555;
    margin-top: 10px;
}

.client-info {
    margin-top: 15px;
}

.client-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}

.client-designation {
    font-size: 0.9rem;
    color: #6c757d;
}

.swiper-button-prev,
.swiper-button-next {
    color: #000000;
    transition: 0.3s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    color: #000000;
}




/* home */
#swiper-slide {
    position: relative;
    text-align: center;
    color: #fff;
}
.swiper-slide img{
width: 100%;
height: 36rem;
-webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, rgb(255, 255, 255) 60%, rgba(255, 255, 255, 0) 100%);
}
@media (max-width: 480px) {
    .swiper-slide img{
         height: 22rem;
    }
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);

    padding: 20px;
    border-radius: 10px;
}
.slide-content h5 {
    color: #000000;
    font-size: 18px;
    font-style: italic;
}
.slide-content h1 {
    font-size: 46px;
    font-weight: bold;
}
.slide-content p {
    font-size: 16px;
    color: rgb(118, 118, 118);
    width: 50%;
}
.slide-content .btn {
    background-color: transparent;
    border: 2px solid rgb(255, 255, 255);
    color: rgb(255, 255, 255);
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}
.slide-content .btn:hover {
    background: #ffffff;
    color: #000000;
    transform: scale(1.1);
}







/* list product */

#hero-video-section {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    height: 360px;
  margin-bottom: 20px;
  margin-top: 50px;
}

#hero-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

#hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.4); /* dark overlay */
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

#hero-video-overlay .sub-title {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

#hero-video-overlay h2 {
    font-size: 2.5rem;
    margin: 0.5rem 0;
}

#hero-video-overlay p {
    font-size: 1rem;
}




.product-hero {
    background-color: #f8f8f8;
    padding: 4rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.product-gallery {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.main-image {
    height: 500px;
    object-fit: contain;
    width: 100%;
    transition: transform 0.5s ease;
}

.main-image:hover {
    transform: scale(1.02);
}

.thumbnail-container {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail:hover, .thumbnail.active {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.product-title {
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #333;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.highlight-box {
    background: linear-gradient(135deg, rgba(44,138,74,0.05) 0%, rgba(44,138,74,0.02) 100%);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
}

.feature-icon {
    background-color: rgba(44,138,74,0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
    font-weight: 600;
}

.section-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.spec-item {
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
}

.spec-label {
    font-weight: 500;
    color: #666;
}

.spec-value {
    font-weight: 500;
    color: #333;
}




.detail-tabs .nav-link {
    color: #666;
    font-weight: 500;
    border: none;
    padding: 12px 20px;
}

.detail-tabs .nav-link.active {
    color: var(--primary-color);
    background: transparent;
    border-bottom: 3px solid var(--primary-color);
}

.tab-content {
    padding: 30px 0;
}

.certification-badge {
    height: 60px;
    margin-right: 15px;
    margin-bottom: 15px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.certification-badge:hover {
    opacity: 1;
    transform: scale(1.05);
}



/* -==-=-=-=-=- about us page -=-=-=-=-=- */


.agro-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
}

.agro-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.agro-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.divider {
    width: 100px;
    height: 4px;
    background: #198754;
    margin: 20px auto;
}

.agro-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    overflow: hidden;
    border: none;
}

.agro-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.agro-card-img {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.agro-icon {
    font-size: 2.5rem;
    color: #198754;
    margin-bottom: 15px;
}

.value-card {
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.value-card:hover {
    background: #198754;
    color: white;
}

.value-card:hover .agro-icon,
.value-card:hover h5 {
    color: white !important;
}

.stats-section {
    background:
    linear-gradient(135deg, #198754, #1c6601);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stat-item {
    text-align: center;
    color: black;
    padding: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: yellow;
}

.founder-card {
    border-left: 5px solid #198754;
    background: white;
    padding: 30px;
    border-radius: 0 12px 12px 0;
}

.founder-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #198754;
}

.signature {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: black;
}

.floating-leaves {
    position: absolute;
    opacity: 0.1;
    z-index: 0;
}

.leaf-1 {
    top: 10%;
    left: 5%;
    width: 150px;
    transform: rotate(-20deg);
}

.leaf-2 {
    bottom: 10%;
    right: 5%;
    width: 200px;
    transform: rotate(30deg);
}


/* -=-=-=-=-=  BLOG -=-=-=-=-=-=-=- */
.card.mb-4 {
    height: 300px;
  }
  a{
      text-decoration: none;
  }
  .blog-card {
      text-decoration: none;
      color: inherit;
  }
  .card-title{
      font-size: 18px;
  }
  .card-title:hover{
      color: blue;

  }
  .blog-card .card {
      border: none;
      overflow: hidden;
      border-radius: 12px;
      transition: all 0.3s ease-in-out;
      box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  }

  .blog-card .card:hover {
      transform: scale(1.05);
      box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
  }

  .card-img-top {
      border-top-left-radius: 12px;
      border-top-right-radius: 12px;
      height: 200px;
      object-fit: contain;
  }



  /* product list page css */
   /* Hero Video Section */
   .hero-video-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 800px;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-search {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.search-input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 30px 0 0 30px;
    font-size: 1rem;
    outline: none;
}

.search-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    background-color: var(--secondary-color);
}

/* Filter Sidebar */
.filter-sidebar {
    position: sticky;
    top: 20px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.filter-title {
    font-size: 1.2rem;
    font-weight: 600;
}

.clear-all {
    font-size: 0.85rem;
}

.filter-group {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-group-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.price-range-slider {
    padding: 0 10px;
}

.form-range::-webkit-slider-thumb {
    background: var(--primary-color);
}

.form-range::-moz-range-thumb {
    background: var(--primary-color);
}

.form-range::-ms-thumb {
    background: var(--primary-color);
}

/* Product Cards */
.product-card {
    transition: var(--transition);
    border-radius: 10px;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
}

.product-badge .badge {
    margin-right: 5px;
    font-size: 0.7rem;
    font-weight: 500;
    padding: 4px 8px;
}

.product-image-link {
    display: block;
    position: relative;
    overflow: hidden;
}

.product-image {
    transition: var(--transition);
    height: 200px;
    object-fit: cover;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.quick-view {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    text-align: center;
    transition: var(--transition);
    opacity: 0;
}

.product-card:hover .quick-view {
    bottom: 20px;
    opacity: 1;
}

.product-title a {
    text-decoration: none;
    transition: var(--transition);
}

.product-title a:hover {
    color: var(--primary-color);
}

.product-rating {
    font-size: 0.8rem;
}

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

.original-price {
    font-size: 0.9rem;
}

.add-to-cart {
    transition: var(--transition);
}

.add-to-cart:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Pagination */
.pagination .page-item .page-link {
    color: var(--dark-color);
    border: none;
    margin: 0 5px;
    border-radius: 50% !important;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    color: white;
}

.pagination .page-item:hover .page-link {
    background-color: var(--light-color);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-video-section {
        height: 60vh;
        min-height: 400px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .filter-sidebar {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-video-section {
        height: 50vh;
        min-height: 300px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .search-input {
        padding: 10px 15px;
    }
}



    @media (max-width: 992px) {
        #filter-sidebar {
            position: fixed;
            top: 0;
            left: -300px;
            width: 250px;
            height: 100%;
            background: #fff;
            z-index: 1050;
            transition: left 0.3s ease-in-out;
            overflow-y: auto;
            box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
        }

        body.sidebar-open {
            overflow: hidden;
        }
    }





    /* Default mobile hidden */
#filter-sidebar {
    display: none;
}

/* Always visible on desktop */
@media (min-width: 992px) {
    #filter-sidebar {
        display: block !important;
    }
}

/* Show sidebar on mobile when class added to body */
body.sidebar-open #filter-sidebar {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    width: 80%;
    height: 100%;
    background-color: white;
    overflow-y: auto;
    padding: 1rem;
    box-shadow: 2px 0 8px rgba(0,0,0,0.2);
}

/* Optional dark backdrop */
body.sidebar-open::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1040;
}

.rating img{
    height: 1rem;
}
