body {
  font-family: 'Manrope', sans-serif;
}

.text-justify {
  text-align: justify;
}
.menu-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #AF4425; /* оранжевый */
  color: #DAC9B6; /* светлый текст */
  border-radius: 9999px; /* таблетка */
  padding: 5px 5px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  cursor: pointer;
  z-index: 10001;
  transition: background-color 0.3s, color 0.3s;
}

.menu-toggle.open {
  background-color: #DAC9B6; /* светлая плашка */
  color: #AF4425; /* слово Close — оранжевым */
}

.side-menu {
  position: fixed;
  top: 10px;
  right: 10px; /* ✅ отступ от правого края */
  width: 200px;
  height: 200px; /* ✅ фиксированная высота */
  background-color: #AF4425;
  border-radius: 20px;
  opacity: 0;
  pointer-events: none;
  transition:
    width 0.5s ease,
    height 0.5s ease,
    border-radius 0.5s ease,
    background-color 0.3s,
    opacity 0.3s;
  z-index: 10000;
  padding: 50px 30px 30px 30px;
  overflow: hidden;
  transform: translateY(-30px);
}

.side-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-items a {
  display: block;
  color: #DAC9B6 !important; /* светлый текст */
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 20px;
  transition: opacity 0.2s;
}

.menu-items a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.t-text {
  text-align: justify;
}
