/* Shop Filters Styles - Bihelia */

.shop__sidebar {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.sidebar__widget {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

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

.sidebar__widget__title {
    font-size: 18px;
    font-weight: 600;
    color: #283519;
    margin-bottom: 20px;
}

/* Search Box */
.search__box {
    position: relative;
    display: flex;
}

.search__box input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.search__box input:focus {
    border-color: #C9A961;
    outline: none;
}

.search__box button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 45px;
    background: #C9A961;
    border: none;
    border-radius: 0 6px 6px 0;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search__box button:hover {
    background: #283519;
}

/* Filter List */
.filter__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter__list li {
    margin-bottom: 12px;
}

.filter__checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    transition: all 0.3s ease;
}

.filter__checkbox:hover {
    color: #C9A961;
}

.filter__checkbox input[type="radio"],
.filter__checkbox input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #C9A961;
}

/* Price Filter */
.price__filter {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price__inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.price__input__group {
    display: flex;
    flex-direction: column;
}

.price__input__group label {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 5px;
}

.price__input__group input {
    padding: 10px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.price__input__group input:focus {
    border-color: #C9A961;
    outline: none;
}

/* Buttons */
.btn__small {
    padding: 10px 20px;
    font-size: 14px;
}

.btn__full {
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn__white {
    background: white;
    color: #283519;
    border: 2px solid #283519;
}

.btn__white:hover {
    background: #283519;
    color: white;
}

/* Toolbar */
.shop__toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 30px;
}

.showing__results {
    margin: 0;
    color: #6c757d;
    font-size: 14px;
}

.showing__results strong {
    color: #283519;
    font-weight: 600;
}

.sort__by {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort__by label {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.sort__select {
    padding: 8px 15px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 14px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort__select:focus {
    border-color: #C9A961;
    outline: none;
}

/* Section Subtitle */
.section__subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #283519;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #C9A961;
}

.products__section,
.packs__section {
    margin-bottom: 50px;
}

/* No Results */
.no__results {
    text-align: center;
    padding: 80px 20px;
}

.no__results i {
    color: #C9A961;
    margin-bottom: 20px;
}

.no__results h3 {
    color: #283519;
    font-size: 24px;
    margin-bottom: 15px;
}

.no__results p {
    color: #6c757d;
    margin-bottom: 25px;
}

/* Gift Badge */
.grid__wraper__gift__badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 10;
}

.gift__badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    background: #28a745;
    color: white;
}

/* Responsive */
@media (max-width: 991px) {
    .shop__sidebar {
        margin-bottom: 30px;
    }
    
    .shop__toolbar {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .sort__by {
        width: 100%;
        justify-content: space-between;
    }
    
    .sort__select {
        flex: 1;
    }
}

@media (max-width: 767px) {
    .price__inputs {
        grid-template-columns: 1fr;
    }
    
    .section__subtitle {
        font-size: 20px;
    }
}
