.mcc-shortcode-root{
    transition:opacity .18s ease;
}

.mcc-shortcode-root.mcc-is-loading{
    opacity:.58;
    pointer-events:none;
}

.mcc-wrapper{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
    margin:40px auto;
    max-width:1200px;
    font-family:Arial,sans-serif;
}

.mcc-title{
    font-size:34px;
    margin-bottom:25px;
}

.mcc-item{
    display:flex;
    align-items:center;
    gap:25px;
    padding:25px;
    border-radius:18px;
    background:#fff;
    margin-bottom:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.06);
}

.mcc-thumb{
    flex:0 0 auto;
}

.mcc-thumb img{
    display:block;
    width:120px;
    height:auto;
    border-radius:14px;
}

.mcc-details{
    flex:1;
    min-width:0;
}

.mcc-details h3{
    margin:0 0 10px;
    font-size:22px;
}

.mcc-details a{
    text-decoration:none;
    color:#111;
}

.mcc-price{
    font-size:18px;
    margin-bottom:10px;
    color:#555;
}

.mcc-qty-line{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.mcc-qty-label{
    color:#222;
    font-size:16px;
}

.mcc-qty-control{
    display:inline-flex;
    align-items:center;
    overflow:hidden;
    border:1px solid #d9d9d9;
    border-radius:9px;
    background:#fff;
}

.mcc-qty-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:32px;
    height:32px;
    padding:0;
    border:0;
    border-radius:0;
    background:#f5f5f5;
    color:#111;
    font-family:Arial,sans-serif;
    font-size:20px;
    line-height:1;
    cursor:pointer;
    transition:background-color .18s ease, color .18s ease;
}

.mcc-qty-button:hover:not(:disabled),
.mcc-qty-button:focus-visible:not(:disabled){
    background:#111;
    color:#fff;
}

.mcc-qty-button:focus-visible,
.mcc-remove-item:focus-visible{
    outline:2px solid #19bfff;
    outline-offset:2px;
}

.mcc-qty-button:disabled{
    color:#aaa;
    background:#f7f7f7;
    cursor:not-allowed;
}

.mcc-qty-value{
    min-width:38px;
    padding:0 6px;
    color:#111;
    font-size:16px;
    font-weight:600;
    line-height:32px;
    text-align:center;
}

.mcc-item-actions{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:13px;
    flex:0 0 auto;
    margin-left:auto;
}

.mcc-subtotal{
    font-size:20px;
    font-weight:bold;
    white-space:nowrap;
}

.mcc-remove-item{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:36px;
    height:36px;
    padding:0;
    border:0;
    border-radius:50%;
    background:transparent;
    color:#111;
    cursor:pointer;
    transition:color .2s ease, background-color .2s ease, transform .2s ease;
}

.mcc-remove-item:hover,
.mcc-remove-item:focus-visible{
    color:#d00000;
    background:rgba(208,0,0,.07);
    transform:translateY(-1px);
}

.mcc-remove-item svg{
    display:block;
    width:20px;
    height:20px;
}

.mcc-summary{
    background:#111;
    color:#fff;
    padding:35px;
    border-radius:22px;
    position:sticky;
    top:30px;
    height:fit-content;
}

.mcc-summary h3{
    margin-top:0;
    font-size:28px;
}

.mcc-row{
    display:flex;
    justify-content:space-between;
    gap:18px;
    margin:18px 0;
    font-size:18px;
}

.mcc-row strong{
    text-align:right;
}

.mcc-checkout-btn,
.mcc-btn{
    display:block;
    text-align:center;
    padding:16px 24px;
    border-radius:12px;
    background:#d4af37;
    color:#111;
    text-decoration:none;
    font-weight:bold;
    margin-top:25px;
    transition:transform .3s ease, opacity .3s ease;
}

.mcc-checkout-btn:hover,
.mcc-btn:hover{
    transform:translateY(-2px);
    opacity:.92;
}

.mcc-note{
    margin-top:25px;
    line-height:1.8;
    opacity:.9;
}

.mcc-empty-cart{
    text-align:center;
    padding:80px 20px;
    background:#fff;
    border-radius:22px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    max-width:700px;
    margin:50px auto;
}

.mcc-icon{
    font-size:70px;
    margin-bottom:20px;
}

.mcc-empty-cart h2{
    font-size:38px;
    margin-bottom:10px;
}

.mcc-empty-cart p{
    font-size:18px;
    color:#666;
}

@media(max-width:900px){
    .mcc-wrapper{
        grid-template-columns:minmax(0, 1.65fr) minmax(280px, 1fr);
        gap:24px;
        padding:0 15px;
    }

    .mcc-item{
        gap:18px;
        padding:20px;
    }

    .mcc-thumb img{
        width:100px;
    }

    .mcc-item-actions{
        flex-direction:column;
        align-items:flex-end;
        gap:8px;
    }
}

@media(max-width:768px){
    .mcc-wrapper{
        grid-template-columns:1fr;
    }

    .mcc-item{
        flex-direction:column;
        text-align:center;
    }

    .mcc-qty-line{
        justify-content:center;
    }

    .mcc-item-actions{
        flex-direction:row;
        align-items:center;
        justify-content:center;
        margin-left:0;
    }

    .mcc-summary{
        position:relative;
        top:auto;
    }
}
