/* Frequently Bought Together Styles */

.mak-fbt-section {
    margin: 30px 0;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #eee;
    clear: both;
}

.mak-fbt-section h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.5em;
    font-weight: 600;
}

.mak-fbt-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.mak-fbt-items {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    flex: 2;
}

.mak-fbt-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.mak-fbt-select-wrap {
    margin-bottom: 5px;
}

.mak-fbt-checkbox {
    transform: scale(1.3);
    cursor: pointer;
}

.mak-fbt-item img {
    max-width: 100px;
    height: auto;
    margin-bottom: 10px;
    border-radius: 4px;
}

.mak-fbt-item-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
    align-items: center;
}

.mak-fbt-item-title {
    font-size: 0.9em;
    font-weight: 500;
    line-height: 1.3;
    min-height: 2.6em;
    /* 2 lines approximately */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mak-fbt-item-price {
    font-weight: 600;
    color: #333;
}

.mak-fbt-quantity-wrap input[type="number"] {
    width: 60px;
    text-align: center;
    padding: 2px 5px;
    font-size: 0.9em;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.mak-fbt-variation-selector {
    max-width: 100%;
    font-size: 0.8em;
    padding: 2px;
}

.mak-fbt-plus {
    font-size: 24px;
    font-weight: 300;
    margin: 50px 15px 0 15px;
    /* Offset to align with image roughly */
    user-select: none;
}

.mak-fbt-actions {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    min-width: 200px;
}

.mak-fbt-total-price {
    font-size: 1.2em;
    font-weight: 700;
}

.mak-fbt-add-all-btn {
    width: 100%;
    margin-top: 10px;
}

.mak-fbt-choose-option {
    font-size: 0.8em;
    text-decoration: underline;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .mak-fbt-container {
        flex-direction: column;
        align-items: stretch;
    }

    .mak-fbt-items {
        justify-content: flex-start;
        gap: 15px;
    }

    .mak-fbt-item {
        width: calc(50% - 8px);
        /* 2 items per row accounting for gap */
        margin-bottom: 0;
    }

    .mak-fbt-plus {
        display: none;
    }

    .mak-fbt-actions {
        align-items: center;
        border-top: 1px solid #eee;
        padding-top: 20px;
        width: 100%;
        margin-top: 10px;
    }
}