/* Brand Switch Notice */
.brand-switch-notice {
    background: linear-gradient(135deg, #4a9eff 0%, #2F74B9 100%);
    color: white;
    padding: 12px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1000;
}

.brand-switch-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.brand-switch-message {
    flex: 1;
    font-size: 15px;
}

    .brand-switch-message strong {
        font-weight: 600;
    }

.brand-switch-link {
    color: white;
    text-decoration: underline;
    font-weight: 600;
    margin-left: 8px;
}

    .brand-switch-link:hover {
        text-decoration: none;
    }

.brand-switch-auto {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
}

    .brand-switch-auto input[type="checkbox"] {
        cursor: pointer;
        width: 18px;
        height: 18px;
    }

.brand-switch-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

    .brand-switch-close:hover {
        opacity: 1;
    }

/* Brand Switch Notice - Responsive */
@media (max-width: 768px) {
    .brand-switch-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .brand-switch-message {
        font-size: 14px;
    }

    .brand-switch-auto {
        align-self: flex-start;
    }

    .brand-switch-close {
        position: absolute;
        top: 8px;
        right: 8px;
    }
}
