        .popup-form {
  box-sizing: border-box;
  transition: min-height 0.3s ease;
  position: relative; /* для абсолютного позиционирования сообщений */
}

/* Общий стиль для сообщений */
.popup-form__error,
.popup-form__positive {
  position: static;
  margin: 0 0 15px 0;
  padding: 0 10px;
  width: 100%;
  text-align: center;
  font-size: 18px;
  display: none;
  box-sizing: border-box;
  word-wrap: break-word;
}

.popup-form__error {
  color: #e74c3c;
}

.popup-form__positive {
  color: #27ae60;
}


.popup-form__heading {
  display: flex;
  justify-content: center; /* по горизонтали */
  align-items: center;     /* по вертикали */
  height: 60px;            /* или нужная высота */
  text-align: center;
  margin-bottom: 20px;     /* отступ снизу, если нужно */
  font-size: 20px;
  font-weight: 600;
}


.popup-cookie {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #fff;
	color: #040404;
	border-top: 3px solid #00A56D;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
	padding: 24px 20px;
	display: none;
	z-index: 1000;

	/* Обнуляем опасные глобальные стили */
	font-size: 14px !important;
	line-height: 1.5 !important;
	font-family: "Roboto", sans-serif !important;
}

.popup-cookie p {
	margin-bottom: 16px;
	max-width: 960px;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	font-size: 14px;
	line-height: 1.5;
}

.popup-cookie a {
	color: #00A56D;
	font-weight: bold;
	text-decoration: underline;
	font-size: inherit;
	line-height: inherit;
}

.popup-cookie a:hover {
	opacity: 0.8;
}

.popup-cookie__btn-wrapper {
	text-align: center;
}

.popup-cookie__btn {
	background-color: #00A56D;
	color: #fff;
	border-radius: 4px;
	padding: 10px 20px;
	cursor: pointer;
	font-family: "Roboto Slab", serif;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 14px;
	line-height: 1.5;
	border: none;
	transition: opacity 0.3s ease;
	display: inline-block;
}

.popup-cookie__btn:hover {
	opacity: 0.85;
}

.popup-form__checkbox-wrapper {
    margin: 15px 0;
}

.popup-form__checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.4;
    gap: 10px;
}

.popup-form__checkbox-input {
    display: none;
}

.popup-form__checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.popup-form__checkbox-input:checked + .popup-form__checkbox-label .popup-form__checkbox-custom {
    background-color: #007bff;
    border-color: #007bff;
}

.popup-form__checkbox-input:checked + .popup-form__checkbox-label .popup-form__checkbox-custom::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.popup-form__checkbox-text {
    flex: 1;
    word-wrap: break-word;
    line-height: 1.4;
}

.popup-form__checkbox-text a {
    color: #007bff;
    text-decoration: underline;
}

.popup-form__checkbox-text a:hover {
    text-decoration: none;
}

.popup-form__input--submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}
