/* ─── Tisch Reservieren – hover test ─── */

/* Gold fill slides up from the bottom of the button */
#brxe-dqccrx {
  position: relative;
  overflow: hidden;
}

#brxe-dqccrx::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--golden);
  transform: translateY(101%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}

#brxe-wwokyn:hover #brxe-dqccrx::before {
  transform: translateY(0);
}

/* Kanji turns gold */
#brxe-dqigga {
  transition: color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

#brxe-wwokyn:hover #brxe-dqigga {
  color: var(--golden);
}
