.cart-page-wrap {
    background: #f3f4f6;
    min-height: 50vh;
    padding-bottom: calc(24px + env(safe-area-inset-bottom, 0));
}

.cart-page-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cart-page-title i {
    color: #F9A825;
}

.cart-empty-card {
    text-align: center;
    background: #fff;
    border-radius: 16px;
    padding: 48px 24px;
}

.cart-empty-card i {
    font-size: 48px;
    color: #d1d5db;
}

.cart-page-grid {
    display: grid;
    gap: 16px;
}

@media (min-width: 992px) {
    .cart-page-grid {
        grid-template-columns: 1fr 340px;
        align-items: start;
    }
}

.cart-page-item {
    display: flex;
    gap: 14px;
    background: #fff;
    border-radius: 14px;
    padding: 14px;
    border: 1px solid #e5e7eb;
    margin-bottom: 10px;
}

.cart-item-img-link {
    flex-shrink: 0;
    width: 88px;
    height: 88px;
    border-radius: 10px;
    background: #f9fafb;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-img-link img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cart-item-body {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-weight: 700;
    color: #111827;
    text-decoration: none;
    display: block;
    font-size: 14px;
    line-height: 1.35;
}

.cart-item-price {
    font-weight: 800;
    color: #F9A825;
    margin: 6px 0 10px;
}

.cart-qty-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-qty-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
}

.cart-qty-btn:active {
    background: #FFF8E1;
    border-color: #F9A825;
}

.cart-qty-btn:disabled {
    opacity: .5;
    pointer-events: none;
}

.qty-val {
    min-width: 28px;
    text-align: center;
    font-weight: 800;
}

.cart-remove-btn {
    margin-left: auto;
    width: 36px;
    height: 36px;
    border: 1px solid #fecaca;
    background: #fef2f2;
    color: #ef4444;
    border-radius: 10px;
    cursor: pointer;
}

.cart-summary-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

@media (max-width: 991.98px) {
    .cart-summary-sticky {
        position: sticky;
        bottom: calc(108px + env(safe-area-inset-bottom, 0));
        z-index: 100;
    }
}

.cart-summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
    color: #6b7280;
}

.cart-summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.15rem;
    font-weight: 800;
    padding-top: 12px;
    margin-top: 8px;
    border-top: 2px solid #F9A825;
}

.cart-summary-total span:last-child {
    color: #F9A825;
}

.cart-checkout-btn {
    min-height: 50px;
    border-radius: 12px;
}
