/* ========================================
   CART PAGE STYLES
   ======================================== */

.cart-section {
    background: #0f0f0f;
    min-height: 100vh;
    padding: 3rem 0;
}

.section-header {
    margin-bottom: 2rem;
}

.section-title {
    color: #d4af37;
    font-size: 2.5rem;
    font-weight: 700;
}

.section-subtitle {
    color: #b0b0b0;
    font-size: 1.1rem;
}

/* Cart Items */
.cart-items-container {
    background: rgba(30, 30, 30, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
}

.cart-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.cart-item:hover {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.05);
}

.item-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.item-icon i {
    font-size: 2.5rem;
    color: #d4af37;
}

.item-details {
    flex: 1;
}

.item-currency {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.item-denomination {
    color: #e0e0e0;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.item-price {
    color: #d4af37;
    font-size: 1.1rem;
    font-weight: 600;
}

.item-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 0.3rem;
}

.qty-btn {
    width: 35px;
    height: 35px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid #d4af37;
    color: #d4af37;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: #d4af37;
    color: #1a1a1a;
}

.qty-display {
    min-width: 40px;
    text-align: center;
    color: #e0e0e0;
    font-weight: 600;
    font-size: 1.1rem;
}

.item-total {
    color: #d4af37;
    font-size: 1.3rem;
    font-weight: 700;
    min-width: 100px;
    text-align: right;
}

.btn-remove {
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid #dc3545;
    color: #dc3545;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-remove:hover {
    background: #dc3545;
    color: #fff;
}

/* Empty Cart */
.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(30, 30, 30, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
}

.empty-cart i {
    font-size: 5rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.empty-cart h3 {
    color: #e0e0e0;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.empty-cart p {
    color: #b0b0b0;
    margin-bottom: 2rem;
}

/* Cart Summary */
.cart-summary {
    background: rgba(30, 30, 30, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 2rem;
    position: sticky;
    top: 100px;
}

.summary-title {
    color: #d4af37;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: #e0e0e0;
    font-size: 1rem;
}

.summary-row span:last-child {
    font-weight: 600;
}

.cart-summary hr {
    border-color: rgba(212, 175, 55, 0.3);
    margin: 1.5rem 0;
}

.total-row {
    font-size: 1.3rem;
    font-weight: 700;
    color: #d4af37;
}

.minimum-warning {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid #dc3545;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #dc3545;
    font-size: 0.9rem;
    font-weight: 600;
}

.minimum-warning i {
    font-size: 1.2rem;
}

.btn-checkout {
    width: 100%;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a1a;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-continue {
    width: 100%;
    background: transparent;
    color: #d4af37;
    padding: 0.8rem;
    border: 2px solid #d4af37;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.btn-continue:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
}

/* Responsive */
@media (max-width: 991px) {
    .cart-summary {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .cart-item {
        flex-direction: column;
        text-align: center;
    }

    .item-controls {
        flex-direction: column;
        width: 100%;
    }

    .item-total {
        text-align: center;
    }
}
