:root {
    --btn-shadow: #d4af3750;
    --btn-highlight: #D4AF37;
    --hero-a: #e464be;
    --hero-b: #b54f4f;
}


/* ==================== */
/* SHOP FILTERS         */
/* ==================== */

.shop-filters {
    padding: 40px 0 20px;
    background: #f4f7fb;
}

.filters-wrapper {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* Full width so the search bar lines up with the product grids below it */
.search-box {
    flex: 1;
    width: 100%;
    min-width: 100%;
}

.search-box .woocommerce-product-search {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-box .search-field {
    flex: 1;
    min-width: 0;
    height: 50px;
    padding: 0 20px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    color: var(--text);
    outline: none;
    box-shadow: var(--shadow-soft);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-box .search-field::placeholder {
    color: var(--muted);
}

.search-box .search-field:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(47, 111, 237, 0.12);
}

/* Icon-only magnifier submit button */
.search-box .search-submit {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.12s ease;
}

.search-box .search-submit .material-icons {
    font-size: 22px;
    line-height: 1;
}

.search-box .search-submit:hover {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
}

.search-box .search-submit:active {
    transform: translateY(1px);
}

.category-filter {
    flex: 2;
    min-width: 320px;
}

.category-filter ul.products {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-filter ul.products li {
    background: #f1f5f9;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.category-filter ul.products li:hover {
    background: #e2e8f0;
    border-color: #cbd5e1;
}

.category-filter ul.products li a {
    color: #0f172a;
    text-decoration: none;
}

@media (max-width: 768px) {
    .filters-wrapper {
        flex-direction: column;
    }
    
    .search-box,
    .category-filter {
        width: 100%;
        min-width: 100%;
    }
}

/* ==================== */
/* WOOCOMMERCE PRODUCTS */
/* ==================== */
/* Product card styles moved to woo-cards.css (loaded globally) */

.shop-sections h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.3px;
    margin: 48px 0 4px;
    padding-bottom: 12px;
}

/* Brand accent bar before each brand grouping */
.shop-sections h2::before {
    content: "";
    flex-shrink: 0;
    width: 5px;
    height: 22px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--hero-a), var(--hero-b));
}

.shop-sections h2:first-child {
    margin-top: 16px;
}

/* SECTIONS */
.section {
    padding: 80px 0;
}

.section.light {
    background: var(--bg);
}

.section h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.lead {
    color: var(--muted);
    max-width: 640px;
    margin-bottom: 48px;
}