.cart-page {
    padding: 50px 0 90px;
    background: #f7f7fd;
    min-height: 60vh;
}

.cart-panel {
    background: #fff;
    border: 1px solid #eceff8;
    border-radius: 12px;
    padding: 28px 30px;
}

.cart-panel h3 {
    font-family: "Cinzel", serif;
    color: #140C40;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.cart-table img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border: 1px solid #eceff8;
    border-radius: 8px;
    padding: 6px;
    background: #fff;
}

.cart-qty-box {
    display: inline-flex;
    align-items: center;
    border: 1px solid #eceff8;
    border-radius: 6px;
    overflow: hidden;
}

.cart-qty-box button {
    width: 34px;
    height: 34px;
    border: none;
    background: #f7f7fd;
    color: #140C40;
    font-weight: 600;
    cursor: pointer;
}

.cart-qty-box button:hover {
    background: #9F78FF;
    color: #fff;
}

.cart-qty-box input {
    width: 44px;
    height: 34px;
    border: none;
    border-left: 1px solid #eceff8;
    border-right: 1px solid #eceff8;
    text-align: center;
    font-weight: 600;
    background: #fff;
}

.cart-summary {
    background: #fff;
    border: 1px solid #eceff8;
    border-radius: 12px;
    padding: 24px;
}

.cart-summary h4 {
    font-family: "Cinzel", serif;
    color: #140C40;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: #646D77;
    font-size: 14px;
}

.cart-summary-total {
    font-size: 1.25rem;
    font-weight: 700;
    color: #9F78FF;
    border-top: 1px solid #eceff8;
    padding-top: 16px;
    margin-top: 8px;
}

.btn-cart-primary {
    background: #9F78FF;
    border: 1px solid #9F78FF;
    color: #fff;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 6px;
    display: block;
    width: 100%;
    text-align: center;
    transition: all 0.2s ease;
}

.btn-cart-primary:hover {
    background: #140C40;
    border-color: #140C40;
    color: #fff;
    text-decoration: none;
}

.btn-cart-outline {
    background: #fff;
    border: 1px solid #9F78FF;
    color: #9F78FF;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 6px;
    display: inline-block;
    transition: all 0.2s ease;
}

.btn-cart-outline:hover {
    background: #9F78FF;
    color: #fff;
    text-decoration: none;
}

.btn-cart-remove {
    background: none;
    border: none;
    color: #dc3545;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
}

.btn-cart-remove:hover {
    text-decoration: underline;
}

.cart-toast {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
    min-width: 260px;
    display: none;
}

.cart-toast.show {
    display: block;
}
