/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 29 2025 | 12:21:38 */
/* free shipping info START */
  /* Podstawowy styl komunikatu */
.shipping-notice {
    padding: 18px 20px;
    margin: 0 0 35px 0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    line-height: 1.5;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Styl gdy brakuje kwoty (czerwony) */
.notice-warning {
    background: #FFEBEE;
    border-left: 5px solid #F44336;
    color: #D32F2F;
}

/* Styl gdy dostawa gratis (zielony) */
.notice-success {
    background: #E8F5E9;
    border-left: 5px solid #4CAF50;
    color: #2E7D32;
}

/* Elementy komunikatu */
.notice-icon {
    font-size: 24px;
    display: inline-block;
    vertical-align: middle;
}

.notice-text {
    flex: 1;
}

.notice-details {
    display: block;
    font-size: 15px;
    margin-top: 5px;
    opacity: 0.9;
}

/* Responsywność */
@media (max-width: 480px) {
    .shipping-notice {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    .notice-icon {
        margin-bottom: 5px;
    }
}
/* free shipping info END */