/* ========================================
   BUTTONS
   ======================================== */

/* Login Button */
.btn--login {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 15px 8px 9px;
  background-color: var(--color-white);
  border-radius: 25px;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.btn--login:hover {
  background-color: var(--color-primary);
  box-shadow: 0px 4px 12px rgba(219, 161, 116, 0.4);
}

.btn--login:hover .btn__text {
  color: var(--color-white);
}

.btn--login .btn__icon-wrapper {
  position: relative;
  width: 25px;
  height: 25px;
  flex-shrink: 0;
}

.btn--login .btn__text {
  font-family: var(--font-semibold);
  font-weight: 400;
  color: var(--color-black);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 25px;
  white-space: nowrap;
}

.btn--login .btn__icon-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: var(--color-primary);
}

.btn--login .btn__icon {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
}

/* CTA Button */
.btn--cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 50px;
  position: relative;
  cursor: pointer;
}

.btn__cta-bg {
  position: absolute;
  inset: 0;
  background-color: var(--color-primary);
  border-radius: 36px;
  box-shadow: 0px 0px 20px 7px #dba1744c;
}

.btn__cta-text {
  position: relative;
  z-index: 1;
  font-family: var(--font-semibold);
  font-weight: 400;
  color: var(--color-white);
  font-size: 22px;
  text-align: center;
  letter-spacing: 0;
  line-height: 25px;
  white-space: nowrap;
  margin-left: 30px;
}

.btn__cta-circle {
  position: absolute;
  left: 9px;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  background-color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn__cta-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: 0px 0px 6px 1px #ff000040;
  background-color: var(--color-primary);
}

/* Secondary Button */
.btn--secondary {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px 8px 9px;
  background-color: var(--color-bg-light);
  border-radius: 25px;
  text-decoration: none;
  width: fit-content;
  transition: all 0.3s ease;
}

.btn--secondary:hover {
  background-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0px 4px 12px rgba(219, 161, 116, 0.3);
}

.btn--secondary:hover .btn__secondary-text {
  color: var(--color-white);
}

.btn--secondary:hover .btn__secondary-icon {
  background-color: var(--color-white);
}

.btn--secondary:hover .btn__arrow {
  filter: brightness(0) saturate(100%);
}

.btn__secondary-bg {
  display: none;
}

.btn__secondary-text {
  font-family: var(--font-semibold);
  font-weight: 400;
  color: var(--color-black);
  font-size: 16px;
  letter-spacing: 0;
  line-height: normal;
}

.btn__secondary-icon {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: var(--color-primary);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.btn__arrow {
  width: 18px;
  height: 18px;
  position: absolute;
}

/* All Button */
.btn--all {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px 8px 9px;
  background-color: var(--color-bg-light);
  border-radius: 25px;
  text-decoration: none;
  width: fit-content;
  margin: 0;
  transition: all 0.3s ease;
}

.btn--all:hover {
  background-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0px 4px 12px rgba(219, 161, 116, 0.3);
}

.btn--all:hover .btn__all-text {
  color: var(--color-white);
}

.btn--all:hover .btn__secondary-icon {
  background-color: var(--color-white);
}

.btn--all:hover .btn__arrow {
  filter: brightness(0) saturate(100%);
}

.btn__all-bg {
  display: none;
}

.btn__all-text {
  font-family: var(--font-semibold);
  font-weight: 400;
  color: var(--color-black);
  font-size: 16px;
  letter-spacing: 0;
  line-height: normal;
}

/* Submit Button */
.btn--submit {
  width: 100%;
  padding: 18px 40px;
  background-color: var(--color-primary);
  border: none;
  border-radius: 15px;
  font-family: var(--font-semibold);
  font-weight: 600;
  color: var(--color-white);
  font-size: 20px;
  letter-spacing: 0;
  line-height: normal;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 20px rgba(219, 161, 116, 0.3);
}

.btn--submit:hover {
  background-color: #c8915e;
  transform: translateY(-2px);
  box-shadow: 0px 6px 25px rgba(219, 161, 116, 0.4);
}

.btn--submit:active {
  transform: translateY(0);
}

/* Detail Button */
.btn-detail {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  background-color: #FFFFFF;
  border: none;
  border-radius: 28px;
  padding: 12px 20px 12px 48px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 46px;
  margin-top: 15px;
}

.btn-detail:hover {
  background-color: #f5f5f5;
  transform: translateX(4px);
}

.btn-detail__icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background-color: #DBA174;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #FFFFFF;
  transition: all 0.3s ease;
}

.btn-detail:hover .btn-detail__icon {
  background-color: #c58d61;
}

.btn-detail__text {
  font-family: 'Montserrat', var(--font-semibold);
  font-weight: 600;
  color: #000000;
  font-size: 18px;
  line-height: 22px;
}
