.vouchers-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 120px 0;
    position: relative;
    overflow: visible;
    min-height: auto;
}

.vouchers-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.vouchers-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.vouchers-title {
    color: #DDBE58;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.vouchers-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #DDBE58, #c4a94a);
    border-radius: 2px;
}

.vouchers-subtitle {
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    margin: 0;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-title-wrapper {
    margin-bottom: 40px;
}

.section-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #DDBE58, #c4a94a);
    border-radius: 2px;
}

.category-section {
    margin-bottom: 80px;
    position: relative;
}

.category-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.product-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(45, 45, 45, 0.95) 100%);
    border: 1px solid rgba(221, 190, 88, 0.2);
    border-radius: 16px;
    padding: 0;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(221, 190, 88, 0.2);
    border-color: rgba(221, 190, 88, 0.4);
}

 /* Section principale */
 .vouchers-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 120px 0;
    position: relative;
    overflow: visible;
    min-height: auto;
}

/* Container principal */
.vouchers-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* En-tête de la section */
.vouchers-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.vouchers-title {
    color: #DDBE58;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.vouchers-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #DDBE58, #c4a94a);
    border-radius: 2px;
}

.vouchers-subtitle {
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    margin: 0;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Titres de section */
.section-title-wrapper {
    margin-bottom: 40px;
}

.section-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #DDBE58, #c4a94a);
    border-radius: 2px;
}

/* Sections */
.category-section {
    margin-bottom: 80px;
    position: relative;
}

/* Grilles de produits */
.category-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

/* Cartes de produits */
.product-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 100%);
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    margin-bottom: 20px;
    aspect-ratio: 4/5;
    display: flex;
    flex-direction: column;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(221, 190, 88, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(221, 190, 88, 0.2);
    z-index: 10;
}

.product-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
    position: relative;
    z-index: 2;
    align-items: center;
}

/* Images des produits - Zone de logo */
.product-image {
    width: 100%;
    height: 80%;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
    filter: brightness(0.9) contrast(1.1);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
    filter: brightness(1) contrast(1.2);
}

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #DDBE58 0%, #c4a94a 100%);
    color: #1a1a1a;
    font-size: 32px;
    font-weight: 800;
    position: relative;
}

.product-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Informations des produits - Texte en dessous */
.product-info {
    padding: 15px 12px;
    position: relative;
    z-index: 2;
    background: transparent;
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.product-name {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Animations d'entrée */
.product-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.product-card:nth-child(1) {
    animation-delay: 0.1s;
}

.product-card:nth-child(2) {
    animation-delay: 0.2s;
}

.product-card:nth-child(3) {
    animation-delay: 0.3s;
}

.product-card:nth-child(4) {
    animation-delay: 0.4s;
}

.product-card:nth-child(5) {
    animation-delay: 0.5s;
}

.product-card:nth-child(6) {
    animation-delay: 0.6s;
}

.product-card:nth-child(7) {
    animation-delay: 0.7s;
}

.product-card:nth-child(8) {
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Responsive */
@media (max-width: 768px) {
    .vouchers-section {
        padding: 80px 0;
        min-height: auto;
    }

    .vouchers-container {
        padding: 0 20px;
    }

    .vouchers-title {
        font-size: 32px;
    }

    .vouchers-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .category-products-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .vouchers-container {
        padding: 0 15px;
    }

    .vouchers-title {
        font-size: 24px;
        letter-spacing: 1px;
    }

    .vouchers-subtitle {
        font-size: 14px;
    }

    .section-title {
        font-size: 20px;
    }

    .category-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card {
        border-radius: 16px;
    }

    .product-image {
        height: 85%;
    }

    .product-info {
        padding: 12px;
        height: 15%;
    }

    .product-name {
        font-size: 12px;
    }
}