/* Combo Products Wrapper */
.combo-products-container {
    border-top: 1px solid rgba(0, 0, 0, 0.125);
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    padding: 25px 0;
}

.combo-products-container h5 {
    color: #D71921;
    font-size: 24px;
    margin-bottom: 15px;
}

.product-combo-row-wrapper {
    display: flex;
    gap: 25px;
}

/* Product Combo Prices */
.product-combo-prices {
    display: flex;
    flex-direction: column;
    gap: 10px;
    & .combo-prod-wrapper{
        display: flex;
        min-width: 300px;
    }
    & .combo-prod-teaser-title a{
        text-decoration: none;
    }
    & .combo-prod-teaser-content{
        display: flex;
        flex-flow:row;
        width: 100%;
        max-width: 400px;
        justify-content: space-between;
    }
}

.product-combo-prices .product-combo-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 5%;
    cursor: pointer;
}
.product-combo-prices .product-combo-checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border: 2px solid #D71921;
    border-radius: 4px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.product-combo-prices .product-combo-checkbox input[type="checkbox"]::before {
    content: "";
    width: 10px;
    height: 16px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: scale(0) rotate(45deg);
    transform-origin: center;
    transition: transform 0.2s ease-in-out;
}


.product-combo-prices .product-combo-checkbox input[type="checkbox"]:checked {
    background-color: #D71921;
}
.product-combo-prices .product-combo-checkbox input[type="checkbox"]:focus {
    outline: none;
    box-shadow: none;
}

.product-combo-prices .product-combo-checkbox input[type="checkbox"]:checked::before {
    transform: scale(1) rotate(45deg);
}

/* Order Button */
.order-combo-btn {
    background: #D71921;
    color: white;
    border-radius: 4px;
    padding: 15px;
    transition: all 0.2s ease-in-out;
}

.order-combo-btn:hover {
    background: #D71921;
    color: white;
    scale: 1.03;
}

/* Product Combo Images */
.product-combo-images-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.product-combo-images-container .prod-teaser-image {
    transition: all 0.3s ease;
    border: none;
}
.product-combo-images-container .prod-teaser-image img {
    border-radius: 3px;
    transition: all 0.3s ease;
}

.product-combo-images-container .product-combo-image {
    position: relative;
}

.product-combo-images-container .prod-teaser-image.disabled {
    pointer-events: none;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.product-combo-images-container .prod-teaser-image.highlighted {
    z-index: 100;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.15);
    scale: 1.05;
    transition: all 0.3s ease;
}

/* Product Combo Summary */
.product-combo-summary {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    text-align: left;
}


.product-combo-summary .product-price-label {
    font-size: 2em;
    color: currentColor;
}

/* Product Wrapper */
.prod-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 5px 10px;
    box-sizing: border-box;
    flex-wrap: wrap;
}

/* Teaser Content */
.prod-teaser-content {
    flex: 1;
    padding: 0;
}

.prod-teaser-image {
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 4px;
}

.prod-teaser-title {
    margin: 0;
}
@media (min-width: 991px) and (max-width: 1366px) {
    .product-combo-row-wrapper{
        flex-flow: column;
    }
    .product-combo-prices{
        flex-flow: row;
        justify-content: space-around;
    }
    .combo-prod-wrapper .prod-teaser-price-container{
        flex-flow: column;
        width: 100px !important;
        border-left: 1px solid black
    }
    .product-combo-images-container  {
        width: 100%;
        justify-content: center;
        gap: 10px;
        order: 1;
        padding: 0;
        margin: 0;
    }
    .product-combo-prices {
        order: 2;
        gap: 10px;
        padding: 0px;
        width: 100%;
        &  .prod-wrapper {
            flex-direction: row;
        }
        & .prod-teaser-price-old{
            font-size: 1.5rem;
        }
        & .prod-teaser-price{
            font-size: 2.5rem;
        }
    }
    .product-combo-summary {
        order: 3;
        width: 100%;
        padding: 0;
    }
}

/* Mobile */
@media (max-width: 991px) {
    .product-combo-prices {
        order: 2;
        gap: 10px;
        padding: 0px;
        width: 100%;
        &  .prod-wrapper {
            flex-direction: row;
        }
        & .prod-teaser-price-old{
            font-size: 1.5rem;
        }
        & .prod-teaser-price{
            font-size: 2.5rem;
        }
    }

    .product-combo-row-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .product-combo-images-container  {
        width: 100%;
        justify-content: center;
        gap: 10px;
        order: 1;
        padding: 0;
        margin: 0;
    }

    .combo-prod-wrapper .prod-teaser-price-container{
        flex-flow: column;
        width: 35%;
        border-left: 1px solid black
    }
    .combo-prod-wrapper .prod-teaser-content{
        align-content: center;
        margin: 0;
    }

    .combo-prod-wrapper .prod-teaser-content .prod-teaser-top{
        display: flex;
        flex-flow: row;
    }

    .product-combo-summary {
        order: 3;
        width: 100%;
        padding: 0;
    }

    .product-combo-summary .product-price-label {
        font-size: 1.4em;
    }

    .product-combo-prices .product-combo-checkbox {
        margin-right: 0;
        justify-content: center;
    }
}
