.smart-head .logo-image {
	max-height: calc(var(--head-h) - 40px) !important;
}
.ts-button.ts-button-a.ts-button1:hover {
    background-color: #095F2E !important;
}

/* Контейнер формы */
.spc-newsletter .tnp-subscription form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Скрываем лишние лейблы, если они мешают */
.spc-newsletter .tnp-field-email label {
    display: none;
}

/* Поле ввода Email */
.spc-newsletter input.tnp-email {
    width: 100%;
    height: 48px;
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 12px !important;
    padding: 0 16px !important;
    color: #ffffff !important;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
}

.spc-newsletter input.tnp-email::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Чекбокс приватности */
.spc-newsletter .tnp-privacy-field {
    margin: 4px 0 8px 0;
    text-align: left;
}

.spc-newsletter .tnp-privacy-field label,
.spc-newsletter .tnp-privacy-field a {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 13px;
    text-decoration: underline;
}

/* Кнопка Subscribe (обычное состояние) */
.spc-newsletter .tnp-field-button {
    text-align: center !important;
    width: 100%;
}

.spc-newsletter input.tnp-submit {
    width: 100% !important;
    height: 50px !important;
    background-color: #ffffff !important;
    color: #006633 !important; /* Насыщенный зеленый из макета */
    border: 2px solid #ffffff !important;
    border-radius: 14px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
    display: block;
}

/* Кнопка Subscribe (Hover состояние) */
.spc-newsletter input.tnp-submit:hover {
    background-color: #004d26 !important; /* Темно-зеленый залив */
    color: #ffffff !important;
    border-color: #004d26 !important;
}