 /* Кнопка */
  #callbackBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--chinazes-color);
    color: var(--bg-darker) !important;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 1000;
    transition: opacity 0.3s ease, visibility 0.3s ease;
	animation: pulse 2s infinite;
  }

  #callbackBtn:hover {
    background: rgba(190, 235, 40, 0.9);
  }

  /* Форма */
  #callbackForm {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: #33383a;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    width: 290px;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1001;
  }

  #callbackForm.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  #callbackForm .form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }

  #callbackForm .form-header h3 {
    margin: 0;
    font-size: 16px;
    color: var(--chinazes-color);
  }
  
	.callback__subtitle {
	  font-size: 14px;
	  color: #ccc;
	  margin-bottom: 25px;
	  text-align: justify;
	}
	
	.callback__form-body {
	  display: flex;
	  flex-direction: column;
	  gap: 20px;
	}
	
	.callback__group {
	  position: relative;
	}

.callback__icon {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  font-size: 18px;
  color: #999;
  pointer-events: none;
}

/* Replace bs styles */
.callback__group .form-control.callback__input,
.callback__group .callback__textarea {
  width: 100%;
  padding: 14px 14px 14px 40px;
  border-radius: 10px;
  border: none;
  outline: none;
  background: var(--bg-input);
  color: #fff;
  font-size: 18px;
  box-sizing: border-box;
  box-shadow: none;
}

.callback__group .form-control.callback__input:focus {
	box-shadow: 0 0 0 0.25rem rgba(208, 255, 51, 1);
}

.callback__input,
.callback__textarea {
  width: 100%;
  padding: 14px 14px 14px 40px;
  border-radius: 10px;
  border: none;
  outline: none;
  background: var(--bg-input);
  color: #fff;
  font-size: 18px;
  box-sizing: border-box;
}

.callback__input:focus,
.callback__textarea:focus {
	box-shadow: 0 0 0 0.25rem rgba(208, 255, 51, 1);
}

.callback__textarea {
  min-height: 100px;
  resize: vertical;
  padding-left: 14px; /* без іконки */
}

/* Плейсхолдери для всіх callback-полів */
.callback__group .form-control.callback__input::placeholder,
.callback__input::placeholder,
.callback__textarea::placeholder {
  color: #999;
  opacity: 1;
}

  #closeFormBtn {
    font-size: 18px;
    cursor: pointer;
    color: #888;
    transition: color 0.2s;
  }

  #closeFormBtn:hover {
    color: red;
  }

  #callbackForm input {

  }

  #callbackForm button {
    width: 100%;
    background: var(--chinazes-color);
    color: var(--bg-darker);
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    /* text-transform: uppercase; */
    font: 700 16px var(--font-family);
    letter-spacing: 0.06em;
  }

  #callbackForm button:hover {
    background: rgba(190, 235, 40, 0.9);
  }
  
  #callbackFormInner input {
      /* border: 1px solid rgba(51, 56, 58, 0.71); */
  }
  
  /* Пульсація */
@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(208, 255, 51, 0.7);
	}

	70% {
		box-shadow: 0 0 0 10px rgba(208, 255, 51, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(208, 255, 51, 0);
	}
}
