.wholesale-request {
    margin: 40px 0;
    padding: 48px;
    border-radius: 20px;
    background:
            radial-gradient(
                    circle at 0 0,
                    rgba(107, 145, 62, 0.13),
                    transparent 38%
            ),
            #f6f7f3;
}

.wholesale-request *,
.wholesale-request *::before,
.wholesale-request *::after {
    box-sizing: border-box;
}

.wholesale-request__inner {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(520px, 1.35fr);
    gap: 48px;
    align-items: start;
}

.wholesale-request__intro {
    padding: 12px 0;
}

.wholesale-request__badge {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    margin-bottom: 18px;
    padding: 6px 13px;
    border-radius: 30px;
    background: rgba(93, 126, 53, 0.12);
    color: #5d7e35;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.wholesale-request__title {
    max-width: 460px;
    margin: 0 0 18px;
    color: #252a22;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 600;
    line-height: 1.12;
}

.wholesale-request__description {
    max-width: 470px;
    margin: 0;
    color: #62685e;
    font-size: 16px;
    line-height: 1.65;
}

.wholesale-request__benefits {
    display: grid;
    gap: 14px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.wholesale-request__benefits li {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #343a30;
    font-size: 15px;
    line-height: 1.4;
}

.wholesale-request__benefit-icon {
    display: inline-flex;
    flex: 0 0 25px;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #5d7e35;
}

.wholesale-request__benefit-icon svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}

.wholesale-request__card {
    padding: 34px;
    border: 1px solid rgba(41, 49, 35, 0.08);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 55px rgba(38, 48, 31, 0.09);
}

.wholesale-form__heading {
    margin-bottom: 26px;
}

.wholesale-form__title {
    margin: 0 0 7px;
    color: #252a22;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.25;
}

.wholesale-form__subtitle {
    margin: 0;
    color: #7a8075;
    font-size: 13px;
    line-height: 1.5;
}

.wholesale-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 18px;
}

.wholesale-form__field {
    min-width: 0;
    margin: 0;
}

.wholesale-form__field--wide {
    grid-column: 1 / -1;
}

.wholesale-form__label {
    display: block;
    margin-bottom: 8px;
    color: #42483e;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
}

.wholesale-form__required {
    color: #bd4c3d;
}

.wholesale-form__control {
    position: relative;
}

.wholesale-form__control-icon {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 19px;
    height: 19px;
    pointer-events: none;
    transform: translateY(-50%);
}

.wholesale-form__control-icon svg {
    width: 18px;
    height: 18px;
    fill: #8b9385;
    transition: fill 0.2s ease;
}

.wholesale-form__input,
.wholesale-form__select {
    width: 100%;
    height: 52px;
    padding: 0 16px 0 45px;
    border: 1px solid #dfe3da;
    border-radius: 9px;
    outline: none;
    background: #fbfcfa;
    color: #2f352c;
    font-family: inherit;
    font-size: 15px;
    line-height: 1;
    transition:
            border-color 0.2s ease,
            background-color 0.2s ease,
            box-shadow 0.2s ease;
}

.wholesale-form__input::placeholder,
.wholesale-form__textarea::placeholder {
    color: #a2a89e;
    opacity: 1;
}

.wholesale-form__input:hover,
.wholesale-form__select:hover,
.wholesale-form__textarea:hover {
    border-color: #cbd2c5;
}

.wholesale-form__input:focus,
.wholesale-form__select:focus,
.wholesale-form__textarea:focus {
    border-color: #6d8e47;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(93, 126, 53, 0.1);
}

.wholesale-form__control:focus-within .wholesale-form__control-icon svg {
    fill: #5d7e35;
}

.wholesale-form__select {
    padding-right: 45px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.wholesale-form__select-arrow {
    position: absolute;
    z-index: 2;
    top: 50%;
    right: 14px;
    display: flex;
    width: 22px;
    height: 22px;
    pointer-events: none;
    transform: translateY(-50%);
}

.wholesale-form__select-arrow svg {
    width: 100%;
    height: 100%;
    fill: #7b8375;
}

.wholesale-form__textarea {
    display: block;
    width: 100%;
    min-height: 112px;
    padding: 14px 16px;
    resize: vertical;
    border: 1px solid #dfe3da;
    border-radius: 9px;
    outline: none;
    background: #fbfcfa;
    color: #2f352c;
    font-family: inherit;
    font-size: 15px;
    line-height: 1.5;
    transition:
            border-color 0.2s ease,
            background-color 0.2s ease,
            box-shadow 0.2s ease;
}

.wholesale-form__agree {
    margin: 22px 0 0;
}

.wholesale-form__agree .checkbox-container {
    display: block;
}

.wholesale-form__agree .checkbox-container__title {
    color: #777e72;
    font-size: 12px;
    line-height: 1.55;
}

.wholesale-form__agree .__link {
    color: #5d7e35;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.wholesale-form__agree .__link:hover {
    text-decoration: none;
}

.wholesale-form__actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 24px 0 0;
}

.wholesale-form__submit {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 12px 24px;
    border: 0;
    border-radius: 9px;
    background: #5d7e35;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    transition:
            background-color 0.2s ease,
            transform 0.2s ease,
            box-shadow 0.2s ease;
}

.wholesale-form__submit svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
}

.wholesale-form__submit:hover {
    background: #4f6d2d;
    box-shadow: 0 8px 20px rgba(74, 105, 40, 0.22);
    transform: translateY(-1px);
}

.wholesale-form__submit:active {
    box-shadow: none;
    transform: translateY(0);
}

.wholesale-form__note {
    max-width: 180px;
    color: #8a9085;
    font-size: 12px;
    line-height: 1.45;
}

/*
 * Эти правила можно оставить, если существующий JS
 * добавляет класс error к самому полю.
 */
.wholesale-form .error,
.wholesale-form .form__input.error {
    border-color: #c95749;
    background-color: #fffafa;
}

.wholesale-form .error:focus,
.wholesale-form .form__input.error:focus {
    box-shadow: 0 0 0 3px rgba(201, 87, 73, 0.1);
}

@media (max-width: 1050px) {
    .wholesale-request {
        padding: 38px;
    }

    .wholesale-request__inner {
        grid-template-columns: minmax(230px, 0.72fr) minmax(460px, 1.28fr);
        gap: 32px;
    }
}

@media (max-width: 850px) {
    .wholesale-request {
        padding: 30px;
    }

    .wholesale-request__inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .wholesale-request__intro {
        padding: 0;
    }

    .wholesale-request__benefits {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .wholesale-request {
        margin: 25px 0;
        padding: 20px 14px;
        border-radius: 14px;
    }

    .wholesale-request__title {
        font-size: 29px;
    }

    .wholesale-request__description {
        font-size: 15px;
    }

    .wholesale-request__benefits {
        grid-template-columns: 1fr;
        gap: 11px;
        margin-top: 22px;
    }

    .wholesale-request__card {
        padding: 22px 16px;
        border-radius: 13px;
    }

    .wholesale-form__title {
        font-size: 21px;
    }

    .wholesale-form__grid {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .wholesale-form__field--wide {
        grid-column: auto;
    }

    .wholesale-form__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 11px;
    }

    .wholesale-form__submit {
        width: 100%;
    }

    .wholesale-form__note {
        max-width: none;
        text-align: center;
    }
}
.wholesale-contacts {
    display: grid;
    grid-template-columns: minmax(250px, 0.8fr) minmax(420px, 1.2fr);
    gap: 38px;
    align-items: center;
    margin: 28px 0 40px;
    padding: 32px 36px;
    border: 1px solid rgba(41, 49, 35, 0.08);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 38px rgba(38, 48, 31, 0.07);
}

.wholesale-contacts *,
.wholesale-contacts *::before,
.wholesale-contacts *::after {
    box-sizing: border-box;
}

.wholesale-contacts__eyebrow {
    display: block;
    margin-bottom: 8px;
    color: #5d7e35;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.wholesale-contacts__title {
    margin: 0 0 10px;
    color: #252a22;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.25;
}

.wholesale-contacts__text {
    max-width: 500px;
    margin: 0;
    color: #70776b;
    font-size: 14px;
    line-height: 1.65;
}

.wholesale-contacts__items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.wholesale-contacts__item {
    display: flex;
    min-width: 0;
    min-height: 86px;
    align-items: center;
    gap: 13px;
    padding: 16px;
    border: 1px solid #e1e5dc;
    border-radius: 11px;
    background: #f8f9f6;
    color: inherit;
    text-decoration: none;
    transition:
            border-color 0.2s ease,
            background-color 0.2s ease,
            box-shadow 0.2s ease,
            transform 0.2s ease;
}

.wholesale-contacts__item:hover {
    border-color: rgba(93, 126, 53, 0.38);
    background: #fff;
    box-shadow: 0 8px 22px rgba(63, 82, 43, 0.1);
    transform: translateY(-1px);
}

.wholesale-contacts__icon {
    display: flex;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(93, 126, 53, 0.12);
}

.wholesale-contacts__icon svg {
    width: 20px;
    height: 20px;
    fill: #5d7e35;
}

.wholesale-contacts__item-content {
    display: block;
    min-width: 0;
    flex: 1;
}

.wholesale-contacts__label {
    display: block;
    margin-bottom: 4px;
    color: #8b9187;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.3;
    text-transform: uppercase;
}

.wholesale-contacts__value {
    display: block;
    overflow-wrap: anywhere;
    color: #30362d;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.wholesale-contacts__arrow {
    display: flex;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    opacity: 0.45;
    transition:
            opacity 0.2s ease,
            transform 0.2s ease;
}

.wholesale-contacts__arrow svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: #5d7e35;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.wholesale-contacts__item:hover .wholesale-contacts__arrow {
    opacity: 1;
    transform: translateX(2px);
}

@media (max-width: 900px) {
    .wholesale-contacts {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 28px;
    }
}

@media (max-width: 620px) {
    .wholesale-contacts {
        margin: 22px 0 30px;
        padding: 22px 16px;
        border-radius: 13px;
    }

    .wholesale-contacts__title {
        font-size: 21px;
    }

    .wholesale-contacts__items {
        grid-template-columns: 1fr;
    }

    .wholesale-contacts__item {
        min-height: 76px;
        padding: 13px;
    }

    .wholesale-contacts__value {
        font-size: 13px;
    }
}