:root {
  --font-family: "Lato", sans-serif;
  --font-size-base: 18.3px;
  --line-height-base: 1.74;

  --max-w: 1360px;
  --space-x: 2.14rem;
  --space-y: 1.5rem;
  --gap: 1.32rem;

  --radius-xl: 1.16rem;
  --radius-lg: 1rem;
  --radius-md: 0.59rem;
  --radius-sm: 0.32rem;

  --shadow-sm: 0 1px 7px rgba(0,0,0,0.15);
  --shadow-md: 0 10px 14px rgba(0,0,0,0.2);
  --shadow-lg: 0 14px 30px rgba(0,0,0,0.24);

  --overlay: rgba(0, 0, 0, 0.45);
  --anim-duration: 410ms;
  --anim-ease: cubic-bezier(0.4,0,0.2,1);
  --random-number: 2;

  --brand: #1a73e8;
  --brand-contrast: #ffffff;
  --accent: #34a853;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f8f9fa;
  --neutral-300: #dadce0;
  --neutral-600: #5f6368;
  --neutral-800: #3c4043;
  --neutral-900: #202124;

  --bg-page: #ffffff;
  --fg-on-page: #202124;

  --bg-alt: #f8f9fa;
  --fg-on-alt: #3c4043;

  --surface-1: #ffffff;
  --surface-2: #f8f9fa;
  --fg-on-surface: #202124;
  --border-on-surface: #dadce0;

  --surface-light: #ffffff;
  --fg-on-surface-light: #5f6368;
  --border-on-surface-light: #e8eaed;

  --bg-primary: #1a73e8;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #0d62d9;
  --ring: #1a73e8;

  --bg-accent: #e6f4ea;
  --fg-on-accent: #0d652d;
  --bg-accent-hover: #2e8b47;

  --link: #1a73e8;
  --link-hover: #0d62d9;

  --gradient-hero: linear-gradient(135deg, #1a73e8 0%, #34a853 100%);
  --gradient-accent: linear-gradient(90deg, #e6f4ea 0%, #f1f3f4 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);
    }