﻿.bundle-products-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin: 12px 0;
    padding: 5px;
    border-radius: 8px;
}

.bundle-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    img

{
    max-width: 100%;
    max-height: 100%;
}

}

.bundle-products-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.bundle-product-item {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 8px;
    &:last-child

{
    border-bottom: none;
    padding-bottom: 0;
}

}

.bundle-product-header {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 6px 0;
}

.bundle-product-icons {
    display: flex;
    align-items: center;
    gap: 4px;
}

.bundle-product-qty {
    display: inline-block;
    min-width: 28px;
    font-weight: 700;
    font-size: 15px;
    color: #9768B6;
    text-align: right;
}

.bundle-product-icon {
    width: 18px;
    height: auto;
    flex-shrink: 0;
}

.bundle-product-name {
    min-width: 0;
    font-weight: 500;
    font-size: 15px;
    color: #05A288;
    text-align: start;
    text-decoration: none;
}

.bundle-header-spacer {
    flex: 1 1 auto;
    min-width: 0;
}


.bundle-expand-icon {
    flex: 0 0 auto;
    color: #666;
    .chevron-down

{
    transition: transform 0.2s ease;
}

}

.bundle-product-specs {
    padding: 12px 0 8px 26px;
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bundle-product-spec-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
}

.bundle-products-container .product-specifications-wrapper {
    width: 100%;
    &.is-hidden

{
    display: none;
}

}

@media (min-width: 769px) {
    .bundle-products-container {
        flex-direction: row;
        gap: 24px;
    }

    .bundle-icon {
        width: auto;
    }

    .bundle-product-header {
        gap: 8px;
        padding: 8px 0;
    }
}
