.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(31, 45, 61, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease;
    z-index: 9998;
}

.cart-drawer-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: calc(100vw - 20px);
    height: 100vh;
    background: #fff;
    box-shadow: -12px 0 40px rgba(31, 45, 61, 0.16);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
}

.cart-drawer.is-open {
    transform: translateX(0);
}

.cart-drawer__close {
    align-self: flex-end;
    border: 0;
    background: transparent;
    font-size: 30px;
    line-height: 1;
    color: #6b7280;
    cursor: pointer;
    margin-bottom: 10px;
}

.cart-drawer__header {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 22px;
}

.cart-drawer__icon {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: #d8f4e2;
    color: #3f6b52;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px;
}

.cart-drawer__title {
    font-size: 22px;
    font-weight: 700;
    color: #2f4638;
}

.cart-drawer__subtitle {
    font-size: 14px;
    color: #64756b;
    margin-top: 3px;
}

.cart-drawer__product {
    display: flex;
    gap: 14px;
    padding: 16px;
    border: 1px solid #e3eee7;
    border-radius: 16px;
    background: #fafdfb;
}

.cart-drawer__image-wrap {
    width: 84px;
    min-width: 84px;
    height: 84px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #edf3ef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-drawer__image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cart-drawer__details {
    flex: 1;
}

.cart-drawer__name {
    font-size: 16px;
    font-weight: 600;
    color: #243746;
    line-height: 1.45;
    margin-bottom: 6px;
}

.cart-drawer__qty {
    font-size: 14px;
    color: #667a70;
}

.cart-drawer__footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 24px;
}

.cart-drawer__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    padding: 0 18px;
    border: 0;
    cursor: pointer;
}

.cart-drawer__btn--primary {
    background: #6fa285;
    color: #fff;
}

.cart-drawer__btn--primary:hover {
    background: #5f9275;
    color: #fff;
}

.cart-drawer__btn--secondary {
    background: #eef7f1;
    color: #315443;
}

.cart-drawer__btn--secondary:hover {
    background: #e3f1e8;
}

body.cart-drawer-open {
    overflow: hidden;
}

@media (max-width: 575px) {
    .cart-drawer {
        width: 100%;
        max-width: 100%;
        padding: 20px 16px;
    }
}