.werules-shipping-notice.delivery-notice {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #1a1a1a;
    color: white;
    padding: 12px 20px;
    text-align: center;
    z-index: 1000;
    border-bottom: 1px solid #333;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.werules-shipping-notice .notice-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
}

.werules-shipping-notice .notice-icon {
    width: 16px;
    height: 16px;
    fill: #ff6b35;
    flex-shrink: 0;
    stroke: #ff6b35;
}

.werules-shipping-notice .notice-text {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.werules-shipping-notice .notice-highlight {
    color: #ff6b35;
    font-weight: bold;
}

.werules-shipping-notice .close-btn {
    position: absolute;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.werules-shipping-notice .close-btn:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .werules-shipping-notice.delivery-notice {
        padding: 10px 16px;
    }
    
    .werules-shipping-notice .notice-text {
        font-size: 12px;
    }
    
    .werules-shipping-notice .notice-content {
        gap: 6px;
    }
}
