/**
 * Frequently Bought Together Styles
 * File: modules/frequentlybought/views/css/frequentlybought.css
 */

.frequently-bought-wrapper {
    margin: 40px 0;
    padding: 0;
}

.frequently-bought-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 25px;
    color: #333;
}

.frequently-bought-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.frequently-bought-products {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
}
.frequently-bought-item {    
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 180px;
    max-width: 220px;
}
.frequently-bought-item .product-image {
    background: #F1F1F1;
    border-radius: 8px;
    padding: 20px;
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
}

.frequently-bought-item .product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.frequently-bought-item .product-brand {
    font-size: 11px;
    text-transform: uppercase;
    text-align: left;
    font-weight: 700;
    color: #0A0A0A;
    margin-bottom: 0;
}

.frequently-bought-item .product-name {
    font-size: 14px;
    font-weight: 400;
    color: #333;
    line-height: 1.4;
    text-align: left;
    min-height: 40px;
    margin: 0 0 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.frequently-bought-item .product-miniature__price .price{
    font-size: 15px;
    font-weight: 400;
    color: #333;
}
.frequently-bought-item .product-miniature__price .regular-price{
    font-size: 11px;
    font-weight: 400;
}

.frequently-bought-plus {
    font-size: 28px;
    font-weight: 300;
    color: #666666;
    flex-shrink: 0;
    transform: translateY(-48px);
}

.frequently-bought-action {
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.frequently-bought-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: #fff;
    padding: 16px 48px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
}

.frequently-bought-btn:active {
    transform: translateY(0);
}

.frequently-bought-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.frequently-bought-item .product-miniature__price .unit{
    font-size: 12px;
}

/* Loading State */
.frequently-bought-btn.loading::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@media (max-width: 480px){
    .frequently-bought-item .product-image {
        height: 130px;
    }
    .frequently-bought-item{
        min-width: auto;
        max-width: 150px;
        padding: 10px;
    }
}