/************************************************
            PRODUCT MODAL
************************************************/

.product-modal{

    position:fixed;
    inset:0;

    background:#0b0b0b;

    z-index:99999;

    display:none;

    overflow:auto;

}

.product-sheet{

    max-width:1300px;

    margin:40px auto;

    padding:30px;

}

.close-product{

    background:none;

    border:none;

    color:#000000;

    font-size:18px;

    cursor:pointer;

    margin-bottom:30px;

}

/************************************************
                LAYOUT
************************************************/

.product-layout{

    display:grid;

    grid-template-columns:1.15fr .85fr;

    gap:60px;

    align-items:start;

}

/************************************************
                IMAGE
************************************************/

.product-main-image{

    width:100%;

    display:block;

    border-radius:24px;

}

/************************************************
                FEATURES
************************************************/

.product-features{

    display:flex;

    justify-content:space-between;

    gap:20px;

    margin-top:24px;

}

.feature{

    flex:1;

    text-align:center;

    padding:16px;

    border:1px solid rgba(221, 219, 215, 0.452);

    border-radius:16px;

    background:#121212;

    color:#fdfbfb;

    font-size:14px;

}

/************************************************
                RIGHT
************************************************/

.product-right h1{

    font-size:44px;

    color:#000000;

    margin-bottom:20px;

}

.product-right p{

    color:#000000;

    line-height:1.8;

    margin-bottom:35px;

}
/************************************************
                TAILLES
************************************************/

.product-size{

    display:flex;

    flex-direction:column;

    gap:16px;

    margin:35px 0;

}

.size{

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:22px;

    border-radius:18px;

    background:#121212;

    border:1px solid rgba(198,168,90,.20);

    color:#fff;

    cursor:pointer;

    transition:.25s;

}

.size:hover{

    border-color:#d3d2cf;

    transform:translateY(-2px);

}

.size.active{

    border:2px solid #C6A85A;

    background:rgba(198,168,90,.08);

}

.size strong{

    color:#666;

    font-size:22px;

}
/************************************************
                MESSAGE
************************************************/

.product-message{

    margin-top:35px;

}

.product-message label{

    display:block;

    margin-bottom:12px;

    color:#73c65a;

    font-size:15px;

}

.product-message textarea{

    width:100%;

    min-height:110px;

    padding:18px;

    border-radius:18px;

    border:1px solid rgba(198,168,90,.20);

    background:#121212;

    color:white;

    resize:none;

    font-size:16px;

    box-sizing:border-box;

}

.product-message textarea:focus{

    outline:none;

    border-color:#C6A85A;

}

.char-counter{

    margin-top:8px;

    text-align:right;

    color:#888;

    font-size:13px;

}
/************************************************
                QUANTITE
************************************************/

.product-qty{

    display:flex;

    align-items:center;

    gap:18px;

    margin:35px 0;

}

.product-qty button{

    width:52px;

    height:52px;

    border-radius:14px;

    border:1px solid rgba(198,168,90,.20);

    background:#111;

    color:#C6A85A;

    font-size:26px;

    cursor:pointer;

}

.product-qty span{

    font-size:26px;

    color:white;

    min-width:30px;

    text-align:center;

}
/************************************************
                BOUTON
************************************************/

.add-cart{

    width:100%;
    height:70px;

    background:linear-gradient(
        180deg,
        rgb(0, 0, 0),
        rgb(2, 2, 2)
    );

    border:1.5px solid #000000;
    border-radius:20px;

    color:#fff;

    font-size:22px;
    font-weight:700;
    letter-spacing:.4px;

    transition:.25s;
}

.add-cart:hover{

    background:rgb(255, 255, 255);
    color:#000;
    box-shadow:0 10px 28px rgba(198,168,90,.18);

    transform:translateY(-2px);

}
/* ==========================================
   PRODUCT MODAL - MOBILE PREMIUM V1
========================================== */

@media (max-width:768px){

.product-sheet{
    margin:0;
    padding:18px;
}

.product-layout{
    display:flex;
    flex-direction:column;
    gap:28px;
}

.product-main-image{
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
    border-radius:24px;
}

.product-features{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
    margin-top:18px;
}

.feature{
    padding:14px 8px;
    border-radius:16px;
    font-size:12px;
}

.product-right h1{
    font-size:34px;
    text-align:center;
    margin-bottom:12px;
}

.product-right p{
    text-align:center;
    font-size:15px;
    line-height:1.7;
    margin-bottom:28px;
}

.product-size{
    gap:14px;
    margin:26px 0;
}

.size{
    padding:20px;
    border-radius:18px;
}

.size strong{
    font-size:20px;
}

.product-message{
    margin-top:25px;
}

.product-message textarea{
    min-height:120px;
    font-size:16px;
}

.product-qty{
    justify-content:center;
    gap:22px;
    margin:30px 0;
}

.product-qty button{
    width:56px;
    height:56px;
    font-size:28px;
    border-radius:16px;
}

.product-qty span{
    font-size:28px;
    min-width:40px;
}

.add-cart{
    height:64px;
    font-size:20px;
    border-radius:18px;
}

}
/* ==========================================
   CHECKOUT MOBILE FIX
========================================== */

@media (max-width:768px){

.cart-item{

    display:grid;
    grid-template-columns:80px 1fr;
    gap:14px;
    align-items:start;

}

.cart-photo img{

    width:80px;
    height:80px;

}

.cart-content{

    width:100%;
    min-width:0;

}

.cart-top{

    display:block;

}

.cart-name{

    font-size:20px;
    line-height:1.15;
    margin-bottom:4px;

}

.cart-size{

    font-size:13px;

}

.cart-price{

    font-size:16px;
    margin-bottom:12px;

}

.cart-controls{

    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    flex-wrap:nowrap;

}

.qty-controls{

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    width:100%;

}

.qty-controls button,
.qty-minus,
.qty-plus{

    width:42px !important;
    height:42px !important;

    font-size:22px !important;

    border-radius:14px !important;

}

.qty{

    min-width:24px;
    text-align:center;
    font-size:20px !important;

}

}
/* ==========================================
   CHECKOUT - FIX SCROLL HORIZONTAL
========================================== */

@media (max-width:768px){

.checkout-modal,
.checkout-content,
.checkout-step,
.product-modal,
.product-sheet{

    width:100%;
    max-width:100%;
    overflow-x:hidden;

}

body.checkout-open{

    overflow:hidden;
    touch-action:pan-y;

}

}
.checkout-box{

    width:100%;
    max-width:100%;
    overflow:hidden;

}
/* ===============================
   MOBILE - FIX SCROLL HORIZONTAL
================================= */

@media (max-width:768px){

.cart-modal{
    overflow-x:hidden;
}

.cart-sheet{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
    box-sizing:border-box;
}

.checkout-inline{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
}

.delivery-options{
    grid-template-columns:1fr;
}

}
/* ==========================================
   MOBILE TYPOGRAPHY V2
========================================== */

@media (max-width:768px){

/* ---------- HERO ---------- */

.hero-title{

    font-size:48px !important;
    line-height:0.95;

}

.hero-subtitle{

    font-size:18px;
    line-height:1.5;

}

.hero-badge{

    font-size:11px;
    padding:10px 18px;

}

.hero-button{

    width:220px;
    height:56px;

    font-size:18px;
    letter-spacing:2px;

}

/* ---------- CARTES PRODUITS ---------- */

.menu-card{

    padding-bottom:18px;

}

.menu-card h3{

    font-size:18px;
    line-height:1.15;
    min-height:44px;

}

.menu-card p{

    font-size:13px;
    line-height:1.45;
    min-height:56px;

}

.menu-card .price{

    font-size:16px;
    margin:16px 0;

}

/* ---------- BOUTON ---------- */

.menu-card .btn,
.menu-card button{

    width:calc(100% - 24px);

    margin:0 auto;

    height:46px;

    font-size:14px;

    letter-spacing:2px;

    padding:0 12px;

    white-space:nowrap;

    overflow:hidden;

    text-overflow:ellipsis;

}

}
@media (max-width:480px){

.menu-grid{

    grid-template-columns:1fr;

}

}

