/* Cart Styling */
.add-cart-btn {
    background-color: #34a853;
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.add-cart-btn:hover {
    background-color: #2d9249;
    color: white;
}

.cart-icon-container {
    position: relative;
    display: inline-block;
}

.cart-count-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 0.7rem;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    padding: 0;
}

.cart-summary {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.cart-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-total {
    font-weight: bold;
    font-size: 1.2rem;
    text-align: right;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #ddd;
}

.empty-cart-message {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin: 20px 0;
}

.empty-cart-message i {
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 15px;
}

.vehicle-badge {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 5px;
    padding: 3px 8px;
    background-color: #f0f0f0;
    border-radius: 4px;
    font-size: 0.85rem;
}

/* Checkout form styling */
.checkout-form label {
    font-weight: 600;
    margin-bottom: 5px;
}

.checkout-form .form-control {
    margin-bottom: 15px;
}

.checkout-summary {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    position: sticky;
    top: 20px;
}

@media (max-width: 767px) {
    .checkout-summary {
        position: static;
        margin-bottom: 20px;
    }
}
