/* ============================================
   Pagina Contacte — matches old Next.js layout
   ============================================ */

/* Header offset is applied globally via theme.css. */

/* ── Section title bar (shared for Contacts, Form, Jobs) ── */
/* The section header that precedes the contact form gets extra breathing room above the title. */
.ct-section-header:has(+ .contacte-form) {
    padding-top: 70px;
}
.ct-section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid var(--color-white);
    border-left: 1px solid var(--color-white);
    border-right: 1px solid var(--color-white);
    padding: 20px 0;
}
.ct-section-header__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-white);
    text-align: center;
}

/* ── Section 1: Info Grid ─────────────────── */
.contacte-info__row-1 {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    line-height: normal;
    border: 1px solid var(--color-white);
}

/* Column headers */
.ct-col-header {
    text-align: center;
    color: var(--color-white);
    font-size: 30px;
    font-family: var(--font-primary);
    font-weight: 400;
    text-transform: uppercase;
    line-height: 25px;
    padding: 26px 16px;
    border-bottom: 1px solid var(--color-white);
    width: 100%;
}

/* Main contacts column */
.contacte-info__main {
    border: 1px solid var(--color-white);
}
.contacte-info__main-body {
    padding: 32px;
}
.contacte-info__main-body > div + div {
    margin-top: 36px;
}

/* Tours & Stores column */
.contacte-info__tours-stores {
    display: flex;
    flex-direction: column;
}
.contacte-info__tours {
    border: 1px solid var(--color-white);
    flex: 1;
}
.contacte-info__tours-body {
    display: flex;
    flex-direction: column;
    padding: 32px;
}
.contacte-info__stores {
    border: 1px solid var(--color-white);
    flex: 1;
}
.contacte-info__stores-body {
    display: flex;
    flex-direction: column;
    padding: 32px;
}

/* GIF column */
.contacte-info__gif-col {
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 460px;
}
.contacte-info__gif-wrap {
    max-width: 340px;
    width: 100%;
    height: 290px;
}
.contacte-info__gif {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Shared text styles */
.contacte-info__text {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-white);
}
.contacte-info__text p {
    margin-bottom: 8px;
}
.contacte-info__text a {
    color: var(--color-white); font-weight: 500;
}

/* Row 2: Sales contacts */
.contacte-info__row-2 {
    display: grid;
    grid-template-columns: 1fr;
}
.ct-row2-header {
    text-align: center;
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 20px 16px;
    border-bottom: 1px solid var(--color-white);
}
.contacte-info__sales-col {
    border-left: 1px solid var(--color-white);
    border-right: 1px solid var(--color-white);
    border-bottom: 1px solid var(--color-white);
}
.contacte-info__sales-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-white);
}
.contacte-info__sales-body p {
    margin-bottom: 8px;
}
.contacte-info__sales-body a {
    color: var(--color-white); font-weight: 500;
}

@media (min-width: 768px) {
    .contacte-info__row-1 {
        grid-template-columns: 3fr 4fr 5fr;
    }
    .contacte-info__tours-body,
    .contacte-info__stores-body {
        flex-direction: row;
        justify-content: space-between;
    }
    .contacte-info__row-2 {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .contacte-info__main-body,
    .contacte-info__tours-body,
    .contacte-info__stores-body {
        padding: 20px;
    }
    .contacte-info__tours-body > div + div,
    .contacte-info__stores-body > div + div {
        margin-top: 40px;
    }
}

/* ── Section 2: Contact Form ──────────────── */
.contacte-form {
    border-left: 1px solid var(--color-white);
    border-right: 1px solid var(--color-white);
    border-bottom: 1px solid var(--color-white);
    padding: 28px 0 40px;
}
.contacte-form__form {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}
.contacte-form__row {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    justify-content: center;
}
.contacte-form__row + .contacte-form__row {
    margin-top: 24px;
}
.contacte-form__field {
    width: 100%;
    margin-top: 5px;
}

/* Inputs — pill-shaped (matches Figma design) */
.contacte-form__field input,
.contacte-form__field select {
    width: 100%;
    background: transparent;
    border: 1px solid var(--color-white);
    border-radius: 100px;
    color: var(--color-white);
    padding: 10px 24px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s ease;
}
.contacte-form__field textarea {
    width: 100%;
    background: transparent;
    border: 2px solid var(--color-white);
    border-radius: 29px;
    color: var(--color-white);
    padding: 14px 24px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 300;
    min-height: 100px;
    resize: vertical;
    outline: none;
    transition: border-color 0.3s ease;
}
.contacte-form__field input::placeholder,
.contacte-form__field textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}
.contacte-form__field input:focus,
.contacte-form__field select:focus,
.contacte-form__field textarea:focus {
    border-color: var(--color-white);
}

/* Validation states — match Cricova validator output */
.contacte-form__field.field-invalid input,
.contacte-form__field.field-invalid select,
.contacte-form__field.field-invalid textarea {
    border-color: #e74c3c;
}
.contacte-form__field.field-valid input,
.contacte-form__field.field-valid select,
.contacte-form__field.field-valid textarea {
    border-color: rgba(255, 255, 255, 0.85);
}
.contacte-form__error {
    display: none;
    font-size: 11px;
    color: #e74c3c;
    margin-top: 6px;
    letter-spacing: 0.3px;
    line-height: 1.3;
}
.contacte-form__field.field-invalid .contacte-form__error {
    display: block;
}
.contacte-form__checkbox input[aria-invalid="true"] + span,
.contacte-form__checkbox input[aria-invalid="true"] {
    outline: 1px solid #e74c3c;
    outline-offset: 2px;
}
.contacte-form__field select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='21' height='22' viewBox='0 0 21 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L20 21M20 21V1M20 21H1' stroke='white' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 44px;
}
.contacte-form__field select option {
    background: #111;
    color: var(--color-white);
    padding: 10px;
    font-size: 14px;
}
.contacte-form__field input[type="date"] {
    color-scheme: dark;
}
.contacte-form__field--full {
    margin-top: 24px;
}

/* Privacy text */
.contacte-form__privacy {
    max-width: 1100px;
    margin: 32px auto 0;
    padding: 0 16px;
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Checkbox */
.contacte-form__checkbox {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 300;
    cursor: pointer;
}
.contacte-form__checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 3px;
    background: transparent;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}
.contacte-form__checkbox input[type="checkbox"]:checked {
    background: var(--color-white);
    border-color: var(--color-white);
}
.contacte-form__checkbox input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.contacte-form__checkbox input[type="checkbox"]:hover {
    border-color: var(--color-white);
}

/* reCAPTCHA notice */
.contacte-form__recaptcha {
    max-width: 380px;
    margin: 65px auto 0;
    text-align: center;
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 20px;
}
.contacte-form__recaptcha a {
    text-decoration: underline;
    color: var(--color-white);
}

/* Submit button — outline style (matches homepage) */
.contacte-form__submit {
    text-align: center;
    margin-top: 36px;
    margin-bottom: 24px;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}
.contacte-form__submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px 120px;
    font-family: var(--font-primary);
    font-size: 1.875rem;
    font-weight: 300;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: var(--color-white);
    border: 1px solid var(--color-white);
    border-radius: 100px;
    color: var(--color-black);
    cursor: pointer;
    transition: all 0.3s ease;
}
.contacte-form__submit-btn:hover {
    background: rgba(255, 255, 255, 0.85);
    color: var(--color-black);
}
.contacte-form__submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.contacte-form__message {
    margin-top: 16px;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
    animation: cricova-message-in 0.35s ease;
}
.contacte-form__message--success {
    color: var(--color-black);
    border: 1px solid var(--color-white);
    background: var(--color-white);
    font-weight: 500;
}
.contacte-form__message--success::before {
    content: '\2713  ';
}
.contacte-form__message--error {
    color: #ff9b9b;
    border: 1px solid rgba(255, 118, 118, 0.45);
    background: rgba(255, 118, 118, 0.08);
}

@media (min-width: 768px) {
    .contacte-form__row {
        flex-direction: row;
    }
    .contacte-form__field {
        margin-top: 35px;
    }
    .contacte-form__row + .contacte-form__row .contacte-form__field {
        margin-top: 24px;
    }
}
@media (max-width: 767px) {
    .contacte-form__field {
        margin-top: 5px;
    }
}

/* ── Section: Posturi Vacante (Jobs) ──────── */
.ct-jobs__grid {
    display: grid;
    grid-template-columns: 1fr;
    border-right: 1px solid var(--color-white);
    border-top: 1px solid var(--color-white);
}
.ct-job-card {
    border-left: 1px solid var(--color-white);
    border-bottom: 1px solid var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
    padding-top: 48px;
    padding-bottom: 48px;
    min-height: 338px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}
.ct-job-card.is-active {
    background: var(--color-white);
    color: var(--color-black);
}
.ct-job-card__title {
    font-family: var(--font-primary);
    font-size: 30px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 45px;
}
.ct-job-card__action {
    display: flex;
    justify-content: flex-end;
    margin-top: 25px;
}
.ct-job-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--color-white);
    border-radius: 100px;
    padding: 16px 40px;
    background: transparent;
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    color: inherit;
    cursor: pointer;
    transition: border-color 0.3s ease;
}
.ct-job-card.is-active .ct-job-card__btn {
    border-color: var(--color-black);
}
.ct-job-card__btn svg {
    transition: transform 0.3s ease;
}
.ct-job-card.is-active .ct-job-card__btn svg {
    transform: rotate(180deg);
}

/* Expanded job detail row */
.ct-job-detail {
    display: none;
    grid-column: 1 / -1;
    background: var(--color-white);
    color: var(--color-black);
    padding: 16px;
    min-height: 400px;
}
.ct-job-detail.is-visible {
    display: block;
}
.ct-job-detail__header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin: 24px 0;
    gap: 20px;
}
.ct-job-detail__title {
    font-family: var(--font-primary);
    font-size: 30px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 45px;
    max-width: 460px;
}
.ct-job-detail__schedule {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
}
.ct-job-detail__columns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.ct-job-detail__col {
    margin-top: 48px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
}
.ct-job-detail__col h3,
.ct-job-detail__col h4,
.ct-job-detail__col strong {
    font-weight: 600;
    margin-bottom: 8px;
}
.ct-job-detail__col ul {
    list-style: disc;
    padding-left: 20px;
}
.ct-job-detail__col li {
    margin-bottom: 4px;
}
.ct-job-detail__footer {
    display: flex;
    justify-content: flex-end;
    padding: 12px 0 24px;
}
.ct-job-cv-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--color-black);
    border-radius: 100px;
    padding: 16px 40px;
    background: transparent;
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--color-black);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}
.ct-job-cv-btn:hover {
    background: var(--color-black);
    color: var(--color-white);
}

/* CV Upload Modal */
.ct-cv-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.ct-cv-modal.is-open {
    display: flex;
}
.ct-cv-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}
.ct-cv-modal__box {
    position: relative;
    background: var(--color-white);
    max-width: 620px;
    width: 90%;
    padding: 56px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ct-cv-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--color-black);
}
.ct-cv-modal__title {
    font-family: var(--font-primary);
    font-size: 40px;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    color: var(--color-black);
    margin-bottom: 28px;
}
/* File picker + submit read as a matched pair of pills — same width/height
   family so their edges line up, instead of a thin 313px label sitting
   above a much heavier, wider 234px button. */
.ct-cv-modal__file-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    height: 48px;
    border: 1px solid var(--color-black);
    border-radius: 29px;
    cursor: pointer;
    position: relative;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 300;
    color: var(--color-black);
}
.ct-cv-modal__file-label input[type="file"] {
    opacity: 0;
    position: absolute;
    inset: 0;
    cursor: pointer;
}
.ct-cv-modal__file-name {
    margin-top: 12px;
    min-height: 18px; /* reserves its own line so it doesn't shift the gap below once a filename appears */
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--color-black);
}
.ct-cv-modal__submit {
    margin-top: 24px;
    width: 280px;
    height: 48px;
    border: 1px solid var(--color-black);
    border-radius: 211px;
    background: transparent;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-black);
    cursor: pointer;
    transition: all 0.3s ease;
}
.ct-cv-modal__submit:hover {
    background: var(--color-black);
    color: var(--color-white);
}
.ct-cv-modal__submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.ct-cv-form__message {
    margin-top: 16px;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
    animation: cricova-message-in 0.35s ease;
}
.ct-cv-form__message--success {
    color: var(--color-black);
    border: 1px solid var(--color-white);
    background: var(--color-white);
    font-weight: 500;
}
.ct-cv-form__message--success::before {
    content: '\2713  ';
}
.ct-cv-form__message--error {
    color: #ff9b9b;
    border: 1px solid rgba(255, 118, 118, 0.45);
    background: rgba(255, 118, 118, 0.08);
}

@media (min-width: 768px) {
    .ct-jobs__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ct-job-detail__header {
        flex-direction: row;
    }
    .ct-job-detail__columns {
        flex-direction: row;
        align-items: flex-start;
    }
}
@media (min-width: 1024px) {
    .ct-jobs__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 767px) {
    .ct-job-card {
        min-height: auto;
        padding: 20px;
    }
    .ct-job-card__title {
        font-size: 22px;
        line-height: 32px;
    }
    .ct-job-card__btn {
        padding: 12px 24px;
        font-size: 16px;
    }
    .ct-cv-modal__title {
        font-size: 30px;
    }
    .ct-cv-modal__box {
        padding: 40px 20px;
    }
    .ct-cv-modal__file-label,
    .ct-cv-modal__submit {
        width: 100%;
        max-width: 280px;
    }
}

/* ── Section 3: Directions ────────────────── */
.contacte-directions {
    border: 1px solid var(--color-white);
}
.contacte-directions__grid {
    display: grid;
    grid-template-columns: 1fr;
}
.contacte-directions__text-area {
    padding: 40px 20px;
}
.contacte-directions__block + .contacte-directions__block {
    margin-top: 80px;
}
.contacte-directions__title {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-white);
    margin-bottom: 12px;
}
.contacte-directions__desc {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-white);
    margin-top: 40px;
}
.contacte-directions__desc p {
    margin-bottom: 12px;
}
.contacte-directions__video-col {
    display: none;
    overflow: hidden;
    border-left: 1px solid var(--color-white);
}
.contacte-directions__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .contacte-directions__grid {
        grid-template-columns: 2fr 1fr;
    }
    .contacte-directions__text-area {
        padding: 112px 80px;
    }
    .contacte-directions__video-col {
        display: block;
    }
}

/* ── Map ──────────────────────────────────── */
.contacte-map iframe {
    display: block;
    width: 100%;
    min-height: 400px;
}
/* WP Go Maps renders its own sized container — just force full width */
.contacte-map--plugin .wpgmza_map {
    width: 100% !important;
}

/* ── Social (Follow Us) ──────────────────── */
/* Moved to the shared .cricova-social component in theme.css
   (template-parts/social-follow.php) — see that file. */

/* ── Newsletter section (abonare benevolă) ─────────────────────────────── */
.cricova-newsletter {
    border-left: 1px solid var(--color-white);
    border-right: 1px solid var(--color-white);
    padding: 52px 24px 60px;
    text-align: center;
}
.cricova-newsletter__inner {
    max-width: 1080px;
    margin: 0 auto;
}
.cricova-newsletter__heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 0 22px;
}
.cricova-newsletter__title-main {
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 34px);
    /* Matches .ct-section-header__title so the section reads as native */
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-white);
}
.cricova-newsletter__title-main::before,
.cricova-newsletter__title-main::after {
    content: "";
    width: clamp(26px, 6vw, 72px);
    height: 1px;
    background: rgba(255, 255, 255, 0.45);
}
.cricova-newsletter__title-sub {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-top: 10px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}
.cricova-newsletter__title-sub::before,
.cricova-newsletter__title-sub::after {
    content: "";
    width: 34px;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
}
.cricova-newsletter__subtitle {
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    margin: 0 0 30px;
}
.cricova-newsletter__hl {
    color: #fff;
    font-weight: 600;
}
.cricova-newsletter__name {
    color: #fff;
    font-weight: 600;
}
.cricova-newsletter__row {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.cricova-newsletter__field {
    flex: 1 1 320px;
    max-width: 420px;
    text-align: left;
    position: relative;
    display: flex;
}
.cricova-newsletter__field input {
    /* Pill input — matches .contacte-form__field inputs */
    width: 100%;
    background: transparent;
    border: 1px solid var(--color-white);
    border-radius: 100px;
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 300;
    padding: 14px 24px;
    transition: border-color 0.3s ease;
}
.cricova-newsletter__field input::placeholder { color: rgba(255, 255, 255, 0.6); font-weight: 300; }
.cricova-newsletter__field input:focus {
    outline: none;
    border-color: var(--color-white);
}
.cricova-newsletter__error {
    position: absolute;
    top: calc(100% + 5px);
    left: 4px;
    color: #ff7676;
    font-size: 12px;
}
.cricova-newsletter__btn {
    /* White pill CTA — matches .contacte-form__submit-btn */
    background: var(--color-white);
    color: var(--color-black);
    border: 1px solid var(--color-white);
    border-radius: 100px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 40px;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.cricova-newsletter__btn:hover {
    background: rgba(255, 255, 255, 0.85);
    color: var(--color-black);
}
.cricova-newsletter__btn:disabled { opacity: 0.6; cursor: not-allowed; }
.cricova-newsletter__benefits {
    list-style: none;
    margin: 30px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 0;
}
.cricova-newsletter__benefits li {
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--color-white);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.02em;
    padding: 0 26px;
    position: relative;
}
.cricova-newsletter__benefits li + li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.25);
}
.cricova-newsletter__bicon {
    display: inline-flex;
    flex: 0 0 auto;
    color: rgba(255, 255, 255, 0.85);
}
.cricova-newsletter__bicon svg {
    width: 22px;
    height: 22px;
    display: block;
}
.cricova-newsletter__ornament {
    display: block;
    margin: 34px auto 0;
    color: rgba(184, 148, 74, 0.6);
}
.cricova-newsletter__ornament svg {
    width: 130px;
    height: 16px;
    display: block;
    margin: 0 auto;
}
.cricova-newsletter__consent {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    line-height: 1.6;
    margin: 24px auto 0;
    max-width: 600px;
}
.cricova-newsletter__message {
    margin: 18px auto 0;
    max-width: 520px;
    font-size: 14px;
    padding: 12px 18px;
    border-radius: 8px;
    animation: cricova-message-in 0.35s ease;
}
.cricova-newsletter__message--success {
    color: var(--color-black);
    border: 1px solid var(--color-white);
    background: var(--color-white);
    font-weight: 500;
}
.cricova-newsletter__message--success::before {
    content: '\2713  ';
}
.cricova-newsletter__message--error {
    color: #ff9b9b;
    border: 1px solid rgba(255, 118, 118, 0.45);
    background: rgba(255, 118, 118, 0.08);
}
@media (max-width: 600px) {
    .cricova-newsletter__row { flex-direction: column; align-items: stretch; }
    .cricova-newsletter__field { max-width: none; flex-basis: auto; }
    .cricova-newsletter__btn { width: 100%; }
    .cricova-newsletter__benefits {
        gap: 14px 0;
    }
    .cricova-newsletter__benefits li {
        flex: 0 0 50%;
        padding: 0 12px;
        box-sizing: border-box;
        font-size: 13px;
    }
    .cricova-newsletter__benefits li + li::before { display: none; }
    .cricova-newsletter__title-sub { letter-spacing: 0.24em; }
    .cricova-newsletter__title-sub::before,
    .cricova-newsletter__title-sub::after { width: 22px; }
}
