/* Hide minicart content until JS finishes */
.mcsp-panel-body {
    opacity: 0;
    visibility: hidden;
}

/* Reveal after JS processing */
.mcsp-panel-body.czg-ready {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.15s ease;
}
.czg-qty button:hover,.czg-qty button:active,.czg-qty button:focus{
    background: #fff;
    color: rgb(107, 114, 128);
}
button.mcsp-panel-close:hover{
    background-color:unset;
    color:#fff;
}
/* PANEL HEADER */
.mcsp-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #EE6625;
    padding: 16px 18px;
    border-radius: 16px 0 0 0;
    color: #fff;
}

.mcsp-panel-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* .mcsp-panel-title::before {
    content: "🛒";
    background: rgba(255,255,255,0.2);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
} */
/* ITEM CARD */
.mcsp-panel .mcsp-panel-body .woocommerce-mini-cart-item {
    display: flex;
    gap: 14px;
    background: #fff;
    padding: 14px 0px ! IMPORTANT;
    border-radius: 16px;
    margin-bottom: 14px;
    position: relative;
}
.mcsp-mini-cart .cz-remove-item {
    position: absolute;
    top: -10px;
    right: -10px;
}
.mcsp-wrapper .mcsp-panel {
    border-radius: 16px 0 0 0;
}
li.woocommerce-mini-cart-item.mini_cart_item.czg-enhanced.czg-structured:before {
    content: none;
}
.mcsp-panel .mcsp-mini-cart .cz-remove-item a {
    background: #EE6625;
    color: #fff !important;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
}
.woocommerce-mini-cart-item img {
    width: 72px !important;
    height: 72px;
    border-radius: 14px;
    object-fit: cover;
    background: #e5efe5;
}
.woocommerce-mini-cart-item a {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    text-decoration: none;
    line-height: 1.2;
}

.woocommerce-mini-cart-item .variation,
.woocommerce-mini-cart-item small {
    display: block;
    font-size: 13px;
    color: #6b7280;
    margin-top: 4px;
}
/* QTY WRAPPER */
.czg-qty {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 0px 10px;
    background: #fff;
}

.czg-qty button {
    background: none;
    border: none;
    font-size: 18px;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
}

.czg-qty-val {
    font-size: 14px;
    font-weight: normal;
    min-width: 18px;
    text-align: center;
}
/* PRICE COLUMN */
.czg-item-price {
    margin-left: auto;
    text-align: right;
    display: block;
}

.czg-line-total {
    font-size: 16px;
    font-weight: 400;
    color: #f97316;
    line-height: 1;
    display: block;
}

.czg-unit-price {
    font-size: 12px;
    color: #9ca3af;
}
/* FOOTER */
.mcsp-panel-footer {
    padding: 18px;
    border-top: 1px solid #e5e7eb;
}

.mcsp-cart-subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.mcsp-cart-subtotal + small {
    font-size: 12px;
    color: #9ca3af;
}
/* BUTTONS */
.mcsp-cart-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.mcsp-button-checkout {
    background: #EE6625;
    color: #fff;
    padding: 14px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border: 0;
}
.mcsp-button-view-cart {
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 14px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}
.czg-item-title {
    font-weight: 400;
}
.mcsp-panel-header .mcsp-panel-close{
    padding: 0px !important;
}
.mcsp-panel-header h3.mcsp-panel-title {
    color: #fff;
}
.czg-item-variation {
    font-size: 14px;
}

.czg-item-right {
    width: 70%;
}

.czg-item-meta {
    padding-top: 5px;
    display: flex;
    align-items: center;
}

li.woocommerce-mini-cart-item.mini_cart_item.czg-enhanced.czg-structured:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
