.product-tabs {
    background: #0a0a0a;
    padding: 60px 40px;
    color: #fff;
}

/* GRID */
.tabs-container {
    display: grid;
    grid-template-columns: 160px 1fr 600px;
    gap: 50px;
    align-items: start; /* 🔥 FIX IMPORTANT */
}

/* NAV */
.tabs-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tabs-nav span {
    font-size: 12px;
    color: #777;
    position: relative;
    cursor: pointer;
}

.tabs-nav span.active {
    color: #fff;
}

.tabs-nav span.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 40px;
    height: 2px;
    background: #c9a74d;
}

/* TEXTE */
.tabs-content {
    font-size: 14px;
    color: #ccc;
    align-self: start; /* 🔥 sécurité */
}



.tabs-content li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.tabs-content p {
    margin-bottom: 15px;
}

.tabs-content ul {
    margin-top: 0;
     list-style: none; /* 🔥 enlève le rond */
}

.tabs-content li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #c9a74d;
}

/* RIGHT BLOCK */
.tabs-right {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

/* IMAGE */
.tabs-right img {
    width: 400px;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* CARD */
.tabs-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tabs-card .label {
    color: #c9a74d;
    font-size: 13px;
}

.tabs-card h3 {
    font-size: 16px;
}

.tabs-card strong {
    font-size: 16px;
}

.tabs-card button {
    border: 1px solid #c9a74d;
    background: transparent;
    color: #c9a74d;
    padding: 10px 20px;
    cursor: pointer;
}

/* TABS CONTENT */
.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

/* ===================================== */
/* ===== MOBILE ===== */
/* ===================================== */

@media (max-width: 768px) {

    /* GLOBAL */
    .product-tabs {
        padding: 30px 15px;
    }

    .tabs-container {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    /* NAV */
    .tabs-nav {
        flex-direction: row;
        justify-content: flex-start;
        gap: 20px;
        overflow-x: auto;
        padding-bottom: 5px;
    }

    .tabs-nav span {
        white-space: nowrap;
        font-size: 12px;
    }

    .tabs-nav span.active::after {
        bottom: -4px;
        width: 30px;
    }

    /* TEXTE */
    .tabs-content {
        text-align: left;
    }

    /* RIGHT BLOCK */
    .tabs-right {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    /* IMAGE */
    .tabs-right img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        border-radius: 4px;
    }

    /* CARD */
    .tabs-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 20px;
        border: 1px solid rgba(255,255,255,0.1);
        background: rgba(255,255,255,0.02);
        gap: 12px;
    }

    .tabs-card h3 {
        font-size: 15px;
    }

    .tabs-card strong {
        font-size: 16px;
    }

    .tabs-card button {
        width: 100%;
        padding: 12px;
    }

}