/* ═══════════════════════════════════════════
       TIKUNA – CONTACT WIDGET
       Minimal Brutalism · fixed · right edge
    ═══════════════════════════════════════════ */
    :root {
      --tkn-bg:          #fff;
      --tkn-fg:          #4f473c;
      --tkn-accent:      #ddbc51;
      --tkn-font:        'bebas', sans-serif;
      --tkn-radius:      0px;
      --tkn-w:           66px;
      --tkn-expanded-w:  220px;
      --tkn-gap:         8px;
      --tkn-z:           9999;
    }

    /* ── WRAPPER ── */
    #tkn-widget {
      position: fixed;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      z-index: var(--tkn-z);
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: var(--tkn-gap);
      font-family: var(--tkn-font);
    }

    /* ── TOGGLE-BUTTON ── */
    #tkn-toggle {
      width: var(--tkn-w);
      height: var(--tkn-w);
      color: var(--tkn-bg);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      background: #ddbc51;
      /* tiny label rotated */
      writing-mode: initial;
      border: none;
    }
    #tkn-toggle:hover {
      background: var(--tkn-bg);
      color: var(--tkn-bg);
    }
    /* icon swap via aria */
    #tkn-toggle[aria-expanded="true"] .icon-open  { display: none; }
    #tkn-toggle[aria-expanded="false"] .icon-close { display: none; }

    /* ── PANEL ── */
    #tkn-panel {
      display: flex;
      flex-direction: column;
      gap: var(--tkn-gap);
      overflow: hidden;
      max-height: 0;
      opacity: 0;
      pointer-events: none;
      transition: max-height .35s cubic-bezier(.77,0,.18,1),
                  opacity .25s ease;
    }
    #tkn-panel.open {
      max-height: 600px;
      opacity: 1;
      pointer-events: auto;
    }

    /* ── SHARED ITEM STYLE ── */
    .tkn-item {
      align-items: center;
      gap: 10px;
      background: var(--tkn-bg);
      color: var(--tkn-fg);
      padding: 5px 12px 5px 12px;
      height: 46px;
      text-decoration: none;
      font-size: 2.2rem;
      letter-spacing: .08em;
      text-align: center;
      text-transform: uppercase;
      white-space: nowrap;
      transition: background .15s, color .15s, transform .1s;
      cursor: pointer;
    }
    .tkn-item:hover {
      background: var(--tkn-accent);
      color: var(--tkn-bg);
      transform: translateX(-3px);
    }
    .tkn-item i {
	    font-size: 4rem;
    }
    .tkn-item svg {
      flex-shrink: 0;
      width: 32px;
      height: 32px;
      fill: currentColor;
    }

    /* ── CTA KONTAKT – highlighted ── */
    .tkn-item.cta {
      background: var(--tkn-fg);
      color: var(--tkn-bg);
      font-weight: 700;
    }
    .tkn-item.cta:hover {
      background: var(--tkn-accent);
    }

    /* ── DIVIDER LABEL ── */
    .tkn-label {
      font-size: .6rem;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--tkn-bg);
      text-align: right;
      padding-right: 6px;
      opacity: .45;
      user-select: none;
    }

    /* ════════════════════════════════
       MOBILE  ≤ 600 px
       Widget wandert nach unten rechts
       und wird zur horizontalen Leiste
    ════════════════════════════════ */
    @media (max-width: 600px) {
      #tkn-widget {
        top: auto;
        bottom: 80px;
        right: 0;
        transform: none;
        flex-direction: row-reverse;
        align-items: flex-end;
      }

      #tkn-toggle {
        width: 68px;
        height: 48px;
      }

      #tkn-panel {
        flex-direction: row-reverse;
        max-height: none;
        max-width: 0;
        opacity: 0;
        transition: max-width .35s cubic-bezier(.77,0,.18,1),
                    opacity .25s ease;
        overflow: hidden;
        align-items: flex-end;
        gap: var(--tkn-gap);
        flex-wrap: nowrap;
      }
      #tkn-panel.open {
        max-width: 100vw;
        max-height: none;
        opacity: 1;
      }

      .tkn-item {
        height: 48px;
        padding: 0 12px;
        font-size: .65rem;
        transform: none;
      }
      .tkn-item:hover {
        transform: translateY(-3px);
      }

      .tkn-label { display: none; }
    }
