/**
 * Shop Hours Control - Banner Stylesheet
 */

#shc-notice-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999999;
    text-align: center;
    font-family: inherit;
    font-weight: 500;
    font-size: clamp(14px, 1.2vw, 16px);
    line-height: 1.5;
    padding: 14px 20px;
    box-sizing: border-box;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
    color: #f8fafc;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

#shc-notice-banner .shc-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

#shc-notice-banner .shc-status-icon {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #ef4444;
    border-radius: 50%;
    box-shadow: 0 0 8px #ef4444;
    animation: shc-pulse 2s infinite;
}

@keyframes shc-pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

#shc-notice-banner .shc-text {
    color: #f1f5f9;
    font-weight: 500;
}

#shc-notice-banner .shc-sep {
    color: rgba(255, 255, 255, 0.4);
}

#shc-notice-banner #shc-timer {
    color: #10b981;
    font-weight: 700;
    font-family: monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New";
    font-size: 1.05em;
    letter-spacing: 1px;
    background: rgba(16, 185, 129, 0.12);
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

@media (max-width: 640px) {
    #shc-notice-banner {
        font-size: 14px;
        padding: 12px 14px;
    }
    #shc-notice-banner .shc-row {
        flex-direction: column;
        gap: 6px;
    }
    #shc-notice-banner .shc-inline-sep,
    #shc-notice-banner .shc-sep {
        display: none;
    }
    #shc-notice-banner #shc-timer {
        display: inline-block;
        margin-top: 2px;
    }
}
