:root {
  --font-family: "Roboto", sans-serif;
  --font-size-base: 15.1px;
  --line-height-base: 1.82;

  --max-w: 1100px;
  --space-x: 1.71rem;
  --space-y: 1.5rem;
  --gap: 1.1rem;

  --radius-xl: 1.34rem;
  --radius-lg: 1rem;
  --radius-md: 0.7rem;
  --radius-sm: 0.31rem;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 3px 14px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 20px rgba(0,0,0,0.06);

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

  --brand: #FFC107;
  --brand-contrast: #1a1a1a;
  --accent: #2196F3;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f5f5f5;
  --neutral-300: #e0e0e0;
  --neutral-600: #757575;
  --neutral-800: #424242;
  --neutral-900: #212121;

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

  --bg-alt: #fafafa;
  --fg-on-alt: #424242;

  --surface-1: #ffffff;
  --surface-2: #f5f5f5;
  --fg-on-surface: #212121;
  --border-on-surface: #e0e0e0;

  --surface-light: #ffffff;
  --fg-on-surface-light: #424242;
  --border-on-surface-light: #f0f0f0;

  --bg-primary: #FFC107;
  --fg-on-primary: #1a1a1a;
  --bg-primary-hover: #FFB300;
  --ring: #FFC107;

  --bg-accent: #E3F2FD;
  --fg-on-accent: #0D47A1;
  --bg-accent-hover: #1976D2;

  --link: #2196F3;
  --link-hover: #1976D2;

  --gradient-hero: linear-gradient(135deg, #ffffff 0%, #fff8e1 100%);
  --gradient-accent: linear-gradient(90deg, #FFC107 0%, #FFD54F 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);
    }