/* Products Page Styles */
body {
    background-color: #FFFDF8;
}

/* Filter Bar */
.filter-bar-container {
    border-bottom: 1px solid #B8B8B8;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.category-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.category-links a {
    text-decoration: none;
    color: #616161;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.category-links a.active {
    color: #100F0F;
    font-weight: 700;
}

.category-links a:hover {
    color: #100F0F;
}

.filter-dropdowns {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.filter-btn {
    border: 1px solid #B8B8B8;
    border-radius: 50rem;
    /* Pill shape */
    background: transparent;
    padding: 0.375rem 1rem;
    font-size: 0.8125rem;
    color: #100F0F;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #adb5bd;
    background: #f8f9fa;
}

.filter-btn i {
    font-size: 0.75rem;
}

/* Dropdown Menu overrides */
.filter-dropdowns .dropdown-menu {
    background-color: #FFFDF8;
    border: 1px solid #B8B8B8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.filter-dropdowns .dropdown-item {
    font-size: 0.8125rem;
    color: #100F0F;
    font-weight: 400;
    padding: 0.2rem 1rem;
    transition: background-color 0.2s ease;
}

.filter-dropdowns .dropdown-item:hover,
.filter-dropdowns .dropdown-item:focus {
    background-color: rgba(0, 0, 0, 0.04);
    color: #100F0F;
}

/* Product Card */
.product-card {
    background-color: transparent;
    border: none;
    border-radius: 0;
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
    background-color: transparent;
}

.product-img-wrapper img {
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.05);
}

.product-size {
    color: #616161;
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .filter-bar-container {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 1rem;
    }

    .category-links {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }

    .filter-dropdowns {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
}