/* Кнопки */
.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 40px;
  background: rgba(254, 218, 106, 0.15);
  color: var(--bee-yellow);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(254, 218, 106, 0.3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.2),
    inset 0 0 10px rgba(254, 218, 106, 0.1);
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(254, 218, 106, 0.2),
    transparent
  );
  transition: 0.5s;
}

.cta-button:hover {
  background: rgba(254, 218, 106, 0.25);
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.3),
    inset 0 0 15px rgba(254, 218, 106, 0.2);
  transform: translateY(-2px);
  color: #fff;
  border-color: var(--bee-yellow);
}

.cta-button:hover::before {
  left: 100%;
}

.order-button {
  position: relative;
  display: inline-block;
  padding: 8px 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--bee-yellow);
  text-decoration: none;
  border: 1px solid var(--bee-yellow);
  border-radius: 20px;
  background: transparent;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.3s 0.1s;
}

.button-fill {
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  background: var(--bee-yellow);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
  border-radius: 20px;
}

.order-button:hover {
  color: var(--dark-slate);
}

.order-button:hover .button-fill {
  opacity: 1;
}

.back-home-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: var(--bee-yellow);
  border: 2px solid var(--bee-yellow);
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  z-index: 1;
}

.back-home-button .button-text {
  position: relative;
  z-index: 2;
}

.back-home-button .button-fill {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--bee-yellow);
  transition: var(--transition);
  z-index: 1;
}

.back-home-button:hover {
  color: var(--dark-slate);
}

.back-home-button:hover .button-fill {
  left: 0;
}