/* Main Layout */
.cart-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    min-height: 300px;
}

/* Individual Cart Item Row */
.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto;
    align-items: center;
    gap: 25px;
    padding: 20px;
    background: #fff;
    border: 1px solid #eee;
    margin-bottom: 15px;
    transition: 0.3s ease;
}

.cart-item:hover {
    border-color: #ff6a00;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.cart-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    background: #f9f9f9;
    padding: 5px;
}

/* Info Section */
.cart-info h3 {
    color: #102a43;
    font-weight: 700;
    margin-bottom: 5px;
}

/* Quantity Controls */
.qty-controls {
    display: flex;
    align-items: center;
    border: 2px solid #102a43;
    border-radius: 4px;
    overflow: hidden;
    height: 40px;
}

.qty-btn {
    background: #102a43;
    color: white;
    border: none;
    width: 35px;
    height: 100%;
    cursor: pointer;
    font-size: 18px;
    transition: 0.2s;
}

.qty-btn:hover {
    background: #ff6a00;
}

.qty-input {
    width: 50px;
    text-align: center;
    border: none;
    font-weight: bold;
    color: #102a43;
    -moz-appearance: textfield; /* Remove arrows */
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Price Display */
.line-total {
    font-size: 20px;
    font-weight: 800;
    color: #102a43;
    min-width: 100px;
    text-align: right;
}

/* Totals Section */
.cart-totals {
    max-width: 400px;
    margin: 40px auto 80px;
    padding: 30px;
    background: #f8f9fa;
    border-top: 4px solid #102a43;
    text-align: center;
}

.cart-totals h4 {
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #102a43;
}

.sub-width {
    font-size: 18px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

#cart-subtotal {
    font-weight: 800;
    color: #ff6a00;
    font-size: 22px;
}

/* Checkout Button */
.btn-checkout {
    width: 100%;
    padding: 18px;
    background: #102a43;
    color: white;
    border: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.4s;
}

.btn-checkout:hover {
    background: #ff6a00;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 106, 0, 0.2);
}

/* Responsive Handling */
@media (max-width: 768px) {
    .cart-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .qty-controls {
        justify-self: center;
    }
    .line-total {
        text-align: center;
    }
}