/**
 * Store Notice Bar CSS
 */

#store-notice-bar {
    width: 100%;
    padding: 12px 0;
    text-align: center;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#store-notice-bar .store-notice-text {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

@media (max-width: 768px) {
    #store-notice-bar .store-notice-text {
        font-size: 12px;
        padding: 0 15px;
    }
}

