/* Shop Page Styles */

.shop-header {
    padding: 6rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-deep) 0%, var(--bg-subtle) 100%);
    border-bottom: 1px solid var(--border-subtle);
}

.shop-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: var(--foil-metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shop-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.shop-section {
    padding: 4rem 0;
    min-height: 60vh;
}

.shop-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
}

/* Filters Sidebar */
.filters-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.filter-group {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
}

.filter-group h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.filter-option:hover {
    color: var(--text-primary);
}

.filter-option input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--border-subtle);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
}

.filter-option input[type="radio"]:checked {
    border-color: var(--gold-primary);
    background: var(--gold-primary);
}

.filter-option input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: #000;
    border-radius: 50%;
}

/* Products Main */
.products-main {
    flex: 1;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-subtle);
}

.products-header span {
    color: var(--text-secondary);
}

.products-header select {
    padding: 0.75rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    cursor: pointer;
}

.products-header select:focus {
    outline: none;
    border-color: var(--gold-primary);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.no-products,
.error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Footer adjustments */
footer {
    margin-top: 4rem;
    padding: 2rem 0;
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-deep);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
}

.footer-links a {
    margin-left: 2rem;
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--gold-primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }

    .filters-sidebar {
        position: static;
        display: flex;
        gap: 1rem;
        overflow-x: auto;
        padding-bottom: 1rem;
    }

    .filter-group {
        min-width: 200px;
        margin-bottom: 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .shop-header h1 {
        font-size: 2.5rem;
    }
}