/* ============================================
   CART PAGE STYLES - FIX COLORS
   ============================================ */
/* ============================================
   CART PAGE STYLES
   ============================================ */

.cart-hero h1,
.cart-summary h4,
.empty-cart h3 {
    font-family: 'Poppins', 'Work Sans', sans-serif !important;
}

/* ... rest of your CSS ... */
.cart-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 50px 0 30px;
    color: #fff;
    text-align: center;
}

.cart-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.cart-table {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    overflow: hidden;
}

.cart-table th {
    background: #f8f9fa;
    border: none;
    font-weight: 600;
    color: #1a1a2e;
    padding: 15px 20px;
}

.cart-table td {
    padding: 20px;
    vertical-align: middle;
    border-bottom: 1px solid #f0f0f0;
}

.cart-table tr:last-child td {
    border-bottom: none;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
}

.cart-item-name {
    font-weight: 600;
    color: #1a1a2e;
    text-decoration: none;
}

.cart-item-name:hover {
    color: #f0c040;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-control button {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #e9ecef;
    background: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-control button:hover {
    border-color: #F3BD00;
    background: #F3BD00;
}

.quantity-control button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.quantity-control .qty-display {
    font-weight: 600;
    min-width: 30px;
    text-align: center;
    font-size: 1.1rem;
}

.btn-remove {
    color: #dc3545;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s;
    font-size: 1.1rem;
}

.btn-remove:hover {
    color: #c82333;
}

.cart-summary {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    padding: 30px;
    position: sticky;
    top: 100px;
}

.cart-summary h4 {
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    color: #555;
}

.summary-row.total {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a2e;
    border-top: 2px solid #f0f0f0;
    padding-top: 15px;
    margin-top: 10px;
}

.btn-checkout {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    background: #F3BD00 !important;
    border: none !important;
    border-radius: 12px;
    color: #0C2B4B !important;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
    text-align: center;
}

.btn-checkout:hover {
    background: #e0a800 !important;
    color: #0C2B4B !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(243, 189, 0, 0.3);
}

.btn-checkout:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-continue {
    width: 100%;
    padding: 14px;
    font-weight: 500;
    color: #555;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
    text-align: center;
}

.btn-continue:hover {
    background: #e9ecef;
    color: #1a1a2e;
}

.btn-shop-now {
    background: #F3BD00 !important;
    border: none !important;
    color: #0C2B4B !important;
    font-weight: 600;
    padding: 12px 40px;
    border-radius: 10px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-shop-now:hover {
    background: #e0a800 !important;
    color: #0C2B4B !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 189, 0, 0.3);
}

.empty-cart {
    text-align: center;
    padding: 80px 20px;
}

.empty-cart i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-cart h3 {
    color: #1a1a2e;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .cart-hero h1 { font-size: 1.8rem; }
    .cart-table thead { display: none; }
    .cart-table tr { display: block; padding: 15px; border-bottom: 1px solid #f0f0f0; }
    .cart-table td { display: block; padding: 8px 0; border: none; }
    .cart-table td:before { content: attr(data-label); font-weight: 600; display: inline-block; width: 80px; color: #555; }
    .cart-item-image { width: 60px; height: 60px; }
    .cart-summary { margin-top: 20px; position: relative; top: 0; }
}