:root {
  --font-family: "Raleway", sans-serif;
  --font-size-base: 19.4px;
  --line-height-base: 1.6;

  --max-w: 1640px;
  --space-x: 1.79rem;
  --space-y: 1.5rem;
  --gap: 2.56rem;

  --radius-xl: 1.12rem;
  --radius-lg: 1rem;
  --radius-md: 0.49rem;
  --radius-sm: 0.31rem;

  --shadow-sm: 0 2px 4px rgba(0,0,0,0.18);
  --shadow-md: 0 6px 26px rgba(0,0,0,0.23);
  --shadow-lg: 0 20px 52px rgba(0,0,0,0.29);

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

  --brand: #1a56db;
  --brand-contrast: #ffffff;
  --accent: #10b981;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f3f4f6;
  --neutral-300: #d1d5db;
  --neutral-600: #4b5563;
  --neutral-800: #1f2937;
  --neutral-900: #111827;

  --bg-page: #f9fafb;
  --fg-on-page: #111827;

  --bg-alt: #f0f9ff;
  --fg-on-alt: #0369a1;

  --surface-1: #ffffff;
  --surface-2: #f8fafc;
  --fg-on-surface: #1f2937;
  --border-on-surface: #e5e7eb;

  --surface-light: #ffffff;
  --fg-on-surface-light: #374151;
  --border-on-surface-light: #e5e7eb;

  --bg-primary: #1a56db;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #1e40af;
  --ring: #93c5fd;

  --bg-accent: #d1fae5;
  --fg-on-accent: #065f46;
  --bg-accent-hover: #34d399;

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

  --gradient-hero: linear-gradient(135deg, #1a56db 0%, #3b82f6 100%);
  --gradient-accent: linear-gradient(135deg, #10b981 0%, #34d399 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-v12 {
        position: fixed;
        left: clamp(14px, 2vw, 24px);
        bottom: clamp(14px, 2vw, 24px);
        z-index: 99999;
    }

    .wp-lang-switcher-v12__control {
        border: 0;
        border-radius: 14px;
        padding: 10px 13px;
        background: linear-gradient(145deg, #111827, #0f766e);
        color: #ecfeff;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.06em;
        cursor: pointer;
        box-shadow: var(--shadow-lg);
    }

    .wp-lang-switcher-v12__control-icon {
        font-size: 14px;
        line-height: 1;
    }

    .wp-lang-switcher-v12__sheet {
        margin-top: 8px;
        padding: 8px;
        border-radius: 14px;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        width: min(220px, 80vw);
        opacity: 0;
        pointer-events: none;
        transform: translateY(10px);
        transition: opacity var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    }

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

    .wp-lang-switcher-v12__sheet button,
    .wp-lang-switcher-v12__sheet a {
        flex: 1 1 calc(50% - 3px);
        min-height: 34px;
        border-radius: var(--radius-sm);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        text-decoration: none;
        font-size: 11px;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        letter-spacing: 0.04em;
    }

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