.elementor-9774 .elementor-element.elementor-element-917f861{--display:flex;}#elementor-popup-modal-9774{background-color:rgba(0,0,0,.8);justify-content:center;align-items:center;pointer-events:all;}#elementor-popup-modal-9774 .dialog-message{width:640px;height:auto;}#elementor-popup-modal-9774 .dialog-close-button{display:flex;}#elementor-popup-modal-9774 .dialog-widget-content{box-shadow:2px 8px 23px 3px rgba(0,0,0,0.2);}/* Start custom CSS for html, class: .elementor-element-41c5a3c *//* Główny kontener */
.store-notice-wrapper {
    font-family: inherit;
    text-align: center;
    padding: 10px;
    color: #333;
}

/* Sekcja ikony z animacją pulsowania */
.notice-icon-container {
    position: relative;
    width: 64px;
    height: 64px;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notice-icon {
    width: 32px;
    height: 32px;
    color: #fff;
    z-index: 2;
}

.icon-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #f59e0b; /* Pomarańczowy ostrzegawczy */
    border-radius: 50%;
    z-index: 1;
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(245, 158, 11, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

/* Teksty */
.notice-title {
    font-size: 24px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 15px;
}

.notice-description {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Wyróżniona ramka z datą */
.notice-highlight {
    background-color: #fffbeb;
    border: 2px dashed #fcd34d;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 15px;
    color: #92400e;
}

.highlight-date {
    display: block;
    font-size: 22px;
    font-weight: 900;
    color: #d97706;
    margin-top: 5px;
}

.notice-footer {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 25px;
}

/* Przycisk akceptacji */
.notice-accept-btn {
    background-color: #10b981; /* Uspokajający zielony */
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.notice-accept-btn:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Responsywność dla małych ekranów */
@media (max-width: 480px) {
    .notice-title { font-size: 20px; }
    .highlight-date { font-size: 18px; }
    .notice-accept-btn { padding: 12px 20px; font-size: 15px; }
}/* End custom CSS */