/* ===============================
   VARIABLES YOUTUBE STYLE
================================= */
:root {
    --yt-bg: #0f0f0f;
    --yt-card: #1a1a1a;
    --yt-border: #2a2a2a;
    --yt-text: #ffffff;
    --yt-muted: #aaaaaa;
    --yt-red: #ff0000;
    --yt-amber: #ffb300;
}


.collection-section {
            max-width: 1200px;
            width: 100%;
            padding: 40px 30px;
            background-color: #0F0F0F;
            border-radius: 16px;
            margin: 20px auto;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-header h1 {
            font-size: 2.5rem;
            color: #FFFFFF;
            margin-bottom: 10px;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .section-header p {
            font-size: 1.1rem;
            color: #AAAAAA;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .artist-name {
            color: #FF0000;
            font-weight: 700;
            position: relative;
            display: inline-block;
        }

        .artist-name::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #FF0000, transparent);
            border-radius: 1px;
        }

/* ===============================
   SECTION PRODUITS
================================= */
.products-section.home-shop {
    background: var(--yt-bg);
}

/* ===============================
   HEADER SECTION
================================= */
.products-section .section-header h2 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.products-section .section-header p {
    max-width: 700px;
    margin: 0 auto;
}

/* ===============================
   CARD PRODUIT
================================= */
.yt-card {
    background: var(--yt-card);
    border: 1px solid var(--yt-border);
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}

.yt-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,.4);
}

/* ===============================
   THUMBNAIL
================================= */
.yt-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
}

.yt-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.yt-card:hover .yt-thumb img {
    transform: scale(1.06);
}

.yt-thumb-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1c1c1c, #2c2c2c);
}

/* ===============================
   BADGES
================================= */
.yt-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 6px;
}

.yt-badge {
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
}

.yt-badge--red {
    background: var(--yt-red);
    color: #fff;
}

.yt-badge--amber {
    background: var(--yt-amber);
    color: #000;
}

/* ===============================
   META CONTENU
================================= */
.yt-meta {
    padding: 14px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* TITRE */
.yt-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 6px;
}

.yt-title a {
    color: var(--yt-text);
}

.yt-title a:hover {
    color: var(--yt-red);
}

/* DESCRIPTION */
.yt-desc {
    font-size: 0.85rem;
    color: var(--yt-muted);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
}

/* ===============================
   PRIX / CATEGORIE
================================= */
.yt-submeta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.yt-price {
    font-weight: 700;
    color: var(--yt-text);
}

.yt-category {
    color: var(--yt-muted);
    text-transform: uppercase;
    font-size: 0.7rem;
}

 .yt-actions {
            display: flex;
            gap: .5rem;
            flex-wrap: wrap;
            margin-top: .35rem;
        }

        .yt-actions .btn {
            border-radius: 10px;
        }

        .btn-wa {
            background: #25D366;
            border-color: #25D366;
            color: #111;
            font-weight: 700;
        }
        .btn-wa:hover { background: #1fb85a; border-color: #1fb85a; }

/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 768px) {
    .yt-actions .btn {
        flex: 100%;
    }
}

/* ===============================
   OMBRE ROUGE SUBTILE - PRODUITS
================================= */
.yt-card {
    box-shadow:
        0 4px 12px rgba(255, 0, 0, 0.08),
        0 8px 24px rgba(0, 0, 0, 0.45);
}

/* Effet renforcé au hover */
.yt-card:hover {
    box-shadow:
        0 6px 18px rgba(255, 0, 0, 0.18),
        0 16px 40px rgba(0, 0, 0, 0.6);
}
