/*
|--------------------------------------------------------------------------
| La Florette Doll Society
| Product Details Card — Version 1
|--------------------------------------------------------------------------
*/

body.single-product .product_meta {
    box-sizing: border-box;
    width: 100%;
    max-width:290px;
    margin: 24px 0 0;
    padding: 16px 18px;
    font-size:0.82em;
    line-height:1.5;


    background: #fff9fc;
    border: 1px solid #eadfe5;
    border-radius: 20px;

    box-shadow: 0 12px 35px rgba(38, 25, 32, 0.06);
}

/* Titre automatique de la carte */
body.single-product .product_meta::before {
    content: "item summary";
    display: block;
    margin-bottom: 18px;

    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #222222;
}

/* Une ligne par information */
body.single-product .product_meta > span {
    display: block;
    margin: 0;
    padding: 10px 0;

    font-size: 16px;
    line-height: 1.65;
    color: #292529;

    border-bottom: 1px solid #eee5ea;
}

/* Retire la ligne sous le dernier élément */
body.single-product .product_meta > span:last-child {
    border-bottom: 0;
}

/* Valeur du SKU */
body.single-product .product_meta .sku {
    color: #8e858b;
}

/* Liens : catégorie, tags et marque */
body.single-product .product_meta a {
    display: inline-block;
    margin: 3px 5px 3px 0;
    padding: 4px 10px;

    font-size: 12px;
    line-height: 1.4;
    text-decoration: none;

    color: #5f565c;
    background: #f4edf1;
    border-radius: 999px;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

body.single-product .product_meta a:hover {
    color: #222222;
    background: #eadde5;
}

/* Adaptation mobile */
@media only screen and (max-width: 680px) {
    body.single-product .product_meta {
        margin-top: 32px;
        padding: 24px;
        border-radius: 16px;
    }

    body.single-product .product_meta > span {
        font-size: 15px;
    }
}
/* =========================================================
   Accordéons — Official Model
   ========================================================= */

body.single-product .lfds-accordion-group {
    margin-top: 28px;
}

body.single-product .lfds-accordion {
    border-bottom: 1px solid #222;
}

body.single-product .lfds-accordion:first-child {
    border-top: 1px solid #777;
}

body.single-product .lfds-accordion summary {
    position: relative;
    display: block;
    padding: 18px 58px 18px 0;

    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    font-family: inherit;
    text-transform: uppercase;
    color:#3c3c3c;

    cursor: pointer;
    list-style: none;
}

body.single-product .lfds-accordion summary::-webkit-details-marker {
    display: none;
}

body.single-product .lfds-accordion summary::after {
    content:"▾";

    position: absolute;
    top: 50%;
    right: 0;
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translateY(-50%);
    background: #f7f7f7;

    font-size: 28px;
    font-weight: 300;
    line-height: 1;
}

body.single-product .lfds-accordion[open] summary::after {
    content:"▴";
}

body.single-product .lfds-accordion-content {
    padding: 4px 0 24px;
}

body.single-product .lfds-accordion-content ul {
    margin: 0;
    padding-left: 24px;
}

body.single-product .lfds-accordion-content li {
    margin-bottom: 8px;
}
/* Note fabricant placée en fin du premier accordéon */
body.single-product .lfds-manufacturer-note {
    margin: 18px 0 0;
    font-size: 14px;
    line-height: 1.6;
    font-style: italic;
    color: #999;
}
/* =========================================================
   Life in My Doll Society
   ========================================================= */

body.single-product .lfds-society-section {
    margin-top: 52px;
}

body.single-product .lfds-society-title {
    margin: 0 0 24px;

    font-size: clamp(42px, 5vw, 76px);
    font-weight: 400;
    line-height: 0.95;
    text-transform: uppercase;

    color: transparent;
    -webkit-text-stroke: 1px #222;
    text-stroke: 1px #222;
}

body.single-product .lfds-society-accordions {
    margin-top: 0;
}
/* =========================================================
   Espacement de la section Overview
   ========================================================= */

body.single-product .lfds-overview-title {
    margin: 64px 0 14px !important;
}

/* Rapproche la carte rose de son titre Overview */
body.single-product .product_meta {
    margin-top: 0 !important;
}
/* =========================================================
   Données dynamiques — Official Identification
   ========================================================= */

body.single-product .lfds-data-list {
    margin: 0;
}

body.single-product .lfds-data-row {
    display: grid;
    grid-template-columns: minmax(130px, 0.8fr) minmax(0, 1.2fr);
    gap: 18px;

    padding: 8px 0;
}

body.single-product .lfds-data-row dt,
body.single-product .lfds-data-row dd {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
}

body.single-product .lfds-data-row dt {
    font-weight: 600;
    color: #3c3c3c;
}

body.single-product .lfds-data-row dd {
    color: #8a8a8a;
}

@media (max-width: 680px) {
    body.single-product .lfds-data-row {
        grid-template-columns: 1fr;
        gap: 2px;
    }
}