/* Frequently Bought Together Styling for Customer Frontend */

.frequently-bought-together .product-card {
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    height: 100%;
}

.frequently-bought-together .main-product {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #198754;
}

.frequently-bought-together .product-image {
    position: relative;
}

.frequently-bought-together .product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.frequently-bought-together .product-image:hover img {
    transform: scale(1.03);
}

.frequently-bought-together .product-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
}

.frequently-bought-together .product-badge .badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Similar Products Styles */
.similar-products .product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.similar-products .product-image:hover img {
    transform: scale(1.03);
}

.similar-products .product-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
}

/* Recommended Products Styles */
.recommended-products .product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.recommended-products .product-image:hover img {
    transform: scale(1.03);
}

.recommended-products .product-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
}

.frequently-bought-together .product-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.frequently-bought-together .product-price {
    font-size: 1.1rem;
    font-weight: bold;
    color: #198754;
}

.frequently-bought-together .plus-icon {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.frequently-bought-together .related-product-item {
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s ease;
}

.frequently-bought-together .related-product-item:hover {
    background-color: #f8f9fa;
    border-color: #198754;
}

.frequently-bought-together .form-check-input:checked {
    background-color: #198754;
    border-color: #198754;
}

.frequently-bought-together .product-name {
    font-weight: 600;
    color: #333;
}

.frequently-bought-together .total-section {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
}

.frequently-bought-together .total-amount {
    color: #198754 !important;
}

@media (max-width: 768px) {
    .frequently-bought-together .plus-icon {
        margin: 10px 0;
    }
    
    .frequently-bought-together .product-image img {
        height: 120px;
    }
}

/* Loading spinner */
.frequently-bought-together .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
