
/* Info - Tworzymy lustro dla Ciebie */

/* Style wrappera */
.abcweb-product-add-to-cart-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap; 
    gap: 15px; 
    order: 90;
    width: 100%; 
    box-sizing: border-box; 
}

/* Style for the product add-to-cart section  */
.abcweb-product-add-to-cart-wrapper > .product-add-to-cart {
    flex: 0 0 auto;         /* grow:0, shrink:0, basis:auto */
    white-space: nowrap;    /* opcjonalnie: nie łam tekstu w przycisku */
}

/* Style widgetu */
.abcweb-widget-made-on-order-wrapper {
    flex: 1 1 0;            /* rośnie i kurczy się, startuje od 0 */
    min-width: 0;           /* kluczowe, żeby faktycznie mógł się ścisnąć */
    height: auto;
    order: 91;
}

.abcweb-widget-made-on-order-container {
    min-height: 52px; 
    margin-top: 15px;
    background-color: #f7f3ed;
    padding: 0 15px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: flex-start;

    font-family: Arial, sans-serif;
    color: #2c2c2c;
    font-size: 1rem;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */

}

/* ICON - tooltip */
.abcweb-widget-made-on-order-info-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    
    font-size: 1em;
    border-radius: 50%;
    /* background-color: #947e42; */
    color: #947e42;
    font-weight: bold;
    line-height: 1;

    margin-right: 15px;
    margin-top: -3px;

    cursor: pointer;
}
.abcweb-widget-made-on-order-info-icon svg {
    width: 1.7rem;
    height: 1.7rem;
}

.abcweb-widget-made-on-order-main-text {
    font-weight: bold;
}

/* Mobile */
@media(max-width: 1137px)
{

    .abcweb-widget-made-on-order-container {
        font-size: 0.85rem;
        padding: 0 10px
    }
    
    .abcweb-widget-made-on-order-info-icon {
        margin-right: 5px;
    }
}

@media(max-width: 1050px) 
{
    .abcweb-product-add-to-cart-wrapper {
        flex-direction: column;
    }
    
    .abcweb-widget-made-on-order-container {
        font-size: 1rem;
        padding: 0 15px
    }
    
    .abcweb-widget-made-on-order-wrapper {
        order: 0;
        width: 352px;
    }   
}

@media(max-width: 767px) {
    .abcweb-widget-made-on-order-wrapper {
        width: 100%;
    }
    
    .abcweb-product-add-to-cart-wrapper > .product-add-to-cart .row.product-quantity .col-add-btn {
        flex: 1 1 auto;
    }
    
    .abcweb-product-add-to-cart-wrapper > .product-add-to-cart .row.product-quantity .col-add-qty {
        flex: 0 0 80px;
    }
    
    .abcweb-product-add-to-cart-wrapper > .product-add-to-cart .add > button.add-to-cart {
        width: 100%;
    }
}