/* Shopping Cart and Itinerary Styles */

/* Cart Container */
.cart-items {
    margin-bottom: 20px;
}

/* Cart Item */
.cart-item {
    display: flex;
    flex-wrap: wrap;
    padding: 15px;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    position: relative;
}

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

/* Cart Item Type */
.cart-item-type {
    width: 100px;
    padding: 5px 10px;
    background-color: #f8f9fa;
    border-radius: 4px;
    text-align: center;
    font-weight: bold;
    text-transform: capitalize;
    font-size: 14px;
    color: #6c757d;
}

/* Cart Item Details */
.cart-item-details {
    flex: 1;
    padding: 0 20px;
}

.cart-item-details h5 {
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 600;
}

.cart-item-details p {
    margin-bottom: 5px;
    font-size: 14px;
}

/* Cart Item Price */
.cart-item-price {
    width: 120px;
    font-weight: bold;
    text-align: right;
    font-size: 16px;
    color: #28a745;
    padding-right: 15px;
}

/* Cart Item Actions */
.cart-item-actions {
    width: 100px;
    text-align: right;
}

/* Cart Summary */
.cart-summary {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
    margin-top: 20px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Empty Cart */
.empty-cart {
    text-align: center;
    padding: 30px;
    color: #6c757d;
    font-size: 18px;
}

/* Error Message */
.error-message {
    color: #dc3545;
    text-align: center;
    padding: 15px;
}

/* Itinerary List */
.itinerary-list .card {
    transition: transform 0.2s;
}

.itinerary-list .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .cart-item {
        flex-direction: column;
    }
    
    .cart-item-type,
    .cart-item-price,
    .cart-item-actions {
        width: 100%;
        text-align: left;
        margin-bottom: 10px;
    }
    
    .cart-item-actions {
        margin-top: 10px;
    }
    
    .cart-item-details {
        padding: 10px 0;
    }
}
