/* --- Soft Orange Theme for Filters --- */

/* Main container for all filters */
.filter-container {
    background-color: #fdfdfd; /* Soft white background */
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    font-family: 'Roboto', sans-serif;
}

/* Individual filter sections (Product, Languages) */
.filter-section {
    margin-bottom: 25px;
}

/* Styling for the titles like "Product" and "Languages" */
.filter-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #fde8d7; /* Light orange underline */
}

/* Container for the checkbox options */
.filter-options p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

/* Custom Checkbox Styling */
.filter-options input[type="checkbox"] {
    display: none; /* Hide the default checkbox */
}

.filter-options label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 16px;
    color: #555;
    transition: color 0.3s ease;
}

/* Custom checkbox box */
.filter-options label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 6px;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Custom checkmark */
.filter-options label::after {
    content: '\2713'; /* Checkmark symbol */
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    font-size: 16px;
    color: #fff;
    transition: transform 0.3s ease;
}

/* Style when checkbox is checked */
.filter-options input[type="checkbox"]:checked + label::before {
    background-color: #f5a623; /* Vibrant orange */
    border-color: #f5a623;
}

.filter-options input[type="checkbox"]:checked + label::after {
    transform: translateY(-50%) scale(1);
}

/* Hover effect for labels */
.filter-options label:hover {
    color: #f5a623; /* Orange text on hover */
}

.filter-options label:hover::before {
    border-color: #f5a623;
}