/* Burger Menu Styles */
.burger-menu {
  position: fixed;
  top: 1.5rem;
  right: 1rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
}

.cross-style {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: absolute;
  top: 77%;
  right: 38%;
  transform: translate(-50%, -50%);
  width: 11%;
  z-index: 2;
}

.burger-button {
  width: 2rem;
  height: 2rem;
  padding: 0.25rem;
  z-index: 2;
  font-size: 2rem;
  border-radius: 10px;
  background: radial-gradient(
      107.08% 85.59% at 86.3% 87.5%,
      rgba(0, 0, 0, 0.23) 0%,
      rgba(0, 0, 0, 0) 86.18%
    ),
    radial-gradient(
      83.94% 83.94% at 26.39% 20.83%,
      rgba(255, 255, 255, 0.41) 0%,
      rgba(255, 255, 255, 0) 69.79%,
      rgba(255, 255, 255, 0) 100%
    ),
    #fff200;
  box-shadow: 2.68px 25.464px 41.546px 0 rgba(0, 0, 0, 0.5),
    -2.01px -2.68px 4.691px 0 rgba(255, 255, 255, 0.15) inset;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: absolute;
  top: 35%;
  right: 0;
  transform: translateY(-50%);
}

.burger-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.burger-line {
  width: 17px;
  height: 2px;
  background: #000;
  border-radius: 1px;
  transition: all 0.3s ease;
}

.cross-icon {
  position: relative;
  width: 20px;
  height: 20px;
  display: none;
}

.cross-line {
  position: absolute;
  width: 20px;
  height: 2px;
  background: #000;
  border-radius: 1px;
  top: 50%;
  left: 0;
  transform-origin: center;
  transition: all 0.3s ease;
}

.cross-line-1 {
  transform: translateY(-50%) rotate(45deg);
}

.cross-line-2 {
  transform: translateY(-50%) rotate(-45deg);
}

.menu-expansion {
  width: 2rem;
  height: 6rem;
  border-radius: 0 0 10px 10px;
  background: rgba(255, 242, 0, 0.5);
  backdrop-filter: blur(10px);
  padding: 0.25rem;
  margin-top: -0.5rem;
  display: none;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.4s ease;
}

.menu-expansion.expanded {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.menu-item {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  padding: 5px 0;
}

.menu-item:hover {
  background: rgba(255, 255, 255, 0.2);
}

.menu-item img {
  width: 1.75rem;
  object-fit: contain;
}

.whatsapp-button {
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.whatsapp-button.visible {
  opacity: 0;
  animation: slideInFromTop 0.4s ease both;
}

.whatsapp-button:hover {
  transform: scale(1.1);
}

.whatsapp-button img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.replay {
  color: black;
  padding: 0.7rem 1.2rem;
  border-radius: 0.78125rem;
  background: radial-gradient(
      76.16% 76.16% at 31.97% 19.67%,
      rgba(255, 255, 255, 0.7) 0%,
      rgba(255, 255, 255, 0) 69.79%,
      rgba(255, 255, 255, 0) 100%
    ),
    #fff200;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  width: 97%;
}

.share {
  color: black;
  border-radius: 5.85938rem;
  background: radial-gradient(
      107.08% 85.59% at 86.3% 87.5%,
      rgba(0, 0, 0, 0.23) 0%,
      rgba(0, 0, 0, 0) 86.18%
    ),
    radial-gradient(
      83.94% 83.94% at 26.39% 20.83%,
      rgba(255, 255, 255, 0.59) 0%,
      rgba(255, 255, 255, 0) 69.79%,
      rgba(255, 255, 255, 0) 100%
    ),
    #f1f1f1;
  padding: 0.65rem 1.6rem;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
}
