.site-strip
{
    background: var(--yappy-purple);
    color: #fff;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.site-strip-inner
{
    max-width: 1140px;
    margin: 0 auto;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.site-strip-flag
{
    width: 22px;
    height: auto;
    flex-shrink: 0;
    border-radius: 3px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.site-strip-text
{
    min-width: 0;
    line-height: 1.3;
}

.site-strip-text strong
{
    font-weight: 600;
}

.site-strip-switch
{
    background: var(--yappy-cyan);
    border: none;
    color: var(--yappy-purple);
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
    white-space: nowrap;
}

.site-strip-switch:hover
{
    background: var(--yappy-cyan-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.site-strip-close
{
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
    line-height: 1;
    padding: 4px 8px;
    margin-left: -6px;
    cursor: pointer;
    flex-shrink: 0;
    border-radius: 4px;
    transition: color 0.15s ease, background 0.15s ease;
}

.site-strip-close:hover
{
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 540px)
{
    .site-strip-inner
    {
        padding: 8px 12px;
        gap: 10px;
    }
    .site-strip-text
    {
        font-size: 0.8rem;
    }
    .site-strip-cta
    {
        display: block;
    }
    .site-strip-switch
    {
        font-size: 0.78rem;
        padding: 5px 14px;
    }
}
