/* Additional CSS for quote-based pricing system */

/* Quote badge styling */
.quote-badge {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    margin-bottom: 8px;
}

.quote-badge i {
    font-size: 0.9em;
}

/* Product card pricing section */
.pricing-section {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

/* Quote info styling */
.quote-info {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.quote-info .badge {
    font-size: 0.75em;
}

/* Order item styling for quote-based system */
.order-item .quote-info {
    margin-top: 8px;
}

/* Success modal enhancements */
.modal-content {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.modal-header.bg-success {
    border-bottom: none;
}

/* Quote process info box */
.quote-info.bg-light {
    border: 1px solid #dee2e6;
}

.quote-info ul li {
    padding: 4px 0;
}

/* Product image container */
.product-image-container {
    height: 100px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

/* Order item image styling */
.order-item-image img {
    border: 1px solid #dee2e6;
}

/* Enhanced button styling */
.add-to-collection-btn {
    transition: all 0.3s ease;
    font-weight: 600;
}

.add-to-collection-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,123,255,0.3);
}

.add-to-collection-btn.btn-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
}

/* Collection modal enhancements */
.collection-item {
    transition: all 0.3s ease;
}

.collection-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

/* Toast container positioning */
#toastContainer {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .quote-badge {
        font-size: 0.85em;
        padding: 6px 12px;
    }
    
    .pricing-section {
        padding: 12px;
    }
    
    .product-image-container {
        height: 500px;
    }
}

/* Loading state */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Enhanced form styling */
.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
}

/* Order summary enhancements */
#orderSummary .badge.fs-6 {
    font-size: 1rem !important;
    padding: 8px 16px;
}

/* Collection count badge */
#collectionCount {
    background: #dc3545;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.75em;
    font-weight: bold;
    margin-left: 5px;
}

/* Filter button enhancements */
.filter-btn.active {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-color: #007bff;
}

/* Card hover effects */
.product-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #007bff;
}

/* Minimum quantity info styling */
.product-info {
    background: #fff3cd;
    padding: 8px 12px;
    border-radius: 6px;
    border-left: 3px solid #ffc107;
}

.product-info i {
    color: #856404;
}

