#window-sizer-fields {
    margin-bottom: 15px;
}

.window-size-row {
    display: grid;
    grid-template-columns: 1fr 1fr 0.2fr auto;
    align-items: end;
    gap: 20px;
}

.window-size-row .remove-window {
    align-self: center;
    background: transparent;
    color: red;
    border: none;
    padding: 4px 8px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
}

#add-window {
    background: transparent;
    border: none;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding-top: 10px;
    padding-bottom: 10px;

    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.85em;
}

#add-window .icon{
    color: #A9C9D5;
    font-size: 1.5rem;
}

.custom-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #46a546;
    color: #fff;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9999;
}

.custom-toast.show {
    opacity: 1;
    transform: translateY(0);
}

#window-size-rows {
    background-color: #F6F6F6;
    border: solid 1px #DBDBDB;
    border-radius: 5px;
    margin-bottom: 15px;
    padding: 30px;
    
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#window-sizer-fields .window-size-row .form-label {
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1.85em;
    margin-bottom: 0px;
}


#upsell-popup {
    position: fixed;
    top: 0; left: 0;
    right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.upsell-content {
    background: white;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: 80vh;
    overflow: scroll;
}

.upsell-products {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.upsell-product {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 15px;
}
.upsell-products .upsell-product img {
    max-width: 90px;
}
.upsell-product button {
    margin-left: auto;
}

.upsell-product .add-to-cart {
    background-color: #244077;
    color: #ffffff;
    border-radius: 5px;
    border: 0px;
    padding: .618em 1em;
    line-height: 1rem;
}

.upsell-info {
    flex: 1;
}

.upsell-qty {
    margin-top: 5px;
}

.upsell-qty input {
    width: 60px;
    padding: 4px;
    font-size: 14px;
    margin-left: 10px;
    text-align: center;
}

.upsell-button-actions button {
    --bs-btn-padding-y: 7px;
    --bs-btn-padding-x: 10px;
}

.upsell-button-actions button.proceed {
    --bs-btn-color: #ffffff;
    --bs-btn-bg: #244077;
    
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: #244077;
    
    --bs-btn-active-color: #ffffff;
    --bs-btn-active-bg: #244077;
}