      /* Hero Section Enhancements 1 */
      .blog-hero {
        background: linear-gradient(
            rgba(255, 255, 255, 0.85),
            rgba(255, 255, 255, 0.8)
          ),
          url("../../assets/img/hero-bg.jpg") center center no-repeat;
        background-size: cover;
        height: 35vh;
        margin-top: 80PX;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .blog-hero h1 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #3c4133;
      }

      /* Featured Collection Card */
      .featured-collection {
        background: #fff;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      }
      .featured-collection img {
        width: 100%;
        max-height: 300px;
        object-fit: cover;
      }
      .featured-collection .card-body {
        position: relative;
        padding: 1.5rem;
      }
      .featured-collection .card-title {
        font-size: 1.75rem;
        font-weight: 600;
      }
      .featured-collection .card-text {
        font-size: 1rem;
        color: #555;
      }
      .featured-collection .btn-featured {
        margin-top: 1rem;
        border-radius: 30px;
        background: #85bc3a;
        border: none;
        color: #fff;
        transition: all 0.3s ease;
        font-weight: 500;
      }
      .featured-collection .btn-featured:hover {
        background: #9fc658;
      }

      /* Sidebar Styling Tweaks */
      aside .sidebar-box {
        background-color: #fff;
        border-radius: 8px;
        padding: 1rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      }
      aside h5 {
        color: #3c4133;
        font-size: 1.15rem;
        margin-bottom: 1rem;
        font-weight: 600;
      }

      .sidebar-box h5 {
        font-weight: 600;
        margin-bottom: 1rem;
        position: relative;
      }
      .sidebar-box h5::after {
        content: "";
        display: block;
        width: 40px;
        height: 3px;
        background-color: var(--accent-color, #94c045);
        margin-top: 8px;
        border-radius: 2px;
      }

      .accordion-button {
        font-weight: 500;
        background: none;
        border: none;
        color: #333;
      }
      .accordion-button:focus {
        box-shadow: none;
      }
      /* .accordion-button.collapsed::after {
        Could add custom icon for collapsed state if desired
      } */
      .accordion-header .accordion-button:hover {
        background-color: rgba(133, 188, 58, 0.1);
      }
      /* When the accordion is expanded, .accordion-button doesn't have .collapsed */
    .accordion-button:not(.collapsed) {
        background-color: rgba(133, 188, 58, 0.1) !important; /* Your custom color */
        box-shadow: none !important; /* Remove default Bootstrap shadow */
    }
    
    /* Optionally, remove focus outline if you don't like it */
    .accordion-button:focus {
        box-shadow: none !important;
    }
  
      /* Brand Filter styling */
      .form-check-label {
        cursor: pointer;
      }
      .form-check-input:checked ~ .form-check-label {
        color: #85bc3a;
        font-weight: 500;
      }

      /* Scrollable area for the Categories Filter (Accordion) */
    .category-filter-scroll {
        max-height: 350px; /* Adjust the height as you like */
        overflow-y: auto;
    }
  
  /* Scrollable area for the Brand Filter */
    .brand-filter-scroll {
        max-height: 220px; /* Adjust the height as you like */
        overflow-y: auto;
    }

/* Responsive adjustments for mobile devices */
@media (max-width: 768px) { /* Tablets and smaller */
    .category-filter-scroll {
        max-height: 250px; /* Reduce height for mobile */
    }

    .brand-filter-scroll {
        max-height: 150px; /* Reduce height for mobile */
    }
}

@media (max-width: 480px) { /* Phones */
    .category-filter-scroll {
        max-height: 245px; /* Further reduction for smaller screens */
    }

    .brand-filter-scroll {
        max-height: 145px; /* Further reduction for smaller screens */
    }
}


      /* Card Improvements */
      .product-card {
        overflow: hidden;
        border-radius: 8px;
      }
      .product-card .position-relative {
        overflow: hidden;
      }
      .product-card:hover img {
        transform: scale(1.03);
        transition: all 0.4s ease;
      }
      .product-card h5.card-title {
        font-size: 1rem;
        font-weight: 600;
      }

      /* Pagination with ellipses example */
      .pagination .page-item {
        margin: 0 5px;
      }
      .pagination .page-item .page-link {
        border-radius: 50px;
        color: #3c4133;
      }
      .pagination .page-item.active .page-link {
        background-color: #85bc3a;
        border-color: #85bc3a;
        color: #fff;
      }
      .pagination .page-link:hover {
        background-color: #9fc658;
        border-color: #9fc658;
        color: #fff;
      }

      /* Swiper Container Tweaks */
.swiper.featured-collection-swiper {
  width: 100%;
  /* Adjust the height or use autoHeight in JS */
}

/* Slides: Keep each card aligned properly */
.swiper-slide {
  display: flex; /* Ensure the card within is centered or aligned as needed */
  justify-content: center;
  align-items: center;
}

/* Featured Collection Card Enhancements */
.featured-collection {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
  margin: 0 15px; /* Slight horizontal spacing inside the slide */
}

/* Image Column Overlay (for better text contrast if needed) */
.image-col {
  height: 100%; 
  overflow: hidden; /* So it doesn't spill outside */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* The actual overlay: semi-transparent gradient over the image */
.image-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.05),
    rgba(0, 0, 0, 0.05)
  );
}

/* 1) Force each Swiper slide to a consistent height */
.featured-collection-swiper .swiper-slide {
  /* Adjust the height value as you need */
  height: 350px; 
  display: flex; 
  align-items: stretch; 
}

/* 2) Make sure the card fills the entire slide */
.featured-collection.card {
  border: none;
  width: 100%;
}

/* The row inside should also fill the parent for equal columns */
.featured-collection .row.g-0 {
  height: 100%;
}

/* 3) Text column also takes full height & centers content vertically */
.col-md-6.d-flex.align-items-center {
  height: 100%;
}

/* (Your existing featured-collection, btn-featured, etc. can remain) */

/* Image should fill the column while maintaining aspect ratio if possible */
.image-col img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* Ensures the full image is shown */
}

/* Card Text & Title */
.featured-collection .card-body h4.card-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #3c4133;
}

.featured-collection .card-body .card-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

/* Featured Button (Consistent with existing style) */
.btn-featured {
  border-radius: 30px;
  background: #85bc3a;
  border: none;
  color: #fff;
  transition: background-color 0.3s ease;
  font-weight: 500;
  padding: 0.5rem 1.5rem;
}
.btn-featured:hover {
  background: #9fc658;
  color: #fff;
}

/* Pagination Dots (If you want them more stylish) */
.swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
  width: 10px;
  height: 10px;
  margin: 0 6px !important;
  border-radius: 50%;
  transition: background-color 0.3s;
}
.swiper-pagination-bullet-active {
  background: #85bc3a;
}

