:root {
  --font-family: "Inter", sans-serif;
  --font-size-base: 13.6px;
  --line-height-base: 1.34;

  --max-w: 940px;
  --space-x: 0.89rem;
  --space-y: 0.65rem;
  --gap: 0.73rem;

  --radius-xl: 0.85rem;
  --radius-lg: 0.59rem;
  --radius-md: 0.44rem;
  --radius-sm: 0.21rem;

  --shadow-sm: 0 0px 4px rgba(0,0,0,0.08);
  --shadow-md: 0 3px 8px rgba(0,0,0,0.11);
  --shadow-lg: 0 10px 22px rgba(0,0,0,0.13);

  --overlay: rgba(0, 0, 0, 0.5);
  --anim-duration: 130ms;
  --anim-ease: ease-in-out;
  --random-number: 1;

  --brand: #1e3a8a;
  --brand-contrast: #ffffff;
  --accent: #0284c7;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f8fafc;
  --neutral-300: #cbd5e1;
  --neutral-600: #475569;
  --neutral-800: #1e293b;
  --neutral-900: #0f172a;

  --bg-page: #ffffff;
  --fg-on-page: #1e293b;

  --bg-alt: #f8fafc;
  --fg-on-alt: #334155;

  --surface-1: #ffffff;
  --surface-2: #f1f5f9;
  --fg-on-surface: #1e293b;
  --border-on-surface: #e2e8f0;

  --surface-light: #ffffff;
  --fg-on-surface-light: #475569;
  --border-on-surface-light: #e2e8f0;

  --bg-primary: #1e3a8a;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #1e40af;
  --ring: #3b82f6;

  --bg-accent: #f0f9ff;
  --fg-on-accent: #0369a1;
  --bg-accent-hover: #0ea5e9;

  --link: #2563eb;
  --link-hover: #1d4ed8;

  --gradient-hero: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  --gradient-accent: linear-gradient(90deg, #0284c7 0%, #0ea5e9 100%);

  --btn-ghost-bg: transparent;
  --btn-ghost-bg-hover: rgba(255,255,255,0.06);
  --chip-bg: rgba(255,255,255,0.68);
  --input-placeholder: rgba(255,255,255,0.55);
}
body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
*{box-sizing:border-box;}

.wp-lang-switcher-v7 {
        position: fixed;
        left: clamp(14px, 2vw, 24px);
        bottom: clamp(14px, 2vw, 24px);
        z-index: 99999;
        font-family: inherit;
    }

    .wp-lang-switcher-v7__trigger {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        border: 1px solid var(--border-on-surface);
        border-radius: 999px;
        padding: 10px 14px;
        background: var(--surface-1);
        color: var(--fg-on-surface);
        box-shadow: var(--shadow-md);
        cursor: pointer;
        transition: transform var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v7__trigger:hover {
        transform: translateY(-1px);
        box-shadow: var(--shadow-lg);
    }

    .wp-lang-switcher-v7__icon {
        font-size: 15px;
        line-height: 1;
    }

    .wp-lang-switcher-v7__current {
        font-weight: 700;
        font-size: 12px;
        letter-spacing: 0.06em;
    }

    .wp-lang-switcher-v7__panel {
        margin-top: 10px;
        display: grid;
        gap: 6px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(8px);
        transition: opacity var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v7__panel.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .wp-lang-switcher-v7__panel button,
    .wp-lang-switcher-v7__panel a {
        min-width: 48px;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        padding: 8px 10px;
        text-decoration: none;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-align: center;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v7__panel button:hover,
    .wp-lang-switcher-v7__panel a:hover {
        background: var(--accent);
        border-color: transparent;
        color: var(--accent-contrast);
    }