/* shop.php - Page Shop - Structure et couleurs du système */
:root {
    --primary-blue: #f57c00;
    --theme-light: #fff8e1;
    --theme-border: #ffe0b2;
}

.shop-hero {
    padding: 32px 0;
    background: linear-gradient(135deg, var(--theme-light) 0%, #ffffff 50%, var(--theme-light) 100%);
    border-bottom: 1px solid var(--theme-border);
    margin-bottom: 24px;
}

.shop-hero-inner {
    text-align: center;
}

.shop-hero-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.shop-hero-subtitle {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
}

.shop-page {
    padding: 0 20px 60px;
    max-width: 100%;
    box-sizing: border-box;
}

.shop-section {
    margin-bottom: 40px;
}

.shop-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-blue);
}

.shop-section .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    align-items: start;
}

.shop-empty {
    text-align: center;
    padding: 40px 20px;
}

.shop-empty + .btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
}
