:root {
  --font-family: "Montserrat", sans-serif;
  --font-size-base: 15.3px;
  --line-height-base: 1.5;

  --max-w: 1120px;
  --space-x: 0.91rem;
  --space-y: 1.35rem;
  --gap: 0.75rem;

  --radius-xl: 0.96rem;
  --radius-lg: 0.79rem;
  --radius-md: 0.43rem;
  --radius-sm: 0.26rem;

  --shadow-sm: 0 1px 6px rgba(0,0,0,0.07);
  --shadow-md: 0 6px 18px rgba(0,0,0,0.09);
  --shadow-lg: 0 12px 34px rgba(0,0,0,0.11);

  --overlay: rgba(0, 0, 0, 0.45);
  --anim-duration: 280ms;
  --anim-ease: ease;
  --random-number: 1;

  --brand: #2A6E3F;
  --brand-contrast: #FFFFFF;
  --accent: #3B8C55;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F8FAF9;
  --neutral-300: #D1D9D4;
  --neutral-600: #6B7A70;
  --neutral-800: #2C352F;
  --neutral-900: #121614;

  --bg-page: #FFFFFF;
  --fg-on-page: #121614;

  --bg-alt: #F8FAF9;
  --fg-on-alt: #2C352F;

  --surface-1: #FFFFFF;
  --surface-2: #F8FAF9;
  --fg-on-surface: #2C352F;
  --border-on-surface: #D1D9D4;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #2C352F;
  --border-on-surface-light: #E8F5EC;

  --bg-primary: #2A6E3F;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #3B8C55;
  --ring: #3B8C55;

  --bg-accent: #E8F5EC;
  --fg-on-accent: #1A4729;
  --bg-accent-hover: #4CA66D;

  --link: #2A6E3F;
  --link-hover: #3B8C55;

  --gradient-hero: linear-gradient(135deg, #2A6E3F 0%, #3B8C55 100%);
  --gradient-accent: linear-gradient(90deg, #E8F5EC 0%, #FFFFFF 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);
    }