/* ================= CART ================= */
.cart-page {
    padding: 90px 0;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
}

.cart-table th,
.cart-table td {
    border-bottom: 1px solid var(--border);
    padding: 14px;
    font-size: 14px;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-product img {
    width: 180px;
    border-radius: 8px;
}

.qty-box {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
}

.qty-box button {
    width: 20px;
    border: none;
    background: none;
    cursor: pointer;
    text-align: center;
}

.qty-box input {
    flex: 1;
    max-width: 50px;
    text-align: center;
    border: none;
}

.remove {
    cursor: pointer;
}

/* CART ACTIONS */
.cart-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.coupon input {
    padding: 10px;
    border: 1px solid var(--border);
}

.coupon button {
    padding: 10px 16px;
    background: #111;
    color: #fff;
    border: none;
}

.continue-btn {
    padding: 10px 16px;
    border: 1px solid var(--border);
    text-decoration: none;
    color: #111;
}

/* TOTALS */
.cart-totals {
    border: 1px solid var(--border);
    padding: 24px;
}

.cart-totals h3 {
    margin-bottom: 20px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.total-row.total {
    font-weight: 600;
    margin-top: 14px;
}

.shipping label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
}

.checkout-btn {
    width: 100%;
    margin-top: 20px;
    background: #111;
    color: #fff;
    padding: 14px;
    border: none;
}

.share-btn {
    border: 1px solid var(--bs-orange);
    background: #ffffff;
    color: var(--bs-orange);
}

/* RELATED */
.related-products {
    padding: 80px 0;
}

/* MOBILE */
@media(max-width:768px) {
    .cart-actions {
        flex-direction: column;
        gap: 14px;
    }
}