/* AURELIA STUDIOS - Shop Page Specific Styles (assets/css/shop.css) */

/* Page Header */
.page-header {
    padding-top: 150px;
    text-align: center;
    margin-bottom: 50px;
}
.page-header h1 {
    font-size: 3rem;
    color: var(--gold-accent);
}
.sort-controls {
    /* Ensure it takes up the full width of the main product-area */
    width: 100%; 
    
    display: flex;
    /* This pushes the count (left) and the dropdown (right) to the edges */
    justify-content: space-between; 
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--glass-border);
}
/* Shop Layout */
.shop-layout {
    display: flex;
    gap: 40px;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto 80px;
}

/* Filters Sidebar */
.filters {
    width: 250px;
    flex-shrink: 0;
    background: var(--card-bg);
    padding: 25px;
    height: fit-content;
    position: sticky; /* Keeps the filters visible while scrolling the grid */
    top: 100px;
    border: 1px solid var(--glass-border);
}

.filter-group { 
    margin-bottom: 30px; 
    padding-bottom: 15px;
    border-bottom: 1px solid var(--glass-border);
}
.filter-group h4 { 
    margin-bottom: 15px; 
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-color);
}
.filter-group input[type="checkbox"] {
    margin-right: 8px;
    accent-color: var(--gold-accent); /* Custom color for checkboxes */
}

/* Product Area */
.product-area {
    flex-grow: 1;
}

.sort-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--glass-border);
}

.sort-controls select {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    padding: 8px 15px;
    cursor: pointer;
    appearance: none; /* Remove default arrow */
    background-image: url("data:image/svg+xml;charset=UTF8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23C9A36B' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px top 50%;
    background-size: 12px;
}

.product-count {
    color: var(--gold-accent);
    font-weight: 500;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .shop-layout {
        flex-direction: column;
        width: 100%;
        padding: 0 5%;
    }
    .filters {
        width: 100%;
        position: relative;
        top: 0;
    }
}