        :root {
            --burgundy: #8B0000;
            --gold: #C4A267;
            --navy: #000022;
            --ivory: #F9F6F0;
            --taupe: #D8D0C5;
        }


        body {
            font-family: 'Cormorant Garamond', serif;
            background-color: var(--ivory);
            color: var(--navy);
            line-height: 1.8;
            margin: 0;
        }

        /* Header Style */
        .category-header {
            background: linear-gradient(rgba(0, 0, 34, 0.8), rgba(0, 0, 34, 0.8)), 
                        url('https://images.unsplash.com/photo-1514933651103-005eec06c04b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover;
            height: 40vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--ivory);
            position: relative;
            margin-bottom: 3rem;
        }

        .category-header-content {
            max-width: 800px;
            padding: 0 2rem;
        }

        .category-title {
            font-family: 'Parisienne', cursive;
            font-size: 4rem;
            margin-bottom: 1rem;
            color: var(--gold);
        }

        /* Category Navigation */
        .category-nav {
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 10;
        }

        .category-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .category-tabs {
            display: flex;
            overflow-x: auto;
            padding: 1rem 0;
            scrollbar-width: none;
        }

        .category-tabs::-webkit-scrollbar {
            display: none;
        }

        .category-tab {
            padding: 0.8rem 1.5rem;
            margin-right: 1rem;
            white-space: nowrap;
            color: var(--navy);
            text-decoration: none;
            position: relative;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border-radius: 4px;
        }

        .category-tab:hover {
            color: var(--burgundy);
        }

        .category-tab.active {
            color: var(--burgundy);
            font-weight: 600;
        }

        .category-tab.active:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--burgundy);
            animation: underline 0.3s ease-out;
        }

        @keyframes underline {
            from { transform: scaleX(0); }
            to { transform: scaleX(1); }
        }

        /* Articles Grid */
        .articles-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem 4rem;
        }

        .articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

        .article-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease-out forwards;
        }

        @keyframes fadeInUp {
            to { opacity: 1; transform: translateY(0); }
        }

        .article-card:hover {
            transform: translateY(-5px) !important;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .article-image {
            height: 250px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .article-category {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--burgundy);
            color: white;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            letter-spacing: 1px;
        }

        .article-content {
            padding: 2rem;
        }

        .article-date {
            color: var(--gold);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
        }

        .article-date:before {
            content: "•";
            margin-right: 0.5rem;
            color: var(--taupe);
        }

        .article-title {
            font-size: 1.8rem;
            margin: 1rem 0;
            font-weight: 600;
            line-height: 1.4;
        }

        .article-excerpt {
            color: var(--navy);
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .read-more {
            color: var(--burgundy);
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .read-more:hover {
            color: var(--navy);
        }

        .read-more:after {
            content: "→";
            margin-left: 0.5rem;
            transition: all 0.3s ease;
        }

        .read-more:hover:after {
            transform: translateX(5px);
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 4rem;
        }

        .pagination-list {
            display: flex;
            list-style: none;
            padding: 0;
            gap: 0.5rem;
        }

        .pagination-item {
            margin: 0 0.25rem;
        }

        .pagination-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            color: var(--navy);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid var(--taupe);
        }

        .pagination-link:hover {
            border-color: var(--burgundy);
            color: var(--burgundy);
        }

        .pagination-link.active {
            background: var(--burgundy);
            color: white;
            border-color: var(--burgundy);
        }

        .pagination-link.disabled {
            opacity: 0.5;
            pointer-events: none;
        }

        .pagination-ellipsis {
            display: flex;
            align-items: flex-end;
            padding-bottom: 0.5rem;
        }
        /* Nouveau style pour le loader */
        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(249, 246, 240, 0.9);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .loading-overlay.active {
            opacity: 1;
            pointer-events: all;
        }

        .wine-loader {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .tasting-glass {
            position: relative;
            width: 50px;
            height: 70px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 70"><path fill="none" stroke="%238B0000" stroke-width="1.5" d="M15,5 L35,5 L40,50 L25,65 L10,50 Z"/></svg>') no-repeat center;
            margin-bottom: 1.5rem;
        }

        .liquid {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 0;
            background: var(--burgundy);
            border-radius: 0 0 15px 15px;
            animation: liquidSwirl 2.5s infinite ease-in-out;
            box-shadow: 0 0 10px rgba(139, 0, 0, 0.3);
        }

        @keyframes liquidSwirl {
            0%, 100% { 
                height: 15%; 
                opacity: 0.7; 
                filter: brightness(0.9);
            }
            50% { 
                height: 60%; 
                opacity: 1; 
                border-radius: 0 0 5px 5px;
                filter: brightness(1.1);
            }
        }

        .loading-text {
            margin-top: 1rem;
            color: var(--burgundy);
            font-style: italic;
            font-size: 1.2rem;
        }
