/* Custom Shop CSS - Premium Theme */

/* --- General Layout --- */
body.shop-page {
    background-color: #f5f0e6 !important;
}

.shop-wrapper {
    background-color: #f5f0e6;
    padding-bottom: 100px;
}

/* --- Premium Breadcrumb --- */
.premium-breadcrumb {
    padding: 80px 0 60px;
    text-align: center;
    background-color: #f5f0e6;
}

.premium-breadcrumb h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #111;
    margin-bottom: 20px;
    font-weight: 500;
}

.premium-breadcrumb ul {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0;
    list-style: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.premium-breadcrumb ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.premium-breadcrumb ul li a:hover {
    color: #ee3239;
}

.premium-breadcrumb ul li.active {
    color: #ee3239;
}

/* --- Sidebar Styles --- */
.premium-sidebar {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sidebar-widget {
    margin-bottom: 40px;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.widget-title h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #111;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    font-weight: 600;
}

/* Checkbox Styling */
.checkbox-container ul {
    padding: 0;
    list-style: none;
}

.checkbox-container ul li {
    margin-bottom: 12px;
}

.checkbox-container label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #555;
    transition: color 0.2s;
}

.checkbox-container label:hover {
    color: #ee3239;
}

/* Custom Checkbox Input */
.checkbox-container input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid #ccc;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    background: #fff;
    transition: all 0.2s;
}

.checkbox-container input[type="checkbox"]:checked {
    background-color: #ee3239;
    border-color: #ee3239;
}

.checkbox-container input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* --- Sorting & Top Bar --- */
.auction-card-top-area {
    background: transparent;
    padding: 0 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.auction-card-top-area h6 {
    font-family: 'Inter', sans-serif;
    color: #666;
    font-size: 0.95rem;
    font-weight: 400;
}

.product__view--select {
    background-color: transparent;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px 15px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #333;
    cursor: pointer;
    outline: none;
}

.product__view--select:focus {
    border-color: #ee3239;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .premium-sidebar {
        margin-bottom: 50px;
    }
}