.cart-page {
    background: #f8f8f8;
    min-height: 70vh;
    padding: 2.5rem 0 4rem;
}

.cart-page__inner {
    max-width: 1140px;
    margin: 0 auto;
}

.cart-table-wrap {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    overflow: hidden;
}

.cart-table {
    width: 100%;
    margin-bottom: 0;
}

.cart-table thead th {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6b7280;
    border-bottom: 1px solid #ececec;
    padding: 1rem 1.25rem;
    background: #fff;
}

.cart-table tbody td {
    vertical-align: middle;
    padding: 1.25rem;
    border-top: 1px solid #ececec;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-product__remove {
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 1rem;
    line-height: 1;
    padding: 0;
    cursor: pointer;
}

.cart-product__remove:hover {
    color: #374151;
}

.cart-product__image {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    background: #fff;
}

.cart-product__name {
    color: #374151;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

.cart-product__name:hover {
    color: #1e88e5;
    text-decoration: none;
}

.cart-price {
    color: #6b7280;
    font-size: 0.95rem;
}

.cart-subtotal {
    color: #1e88e5;
    font-weight: 700;
    font-size: 0.95rem;
}

.cart-qty {
    display: inline-flex;
    align-items: stretch;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
}

.cart-qty__btn {
    width: 34px;
    border: none;
    background: #fff;
    color: #6b7280;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
}

.cart-qty__btn:hover {
    background: #f3f4f6;
}

.cart-qty__input {
    width: 42px;
    border: none;
    border-left: 1px solid #d1d5db;
    border-right: 1px solid #d1d5db;
    text-align: center;
    font-size: 0.95rem;
    color: #374151;
    padding: 0.45rem 0;
    -moz-appearance: textfield;
}

.cart-qty__input::-webkit-outer-spin-button,
.cart-qty__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-totals {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    padding: 1.5rem;
}

.cart-totals__title {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #111827;
    margin-bottom: 1.25rem;
}

.cart-totals__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 0;
    border-bottom: 1px solid #ececec;
    font-size: 0.92rem;
    color: #6b7280;
}

.cart-totals__row--total {
    border-bottom: none;
    padding-top: 1rem;
    color: #111827;
    font-weight: 700;
    font-size: 1rem;
}

.cart-totals__value {
    color: #6b7280;
}

.cart-totals__value--accent {
    color: #1e88e5;
    font-weight: 700;
}

.cart-totals__value--total {
    color: #1e88e5;
    font-size: 1.35rem;
    font-weight: 700;
}

.cart-checkout-btn {
    display: block;
    width: 100%;
    margin-top: 1.25rem;
    padding: 0.9rem 1rem;
    border: none;
    border-radius: 4px;
    background: #1e88e5;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
}

.cart-checkout-btn:hover {
    background: #1976d2;
    color: #fff;
    text-decoration: none;
}

.cart-empty {
    min-height: 99vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #f9f9f9;
    padding: 3rem 1.5rem;
}

.cart-empty__icon {
    font-size: 4.5rem;
    color: #d1d5db;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.cart-empty__icon .fa-times-circle {
    position: absolute;
    right: -4px;
    bottom: 8px;
    font-size: 1.4rem;
    color: #d1d5db;
}

.cart-empty__title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 1rem;
}

.cart-empty__text {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.7;
    /* max-width: 520px; */
    margin: 0 auto 1.75rem;
}

.cart-empty__btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    background: #1e88e5;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.cart-empty__btn:hover {
    background: #1976d2;
    color: #fff;
    text-decoration: none;
}

.cart-alert {
    max-width: 1140px;
    margin: 0 auto 1rem;
}

@media (max-width: 991.98px) {
    .cart-table thead {
        display: none;
    }

    .cart-table tbody tr {
        display: block;
        border-bottom: 1px solid #ececec;
    }

    .cart-table tbody td {
        display: block;
        border: none;
        padding: 0.75rem 1rem;
    }

    .cart-table tbody td::before {
        content: attr(data-label);
        display: block;
        font-size: 0.72rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: #9ca3af;
        margin-bottom: 0.35rem;
    }

    .cart-totals {
        margin-top: 1.5rem;
    }
}
