/* BUTTON ORDER */
.btn-order {
  font-family: 'Inter', sans-serif;
  background: var(--orange-color);
  color: black;
  border: none;
  border-radius: 16px;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.btn-order:hover {
  background: #db8300;
}

/* BUTTON WHATSAPP */
.btn-whatsapp {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  background: var(--green-color);
  border: none;
  padding: 11px 24px;
  border-radius: 12px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.btn-whatsapp > img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.btn-whatsapp:hover {
  background: #04df7c;
}

/* BUTTON CATALOG */
.btn-catalog {
  font-family: 'Inter';
  font-size: 14px;
  background: var(--orange-color);
  border: none;
  padding: 0 24px;
  border-radius: 12px;
  width: 179px;
  height: 42px;
}

.btn-catalog:hover {
  background-color: #ffb300;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}

/* BUTTON GOFOOD */
.btn-gofood {
  font-family: 'Inter', sans-serif;
  background: var(--red-color);
  color: black;
  border: none;
  padding: 11px 24px;
  margin-top: 25px;
  border-radius: 12px;
  font-size: 14px;
}

.gofood-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  margin-right: 5px;
}

/* BUTTON OVERLAY */
.btn-overlay {
  font-family: 'Inter', sans-serif;
  position: absolute;
  bottom: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  width: 144px;
  height: 52px;
  background: #391808;
  color: #fff;
  font-size: 14px;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1;
}

.btn-overlay:hover {
  background: rgba(62, 39, 35, 1);
  color: #ffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

.overlay-icon img {
  width: 18px;
  height: 18px;
}

/* RESPONSIVE BUTTONS */
@media (min-width: 992px) {
  .btn-whatsapp {
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  }

  .btn-whatsapp > img {
    width: 24px;
    height: 24px;
  }
}

@media (min-width: 1440px) {
  .btn-order {
    padding: auto 56px;
    font-size: 20px;
    width: 237px;
    height: 72px;
  }

  .btn-catalog {
    font-size: 16px;
    padding: 0 32px;
    border-radius: 16px;
    width: 213px;
    height: 52px;
  }

  .btn-gofood {
    padding: 20px 32px;
    margin-top: 30px;
    border-radius: 16px;
    font-size: 16px;
  }

  .gofood-icon {
    width: 32px;
    height: 32px;
  }

  .btn-overlay {
    width: 157px;
    height: 72px;
    font-size: 16px;
  }

  .overlay-icon img {
    width: 24px;
    height: 24px;
  }
}
