:root {
  --font-family: "Archivo", sans-serif;
  --font-size-base: 19.7px;
  --line-height-base: 1.77;

  --max-w: 1360px;
  --space-x: 1.84rem;
  --space-y: 1.5rem;
  --gap: 2.56rem;

  --radius-xl: 1.18rem;
  --radius-lg: 1rem;
  --radius-md: 0.52rem;
  --radius-sm: 0.33rem;

  --shadow-sm: 0 1px 7px rgba(0,0,0,0.11);
  --shadow-md: 0 8px 22px rgba(0,0,0,0.14);
  --shadow-lg: 0 16px 30px rgba(0,0,0,0.17);

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

  --brand: #E8B4BC;
  --brand-contrast: #1A1A1A;
  --accent: #4A90E2;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F5F7;
  --neutral-300: #D1D1D6;
  --neutral-600: #8E8E93;
  --neutral-800: #3A3A3C;
  --neutral-900: #1A1A1A;

  --bg-page: #FFFFFF;
  --fg-on-page: #1A1A1A;

  --bg-alt: #F9F9FB;
  --fg-on-alt: #3A3A3C;

  --surface-1: #FFFFFF;
  --surface-2: #F5F5F7;
  --fg-on-surface: #1A1A1A;
  --border-on-surface: #E5E5EA;

  --surface-light: rgba(255, 255, 255, 0.85);
  --fg-on-surface-light: #1A1A1A;
  --border-on-surface-light: rgba(229, 229, 234, 0.7);

  --bg-primary: #E8B4BC;
  --fg-on-primary: #1A1A1A;
  --bg-primary-hover: #D9A2AB;
  --ring: rgba(232, 180, 188, 0.4);

  --bg-accent: rgba(74, 144, 226, 0.1);
  --fg-on-accent: #4A90E2;
  --bg-accent-hover: #357ABD;

  --link: #4A90E2;
  --link-hover: #357ABD;

  --gradient-hero: linear-gradient(135deg, rgba(232, 180, 188, 0.05) 0%, rgba(26, 26, 26, 0.02) 100%);
  --gradient-accent: linear-gradient(90deg, #4A90E2 0%, #63B3ED 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);
    }