/* ==========================================================================
   VARIANT VINTAGE - SITE STYLES
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Raleway:wght@400;600;700&display=swap');

/* ==========================================================================
   1. CSS VARIABLES (Design System)
   ========================================================================== */
:root {
    /* Colors - Primary Palette */
    --bg-primary: #180E0B;
    --bg-secondary: #261611;
    --bg-tertiary: #372019;
    /* Colors - Accents */
    --accent-teal: #56c9d6;
    --accent-copper: #bc765f;
    --accent-red: #c0745d;
    --accent-yellow: #FFD700;
    --accent-green: #4CAF50;
    --accent-warning: #FF6B6B;
    /* Colors - Text */
    --text-light: #FFFFFF;
    --text-dark: #333333;
    --text-muted: #A2A2A2;
    /* Colors - Borders */
    --border-color: rgba(188, 118, 95, 0.2);
    /* Typography */
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Raleway', sans-serif;
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    /* Borders & Radius */
    --border-radius: 4px;
    --border-radius-lg: 8px;
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 15px rgba(0,0,0,0.3);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.5);
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* ==========================================================================
   2. BASE STYLES (Reset & Typography)
   ========================================================================== */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background: var(--bg-primary);
    font-family: var(--font-body);
    font-size: 11pt;
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin: 0;
    padding: 0;
    letter-spacing: 1px;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p, ol, ul {
    margin-top: 0;
    line-height: 160%;
}

a {
    color: var(--accent-teal);
    text-decoration: none;
    transition: color var(--transition-fast);
}

    a:hover {
        color: var(--accent-copper);
    }

/* ==========================================================================
   3. LAYOUT STRUCTURE
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

[class*="u"] {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .\33 u {
        width: 25%;
    }

    .\34 u {
        width: 33.3333%;
    }

    .\36 u {
        width: 50%;
    }

    .\38 u {
        width: 66.6666%;
    }
}

/* ==========================================================================
   4. HEADER & NAVIGATION
   ========================================================================== */
#header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-primary);
    border-bottom: 2px solid var(--accent-copper);
/*    min-height: 50px;
*/}

    #header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.5em 0;
        min-height: 50px;
    }

.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 5.5em;
    color: var(--text-light);
    white-space: nowrap;
    letter-spacing: 3px;
    line-height: 1;
}

.logo-link:hover .logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(86, 201, 214, 0.8));
}

.logo-link:hover .logo-text {
    color: var(--accent-teal);
}

#logo a {
    display: block;
}

.logo-image {
    max-height: 135px;
    width: auto;
    display: block;
    transition: all var(--transition-normal);
    filter: drop-shadow(0 0 8px rgba(245, 240, 232, 0.8));
}

    #logo img:hover {
        transform: scale(1.05);
        filter: drop-shadow(0 4px 8px rgba(86, 201, 214, 0.4));
    }

#logo h1 {
    margin: 0;
    padding: 0;
    line-height: 1;
}

    #logo h1 a {
        display: block;
        font-family: var(--font-heading);
        font-size: 1.6em;
        font-weight: 600;
        color: var(--text-light);
        text-decoration: none;
        letter-spacing: 1px;
        white-space: nowrap;
    }

        #logo h1 a:hover {
            color: var(--accent-teal);
        }

#nav {
    position: static;
    transform: none;
    z-index: 100;
}

    #nav > ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 0.25rem;
    }

        #nav > ul > li {
            margin-left: 0;
        }

            #nav > ul > li > a {
                display: block;
                padding: 0.8em 1.2em;
                letter-spacing: 0.06em;
                font-size: 0.95em;
                font-weight: 600;
                color: var(--text-light);
                border-radius: var(--border-radius);
                transition: all var(--transition-fast);
                white-space: nowrap;
            }

                #nav > ul > li > a:hover,
                #nav > ul > li.active > a {
                    background: var(--accent-teal);
                    color: var(--text-light);
                    transform: translateY(-2px);
                }

/* ==========================================================================
   5. HERO SECTION
   ========================================================================== */
.hero-section {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px);
        pointer-events: none;
    }

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--accent-copper);
    margin-bottom: var(--spacing-md);
    font-weight: 300;
}

.btn-hero {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--accent-teal);
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: var(--border-radius-lg);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

    .btn-hero:hover {
        background: var(--accent-copper);
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
        color: var(--text-light);
    }

/* ==========================================================================
   6. SECTION HEADERS
   ========================================================================== */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--accent-copper);
}

    .section-header h2 {
        color: var(--text-light);
        margin: 0;
    }

.view-all-link {
    color: var(--accent-teal);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-fast);
}

    .view-all-link:hover {
        color: var(--accent-copper);
        transform: translateX(5px);
    }

/* ==========================================================================
   7. FEATURED PRODUCTS SECTION & PRODUCT CARDS
   ========================================================================== */
.featured-products {
    background: var(--bg-primary);
    padding: var(--spacing-lg) var(--spacing-md);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.product-card {
    background: var(--bg-secondary);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

.product-image {
    position: relative;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: var(--bg-tertiary);
}

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform var(--transition-normal);
    }

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.badge {
    padding: 0.4rem 0.8rem;
    border-radius: var(--border-radius);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-image .badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.75rem;
    box-shadow: var(--shadow-sm);
}

.badge-new {
    background: var(--accent-yellow);
    color: var(--text-dark);
}

.badge-available {
    background: var(--accent-green);
    color: white;
}

.badge-sold {
    background: var(--accent-warning);
    color: white;
}

.badge-mature {
    background: #ff6b6b;
    color: white;
}

.badge-spicy {
    background-color: #7b0000;
    color: #ffffff;
    border: 1px solid #c0392b;
}

.badge-gore {
    background: #8b0000;
    color: white;
}

.badge-signed {
    background: var(--accent-yellow);
    color: #333;
}

.badge-graded {
    background: var(--accent-teal);
    color: white;
}

.badge-remarque {
    background: #9c27b0;
    color: white;
}

.badge-genre {
    background: var(--bg-tertiary);
    color: var(--accent-copper);
}

.product-info {
    padding: var(--spacing-sm);
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.product-grade {
    background: var(--bg-tertiary);
    padding: 0.2rem 0.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
}

.product-publisher {
    font-style: italic;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-copper);
    margin: 0;
}

/* ==========================================================================
   8. GENRE SECTION
   ========================================================================== */
.genre-section {
    background: var(--bg-secondary);
    padding: var(--spacing-lg) var(--spacing-md);
}

.genre-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.genre-card {
    position: relative;
    height: 200px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

    .genre-card:hover {
        transform: scale(1.03);
        box-shadow: var(--shadow-lg);
    }

.genre-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: var(--spacing-md);
    color: var(--text-light);
}

    .genre-overlay h3 {
        font-size: 2rem;
        margin-bottom: 0.3rem;
        text-transform: uppercase;
    }

.genre-count {
    margin: 0;
    font-size: 0.9rem;
    color: var(--accent-teal);
}

/* ==========================================================================
   9. VIP SECTION
   ========================================================================== */
.vip-section {
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-primary) 100%);
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
}

.vip-content {
    max-width: 600px;
    margin: 0 auto;
}

    .vip-content h2 {
        color: var(--text-light);
        margin-bottom: var(--spacing-sm);
    }

    .vip-content > p {
        color: var(--text-muted);
        font-size: 1.1rem;
        margin-bottom: var(--spacing-md);
    }

.vip-form {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.vip-input {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--accent-copper);
    border-radius: var(--border-radius);
    background: var(--bg-secondary);
    color: var(--text-light);
    font-size: 1rem;
}

    .vip-input:focus {
        outline: none;
        border-color: var(--accent-teal);
    }

.btn-vip {
    padding: 1rem 2rem;
    background: var(--accent-copper);
    color: var(--text-light);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-fast);
}

    .btn-vip:hover {
        background: var(--accent-teal);
        transform: translateY(-2px);
    }

.vip-disclaimer {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* ==========================================================================
   10. WHY US SECTION
   ========================================================================== */
.why-us-section {
    background: var(--bg-primary);
    padding: var(--spacing-lg) var(--spacing-md);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.feature-card {
    background: var(--bg-secondary);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid transparent;
}

    .feature-card:hover {
        border-color: var(--accent-copper);
        transform: translateY(-5px);
    }

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.feature-card h3 {
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ==========================================================================
   11. FOOTER
   ========================================================================== */
#copyright {
    position: relative;
    padding: 3em 0;
    text-align: center;
    color: var(--text-muted);
    background: var(--bg-primary);
    border-top: 1px solid var(--accent-copper);
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 24px;
    transition: all var(--transition-normal);
    text-decoration: none;
}

    .social-icon:hover {
        transform: translateY(-3px);
        background: rgba(255, 255, 255, 0.2);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

        .social-icon:hover .fa-instagram {
            background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .social-icon:hover .fa-x-twitter {
            color: #000;
        }

        .social-icon:hover .fa-facebook {
            color: #1877f2;
        }

        .social-icon:hover .fa-youtube {
            color: #ff0000;
        }

        .social-icon:hover .fa-tiktok {
            color: #000;
        }

        .social-icon:hover .fa-discord {
            color: #5865f2;
        }

        .social-icon:hover .fa-patreon {
            color: #ff424d;
        }

/* ==========================================================================
   12. CRUD SHELL (Admin Pages)
   ========================================================================== */
.crud-shell {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    color: var(--text-dark);
}

    .crud-shell h1 {
        margin-bottom: 1rem;
        color: var(--bg-primary);
    }

    .crud-shell table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 1rem;
    }

    .crud-shell th,
    .crud-shell td {
        padding: 10px;
        border-bottom: 1px solid #ddd;
        text-align: left;
    }

    .crud-shell th {
        background-color: #f4f4f4;
        font-weight: 700;
    }

    .crud-shell input[type="text"],
    .crud-shell input[type="number"],
    .crud-shell input[type="email"],
    .crud-shell select,
    .crud-shell textarea {
        padding: 8px;
        border: 1px solid #ccc;
        border-radius: var(--border-radius);
        width: 100%;
        max-width: 400px;
        box-sizing: border-box;
    }

    .crud-shell textarea {
        max-width: 100%;
        min-height: 100px;
    }

    .crud-shell .image-management-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)) !important;
    }

        .crud-shell .image-management-grid .image-preview {
            max-height: 250px !important;
            width: 100%;
        }

            .crud-shell .image-management-grid .image-preview img {
                width: 100% !important;
                height: 100% !important;
                object-fit: contain !important;
                max-width: 100%;
                max-height: 250px;
            }

/* ==========================================================================
   13. MODALS
   ========================================================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

    .modal.show {
        display: block;
    }

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10% auto;
    max-width: 500px;
}

.modal-content {
    background-color: var(--bg-secondary);
    border: 2px solid var(--accent-copper);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--accent-copper);
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-light);
    margin: 0;
}

.modal-header .btn-close {
    filter: invert(1);
}

.modal-body {
    padding: 1.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 1.5rem;
    border-top: 1px solid var(--accent-copper);
}

.modal .btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.modal .btn-primary {
    background-color: var(--accent-teal);
    color: var(--text-light);
}

    .modal .btn-primary:hover {
        background-color: var(--accent-copper);
    }

.modal .btn-secondary {
    background-color: var(--bg-tertiary);
    color: var(--text-light);
}

    .modal .btn-secondary:hover {
        background-color: var(--accent-warning);
        color: var(--text-light);
    }

/* Scrollable modal — body constrained, footer always visible */
.modal-dialog-scrollable .modal-body {
    max-height: 60vh;
    overflow-y: auto;
}

.modal .form-check {
    display: block;
    padding-left: 15px;
    text-indent: -15px;
    margin-bottom: 0.4rem;
}

.modal .form-check-input {
    width: 15px;
    height: 15px;
    padding: 0;
    margin: 0;
    vertical-align: bottom;
    position: relative;
    top: -6px;
    float: none;
}

.modal .form-check-label {
    text-indent: 0;
    padding-left: 4px;
}

/* ==========================================================================
   14. BROWSE PAGE
   ========================================================================== */

/* --- Page header --- */
.browse-header h1 {
    color: var(--text-light);
}

/* --- Search & Sort Controls --- */
.browse-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.search-form {
    display: flex;
    gap: 0.5rem;
    flex: 1;
    min-width: 300px;
}

/* --- Results Header --- */
.results-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

    .results-header p {
        margin: 0;
        color: var(--text-muted);
        font-size: 0.95rem;
    }

/* --- Filters Sidebar --- */
.browse-filters {
    background: var(--bg-primary);
    padding: 1rem;
    border-radius: var(--border-radius);
}

    .browse-filters h3 {
        color: var(--text-light);
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid var(--accent-copper);
    }

/* Search & sort row inside sidebar */
.search-sort-row {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.search-form-inline {
    display: flex;
    gap: 0.5rem;
    flex: 1 1 auto;
    max-width: calc(100% - 150px);
}

.search-input-sidebar {
    flex: 1;
    padding: 0.6rem 0.9rem;
    border: 2px solid rgba(188, 118, 95, 0.3);
    background: var(--bg-primary);
    color: var(--text-light);
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

    .search-input-sidebar:focus {
        outline: none;
        border-color: var(--accent-copper);
        box-shadow: 0 0 0 3px rgba(188, 118, 95, 0.1);
    }

    .search-input-sidebar::placeholder {
        color: rgba(188, 118, 95, 0.5);
    }

.btn-search-sidebar {
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, var(--accent-copper) 0%, #a86650 100%);
    color: var(--text-light);
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

    .btn-search-sidebar:hover {
        background: linear-gradient(135deg, var(--accent-teal) 0%, #4ab8c5 100%);
        transform: translateY(-2px);
    }

.sort-dropdown-sidebar {
    padding: 0.6rem 0.9rem;
    padding-right: 2rem;
    border: 2px solid rgba(188, 118, 95, 0.3);
    background: var(--bg-primary);
    color: var(--text-light);
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    flex: 0 0 auto;
    width: auto;
    max-width: 130px;
}

    .sort-dropdown-sidebar:focus {
        outline: none;
        border-color: var(--accent-copper);
        box-shadow: 0 0 0 3px rgba(188, 118, 95, 0.1);
    }

    .sort-dropdown-sidebar:hover {
        border-color: var(--accent-teal);
    }

    .sort-dropdown-sidebar option {
        background: var(--bg-secondary);
        color: var(--text-light);
    }

/* --- Filter Rows --- */
.filter-buttons-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.filter-row {
    flex: 0 1 auto;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--accent-copper);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--bg-secondary);
}

    .filter-row:hover {
        background: var(--bg-tertiary);
        border-left: 3px solid var(--accent-teal);
    }

.filter-label {
    font-weight: 600;
    color: var(--text-light);
    font-size: 1rem;
    flex: 0 0 auto;
}

.filter-value {
    margin-left: auto;
    margin-right: 1rem;
    color: var(--accent-teal);
    font-size: 0.9rem;
    font-weight: 600;
}

.filter-section {
    padding: 1rem;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--accent-copper);
}

    .filter-section h4 {
        color: var(--text-light);
        margin-bottom: 0.75rem;
        font-size: 1rem;
    }

/* --- Active filters bar & chips --- */
.active-filters {
    padding: 1rem;
    background: var(--bg-tertiary);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    background: var(--accent-copper);
    color: white;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

    .filter-chip a {
        color: white;
        text-decoration: none;
        font-weight: bold;
        cursor: pointer;
        margin-left: 0.25rem;
    }

        .filter-chip a:hover {
            color: var(--accent-teal);
        }

.filter-chip-form {
    display: inline;
}

.chip-remove {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: inherit;
    font-size: inherit;
}

.clear-filters {
    margin-left: auto;
    color: var(--accent-teal);
    text-decoration: underline;
    font-weight: 600;
}

/* --- Pagination --- */
.pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
}

.page-size-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.page-size-dropdown {
    padding: 0.375rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background: var(--bg-primary);
    color: var(--text-light);
}

/* ==========================================================================
   15. BOOK DETAIL PAGE
   ========================================================================== */
.book-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.page-title {
    color: var(--text-light);
    font-size: 3rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-copper);
}

.breadcrumb {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

    .breadcrumb a {
        color: var(--accent-teal);
        text-decoration: none;
    }

        .breadcrumb a:hover {
            color: var(--accent-copper);
        }

.product-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-copper);
}

    .product-header h1 {
        color: var(--text-light) !important;
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

.product-status-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.product-image-gallery {
    display: grid;
    gap: 1rem;
}

.gallery-image {
    position: relative;
    background: var(--bg-secondary);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

    .gallery-image img {
        width: 100%;
        height: auto;
        display: block;
    }

.image-type-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.8);
    color: var(--accent-copper);
    padding: 0.5rem;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-image-placeholder img {
    width: 100%;
    border-radius: var(--border-radius-lg);
}

.main-image-container {
    background: var(--bg-secondary);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 1rem;
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
}

.current-image-label {
    text-align: center;
    color: var(--accent-copper);
    font-weight: 600;
    padding: 0.5rem;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.thumbnail-item {
    position: relative;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all var(--transition-normal);
}

    .thumbnail-item:hover {
        border-color: var(--accent-teal);
        transform: scale(1.05);
    }

    .thumbnail-item img {
        width: 100%;
        height: auto;
        display: block;
    }

.thumbnail-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.8);
    color: var(--accent-copper);
    font-size: 0.7rem;
    padding: 0.2rem;
    text-align: center;
}

.image-management-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.image-card {
    border: 1px solid #ddd;
    border-radius: var(--border-radius-lg);
    padding: 0.5rem;
    background: #fff;
    cursor: move;
    transition: all 0.2s;
}

    .image-card:hover {
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        transform: translateY(-2px);
    }

.image-preview {
    position: relative;
    aspect-ratio: 2/3;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-bottom: 0.5rem;
    background: #f5f5f5;
    max-height: 300px;
}

    .image-preview img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        background: #f5f5f5;
    }

.primary-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: var(--accent-teal);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: var(--border-radius);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.image-info {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.image-actions {
    display: flex;
    gap: 0.25rem;
}

    .image-actions .btn {
        flex: 1;
        font-size: 0.85rem;
    }

.product-info-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-price-box {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    border: 2px solid var(--accent-copper);
}

.price-display {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-copper);
    margin-bottom: 1rem;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-action {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: center;
    text-decoration: none;
    display: block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-teal) 0%, #4ab8c5 100%);
    color: white;
}

    .btn-primary:hover:not(:disabled) {
        background: linear-gradient(135deg, #4ab8c5 0%, var(--accent-teal) 100%);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(86, 201, 214, 0.4);
    }

    .btn-primary:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-light);
    border: 2px solid var(--accent-copper);
}

    .btn-secondary:hover {
        background: var(--accent-copper);
        color: var(--text-light);
        transform: translateY(-2px);
    }

.sold-notice {
    text-align: center;
    color: var(--text-light);
}

.info-section {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
}

    .info-section h3 {
        color: var(--accent-copper);
        font-size: 1.3rem;
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid rgba(188, 118, 95, 0.3);
    }

    .info-section p,
    .info-section p strong {
        color: var(--text-light);
    }

.info-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem 1.5rem;
    color: var(--text-light);
}

    .info-grid dt {
        font-weight: 600;
        color: var(--text-muted);
    }

    .info-grid dd {
        margin: 0;
    }

.grade-value,
.grade-score {
    color: var(--accent-yellow);
    font-weight: 700;
}

.special-feature {
    border: 2px solid var(--accent-copper);
}

.badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.contributors-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contributor-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: var(--bg-tertiary);
    border-radius: var(--border-radius);
}

.contributor-name {
    color: var(--text-light);
    font-weight: 600;
}

.contributor-role {
    color: var(--accent-teal);
    font-size: 0.9rem;
    font-style: italic;
}

.description-text {
    color: var(--text-light);
    line-height: 1.6;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}

    .empty-state h2 {
        color: var(--accent-copper);
        margin-bottom: 1rem;
    }

    .empty-state a {
        color: var(--accent-teal);
        text-decoration: none;
        font-weight: 600;
    }

/* ==========================================================================
   16. UTILITY CLASSES
   ========================================================================== */
.text-center {
    text-align: center;
}

.text-light {
    color: var(--text-light);
}

.text-muted {
    color: var(--text-muted);
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: var(--spacing-sm);
}

.mb-2 {
    margin-bottom: var(--spacing-md);
}

.mt-2 {
    margin-top: var(--spacing-md);
}

/* ==========================================================================
   17. AGE VERIFICATION BLUR
   ========================================================================== */
body:not(.age-verified) .product-image img,
body:not(.age-verified) .genre-card {
    filter: blur(20px);
    transition: filter 0.3s ease;
}

body.age-verified .product-image img,
body.age-verified .genre-card {
    filter: blur(0);
}

/* ==========================================================================
   18. RESPONSIVE DESIGN
   ========================================================================== */
body {
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 3rem;
    }

    .logo-image {
        max-height: 70px;
    }

    #logo h1 a {
        font-size: 1.5rem;
    }

    #header .container {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }

    #nav {
        position: static;
        transform: none;
        margin-top: 0.75rem;
        width: 100%;
    }

        #nav > ul {
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: flex-start;
            gap: 0.25rem;
        }

            #nav > ul > li {
                margin-left: 0;
            }

                #nav > ul > li > a {
                    white-space: normal;
                    padding: 0.5em 0.8em;
                    font-size: 0.85em;
                }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: var(--spacing-sm);
    }

    .vip-form {
        flex-direction: column;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .social-links {
        gap: 1rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .news-post-card {
        grid-template-columns: 1fr;
    }

        .news-post-card .post-image img {
            height: 200px;
        }
}

@media (max-width: 992px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   19. NEWS PAGES
   ========================================================================== */

/* --- Legacy News page (Pages/News.cshtml) --- */
.news-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.news-header {
    text-align: center;
    margin-bottom: 3rem;
}

    .news-header h1 {
        font-family: var(--font-heading);
        font-size: 3em;
        color: var(--text-light);
        margin-bottom: 0.5rem;
    }

.news-posts {
    display: grid;
    gap: 2rem;
}

.news-post-card {
    background: var(--bg-secondary);
    border: 1px solid var(--accent-copper);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 300px 1fr;
    transition: transform var(--transition-fast);
}

    .news-post-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    padding: 2rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9em;
}

.post-category {
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8em;
}

    .post-category.newarrivals {
        background: var(--accent-teal);
        color: var(--bg-primary);
    }

    .post-category.sale {
        background: var(--accent-warning);
        color: white;
    }

    .post-category.event {
        background: var(--accent-green);
        color: white;
    }

    .post-category.announcement {
        background: var(--accent-yellow);
        color: var(--bg-primary);
    }

.post-date {
    color: var(--text-muted);
}

.post-title {
    font-family: var(--font-heading);
    font-size: 1.8em;
    margin-bottom: 1rem;
}

    .post-title a {
        color: var(--text-light);
        text-decoration: none;
    }

        .post-title a:hover {
            color: var(--accent-teal);
        }

.post-excerpt {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.read-more {
    color: var(--accent-teal);
    text-decoration: none;
    font-weight: 600;
}

    .read-more:hover {
        text-decoration: underline;
    }

/* --- Customer News pages (Customer/News/) --- */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.news-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

    .news-card:last-child {
        border-bottom: none;
    }

.news-card-image {
    flex: 0 0 220px;
}

    .news-card-image img {
        width: 100%;
        height: 150px;
        object-fit: cover;
        border-radius: var(--border-radius-lg);
        display: block;
    }

.news-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.news-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.news-date {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.news-author {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-style: italic;
}

.news-category-badge {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    border-radius: var(--border-radius);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
}

.news-cat-default {
    background: var(--bg-tertiary);
    color: var(--accent-copper);
}

.news-cat-arrivals {
    background: #0d6efd;
}

.news-cat-sale {
    background: var(--accent-warning);
}

.news-cat-event {
    background: var(--accent-green);
}

.news-cat-update {
    background: var(--accent-teal);
    color: var(--text-dark);
}

.news-cat-announcement {
    background: var(--accent-yellow);
    color: var(--text-dark);
}

.news-card-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin: 0;
}

    .news-card-title a {
        color: var(--text-light);
        text-decoration: none;
        transition: color var(--transition-fast);
    }

        .news-card-title a:hover {
            color: var(--accent-copper);
        }

.news-card-excerpt {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.news-read-more {
    color: var(--accent-teal);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
    text-decoration: none;
    transition: color var(--transition-fast);
}

    .news-read-more:hover {
        color: var(--accent-copper);
    }

.news-detail-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--accent-copper);
}

    .news-detail-header .news-card-meta {
        margin-bottom: 0.75rem;
    }

.news-detail-excerpt {
    color: var(--accent-copper);
    font-size: 1.15rem;
    font-weight: 600;
    margin: 1rem 0 0 0;
    line-height: 1.5;
}

.news-detail-image {
    margin-top: 1.5rem;
}

    .news-detail-image img {
        width: 100%;
        max-height: 420px;
        object-fit: cover;
        border-radius: var(--border-radius-lg);
        display: block;
    }

.news-detail-body {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
    padding: 2rem 0;
}

    .news-detail-body h1,
    .news-detail-body h2,
    .news-detail-body h3,
    .news-detail-body h4,
    .news-detail-body h5,
    .news-detail-body h6 {
        color: var(--text-light);
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .news-detail-body p {
        margin-bottom: 1rem;
    }

    .news-detail-body a {
        color: var(--accent-teal);
    }

    .news-detail-body strong {
        color: var(--text-light);
    }

    .news-detail-body ul,
    .news-detail-body ol {
        padding-left: 1.5rem;
        margin-bottom: 1rem;
    }

    .news-detail-body blockquote {
        border-left: 3px solid var(--accent-copper);
        padding-left: 1rem;
        color: var(--text-muted);
        font-style: italic;
        margin: 1rem 0;
    }

    .news-detail-body img {
        max-width: 100%;
        border-radius: var(--border-radius);
    }

.news-detail-footer {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    margin-top: 1rem;
}

/* --- Category filter bar (shared by both News pages) --- */
.news-filters {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.filter-btn {
    padding: 0.4rem 1.25rem;
    background: var(--bg-secondary);
    color: var(--text-light);
    border: 1px solid var(--accent-copper);
    border-radius: var(--border-radius);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all var(--transition-fast);
}

    .filter-btn:hover {
        background: var(--accent-copper);
        color: var(--text-light);
        border-color: var(--accent-copper);
    }

    .filter-btn.active {
        background: var(--accent-teal);
        border-color: var(--accent-teal);
        color: var(--bg-primary);
    }

/* ==========================================================================
   20. CONTENT PAGES (Contact, Privacy, Terms, VIP, etc.)
   ========================================================================== */
.content-page {
    max-width: 640px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.content-page-wide {
    max-width: 860px;
}

.content-page-header {
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--accent-copper);
}

    .content-page-header h1 {
        color: var(--text-light);
        margin-bottom: 0.75rem;
    }

.content-page-lead {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin: 0;
}

.content-page-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}

.content-form-wrap {
    margin-bottom: 3rem;
}

.content-form-group {
    margin-bottom: 1.5rem;
}

.content-label {
    display: block;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

.content-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid rgba(188, 118, 95, 0.4);
    border-radius: var(--border-radius);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
    box-sizing: border-box;
}

    .content-input:focus {
        outline: none;
        border-color: var(--accent-teal);
        box-shadow: 0 0 0 3px rgba(86, 201, 214, 0.1);
    }

    .content-input::placeholder {
        color: rgba(162, 162, 162, 0.5);
    }

.content-textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-info {
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
}

    .contact-info h3 {
        color: var(--accent-copper);
        margin-bottom: 1rem;
        font-size: 1.3rem;
    }

    .contact-info p {
        color: var(--text-light);
        margin-bottom: 0.5rem;
    }

.contact-info-label {
    color: var(--text-muted);
    font-weight: 600;
    margin-right: 0.5rem;
}

.content-page-prose {
    color: var(--text-light);
    line-height: 1.8;
}

    .content-page-prose h2 {
        color: var(--accent-copper);
        font-size: 1.5rem;
        margin-top: 2.5rem;
        margin-bottom: 0.75rem;
        padding-bottom: 0.4rem;
        border-bottom: 1px solid var(--border-color);
    }

    .content-page-prose p {
        margin-bottom: 1rem;
    }

    .content-page-prose strong {
        color: var(--text-light);
    }

    .content-page-prose a {
        color: var(--accent-teal);
    }

        .content-page-prose a:hover {
            color: var(--accent-copper);
        }

    .content-page-prose ul,
    .content-page-prose ol {
        padding-left: 1.5rem;
        margin-bottom: 1rem;
    }

    .content-page-prose li {
        margin-bottom: 0.4rem;
        color: var(--text-muted);
    }

/* ==========================================================================
   FEATURED NEWS (Homepage & News Index)
   ========================================================================== */

/* Homepage featured news section */
.featured-news-section {
    background: var(--bg-secondary);
    padding: var(--spacing-lg) var(--spacing-md);
}

.featured-news-card {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 2.5rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--accent-copper);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    text-decoration: none;
    transition: all var(--transition-normal);
}

    .featured-news-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
        border-color: var(--accent-teal);
    }

.featured-news-image {
    overflow: hidden;
}

    .featured-news-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform var(--transition-normal);
    }

.featured-news-card:hover .featured-news-image img {
    transform: scale(1.03);
}

.featured-news-body {
    padding: 2rem 2rem 2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.featured-news-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.featured-news-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.2;
}

.featured-news-excerpt {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
}

/* Featured badge (used on both homepage card and News index) */
.news-featured-badge {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    background: var(--accent-yellow);
    color: var(--text-dark);
    border-radius: var(--border-radius);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Featured card highlight on News index */
.news-card-featured {
    border-left: 3px solid var(--accent-yellow);
    background: rgba(255, 215, 0, 0.04);
}

@media (max-width: 768px) {
    .featured-news-card {
        grid-template-columns: 1fr;
    }

    .featured-news-body {
        padding: 1.5rem;
    }

    .featured-news-image img {
        height: 220px;
    }
}
