/* --- FILTER SIDEBAR --- */
    .filter-card {
      background: #ffffff;
      border-radius: 12px;
      padding: 24px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
      border: 1px solid #eef3ee;
      margin-bottom: 24px;
    }
    .filter-title {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--primary-color);
      border-bottom: 2px solid var(--bg-light);
      padding-bottom: 12px;
      margin-bottom: 18px;
    }
    .form-check-input:checked {
      background-color: var(--primary-color);
      border-color: var(--primary-color);
    }
    .badge-count {
      background-color: var(--bg-light);
      color: var(--primary-color);
      font-weight: 500;
    }

    /* --- PRODUCT CONTROL BAR --- */
    .control-bar {
      background: #ffffff;
      border-radius: 12px;
      padding: 15px 20px;
      border: 1px solid #eef3ee;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
      margin-bottom: 24px;
    }

    /* --- PRODUCT CARDS --- */
    .product-card {
      background: #ffffff;
      border-radius: 15px;
      border: 1px solid #eef3ee;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
      transition: all 0.3s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
      position: relative;
    }
    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 30px rgba(30, 86, 49, 0.12);
      border-color: rgba(76, 154, 42, 0.3);
    }
    .product-badge {
      position: absolute;
      top: 15px;
      left: 15px;
      background: var(--primary-gradient);
      color: white;
      font-size: 0.75rem;
      font-weight: 600;
      padding: 4px 12px;
      border-radius: 20px;
      z-index: 2;
    }
    .product-img-wrapper {
      position: relative;
      overflow: hidden;
      background: #fbfdfb;
      padding: 20px;
      text-align: center;
    }
    .product-img {
      max-height: 200px;
      object-fit: contain;
      transition: transform 0.5s ease;
    }
    .product-card:hover .product-img {
      transform: scale(1.08);
    }
    .product-body {
      padding: 20px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .product-category {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--primary-light);
      font-weight: 600;
    }
    .product-title {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--text-dark);
      margin: 5px 0 10px;
      line-height: 1.3;
    }
    .product-rating {
      color: var(--accent-gold);
      font-size: 0.85rem;
      margin-bottom: 12px;
    }
    .product-footer {
      margin-top: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 15px;
      border-top: 1px solid #f0f5f0;
    }
    .btn-custom-sm {
      background: var(--primary-gradient);
      color: #fff;
      border: none;
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 600;
      transition: all 0.3s ease;
    }
    .btn-custom-sm:hover {
      color: #fff;
      box-shadow: 0 4px 12px rgba(30, 86, 49, 0.3);
    }

    /* --- BUTTONS & FOOTER --- */
    .btn-custom-primary {
      background: var(--primary-gradient);
      color: #fff;
      border: none;
      padding: 10px 24px;
      border-radius: 25px;
      font-weight: 600;
    }
    .pagination .page-link {
      color: var(--primary-color);
      border-radius: 8px;
      margin: 0 3px;
      border: 1px solid #e2efe3;
    }
    .pagination .page-item.active .page-link {
      background-color: var(--primary-color);
      border-color: var(--primary-color);
      color: #fff;
    }