/* FEATURE 11441*/
.selectPick { font-size: 13px; line-height: 14px; font-weight: 400; }  
.selectPick .btn-group.bootstrap-select { width: auto !important;  }
.deliveryLayer .deliveryLab { margin-right: 10px; }
.selectPick .btn-default { background: #FFF !important; color: #616B76; border: 0; text-transform: none; font-weight: 400; font-family: "Open Sans",sans-serif !important; font-size: 13px; padding: 0; line-height: 16px; margin-top: -2px; padding-right: 15px; }
.selectPick img { vertical-align: middle; padding-top: 0px; margin: -2px 2px 0 0; line-height: 13px; }
.selectPick .dropdown-menu { border: 0; }
.selectPick .dropdown-menu li { padding: 0; border: 0; display:block;}
.selectPick .dropdown-menu li > a { padding: 3px 10px 3px 10px; font-family: "Open Sans",sans-serif !important; font-size: 13px; }
.selectPick .bootstrap-select.btn-group .dropdown-toggle .caret { right: 3px; }
@media (max-width: 991px) {
    .selectPick img,.deliveryLayer .deliveryLab { display: none; }
}
@media (max-width: 480px) {
    .additional-nav > .list-inline > li { border-right: 1px solid #D8D8D8; }
}

/* Postcode info styles */
.section-delivery {
    position: relative;
}

#deliveryPostcodeInfoWrapper {
    position: relative;
    margin: 0;
    max-width: 600px;
}

#deliveryPostcodeInfo {
    position: relative;
}

#deliveryPostcodeInfo .alert {
    position: relative;
    margin: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    width: 100%;
}

#deliveryPostcodeInfoWrapper.hidden , .deliveryPostcodeInfoWrapper.hidden {
    display: block !important;
    visibility: visible !important;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#deliveryPostcodeInfoWrapper:not(.hidden) , .deliveryPostcodeInfoWrapper:not(.hidden) {
    opacity: 1;
}

/* Responsywność */
@media (max-width: 991px) {
    #deliveryPostcodeInfo .alert.is-fixed , .deliveryPostcodeInfo .alert.is-fixed {
        top: 50px;
        right: 10px;
    }
}

/* Toast notification styles */
.ec-toast {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 250px;
    max-width: 400px;
    padding: 16px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
    transition: all 0.3s ease;
}

.ec-toast-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.ec-toast-show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.ec-toast-content {
    display: flex;
    align-items: center;
}

.ec-toast-message {
    flex: 1;
}

/* Mobile responsiveness for toast */
@media (max-width: 768px) {
    .ec-toast {
        left: 10px;
        right: 10px;
        transform: none;
        min-width: auto;
        max-width: none;
    }
    
    .ec-toast-show {
        transform: translateY(0);
    }
}