:root {
  --vt-black: #0b0b0b;
  --vt-white: #ffffff;
  --vt-gold: #d4af37;
  --vt-green: #25d366;
}

body {
  margin: 0 auto !important;
}

.vt-menu-toggle {
  position: relative;
  width: 32px;
  height: 32px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: currentColor;
}

/* Icon wrapper */
.vt-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

/* SVG sizing */
.vt-icon svg {
  width: 100%;
  height: 100%;
}

/* Default state */
.vt-icon-open {
  opacity: 1;
  transform: scale(1);
}

.vt-icon-close {
  opacity: 0;
  transform: scale(0.8) rotate(-90deg);
}

/* Active (open menu) */
.vt-menu-toggle.active .vt-icon-open {
  opacity: 0;
  transform: scale(0.8) rotate(90deg);
}

.vt-menu-toggle.active .vt-icon-close {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.vt-whatsapp-sticky {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.vt-whatsapp-sticky svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

.vt-whatsapp-sticky:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.vt-reservation-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  background: #000;
  color: #fff;
}
