.cart-page {
    background: #f9fafb;
    /* min-height: 100vh; */
    padding: 120px 0 80px;
}

.cart-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #111;
}

.cart-sub {
    color: #6c757d;
    margin-bottom: 2rem;
    border-left: 3px solid #04cd02;
    padding-left: 12px;
}

/* Table styles */
.cart-table-wrapper {
    background: white;
    border-radius: 20px;
    border: 1px solid #edf2f7;
    overflow-x: auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.cart-table th {
    background: #272727;
    padding: 1rem 1.2rem;
    font-weight: 600;
    color: #ffffff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #e2e8f0;
    text-align: left;
}

.cart-table td {
    padding: 1.2rem 1.2rem;
    border-bottom: 1px solid #edf2f7;
    vertical-align: middle;
}

.product-cell {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.product-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 12px;
    background: #f1f5f9;
}

.product-name {
    font-weight: 600;
    margin-bottom: 4px;
}

.product-sku {
    font-size: 0.7rem;
    color: #6c757d;
}

.quantity-control {
    display: inline-flex;
    align-items: center;
    background: #f1f5f9;
    border-radius: 40px;
    padding: 4px 10px;
    gap: 10px;
}

.quantity-control button {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #04cd02;
    font-weight: bold;
    padding: 0 4px;
}

.quantity-control input {
    width: 40px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 600;
}

.price-cell,
.total-cell {
    font-weight: 600;
    color: #1e293b;
}

.remove-btn {
    color: #dc2626;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.2s;
}

.remove-btn:hover {
    color: #b91c1c;
    transform: scale(1.1);
}

.summary-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid #edf2f7;
}

.summary-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #04cd02;
    display: inline-block;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.summary-total {
    border-top: 2px solid #edf2f7;
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    font-weight: 800;
    font-size: 1.2rem;
}

.btn-checkout {
    color: #fff;
    background: #0fa703;
    border: none;
    border-radius: 40px;
    padding: 12px;
    font-weight: 700;
    width: 100%;
    transition: 0.2s;
}

.btn-checkout:hover {
    background: #028a00;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cart-page {
        padding: 100px 0 60px;
    }

    .product-img {
        width: 60px;
        height: 60px;
    }

    .cart-table th,
    .cart-table td {
        padding: 0.8rem;
    }
}

.breadcrumb-item.active {
    color: #949494;
}
