body.prophera-cart-open {
    overflow: hidden;
}
.prophera-cart-backdrop {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 99998;
}
.prophera-cart-backdrop.is-open {
    display: block !important;
}
.prophera-cart-panel {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: auto !important;
    width: 380px !important;
    max-width: 100% !important;
    height: 100% !important;
    background: #fff !important;
    z-index: 99999 !important;
    display: flex !important;
    flex-direction: column !important;
    visibility: visible !important;
    transform: translateX(100%) !important;
    transition: transform 0.25s ease;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.18);
    overflow: hidden;
}
.prophera-cart-panel.is-open,
.prophera-cart-panel.show {
    transform: translateX(0) !important;
}
.prophera-cart-header,
.prophera-cart-footer {
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}
.prophera-cart-footer {
    border-bottom: 0;
    border-top: 1px solid #eee;
    flex-direction: column;
    align-items: stretch;
    margin-top: auto;
}
.prophera-cart-title {
    margin: 0;
    font-size: 16px;
    color: #031b4e;
}
.prophera-cart-close {
    border: 0;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #031b4e;
}
.prophera-cart-body {
    padding: 16px 20px;
    overflow: auto;
    flex: 1;
}
.prophera-cart-empty {
    text-align: center;
    padding: 40px 10px;
    color: #8a91ac;
}
.prophera-cart-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}
.prophera-cart-total {
    font-size: 18px;
    margin-bottom: 16px;
}
.prophera-cart-checkout,
.prophera-cart-continue {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px 12px;
    border-radius: 4px;
    margin-bottom: 8px;
    border: 0;
    cursor: pointer;
}
.prophera-cart-checkout {
    background: #264175;
    color: #fff !important;
    font-weight: 700;
}
.prophera-cart-continue {
    background: #fff;
    border: 1px solid #d7dbe7;
    color: #031b4e;
}

.checkout-steps {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}
.checkout-steps span {
    background: #f4f7fb;
    color: #6b7394;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}
.checkout-steps span.is-active {
    background: #264175;
    color: #fff;
}
.checkout-login-banner {
    background: #eef3fb;
    border: 1px solid #d5e0f2;
    border-radius: 8px;
    padding: 14px 18px;
    color: #031b4e;
}
.checkout-card,
.checkout-summary {
    background: #fff;
    border: 1px solid #e6ebf3;
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 22px;
    box-shadow: 0 8px 24px rgba(3, 27, 78, 0.04);
}
.checkout-card h4,
.checkout-summary h4 {
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eef1f6;
    color: #031b4e;
    font-size: 18px;
}
.checkout-address-option,
.checkout-pay-option {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border: 1px solid #e6ebf3;
    border-radius: 8px;
    padding: 12px 14px;
    margin-bottom: 10px;
    cursor: pointer;
}
.checkout-address-option:hover,
.checkout-pay-option:hover {
    border-color: #264175;
}
.checkout-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #eef1f6;
}
.checkout-item img {
    width: 54px;
    height: 54px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #eee;
}
.checkout-item div {
    flex: 1;
}
.checkout-totals {
    padding-top: 12px;
}
.checkout-totals > div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: #5b6485;
}
.checkout-grand {
    margin-top: 10px;
    padding-top: 12px;
    border-top: 1px solid #eef1f6;
    color: #031b4e !important;
    font-size: 18px;
}
.checkout-summary .w-100 {
    width: 100%;
}
.checkout-bank {
    background: #f7f9fc;
    padding: 16px;
    border-radius: 8px;
}
