/* Wholesale page (Оптовое сотрудничество) */

/* Intro */
.wholesale-intro {
    padding: 80px 0 40px;
}
.wholesale-intro__title {
    font-size: 48px;
    line-height: 53px;
    font-weight: 700;
    margin: 0 0 32px;
}
.wholesale-intro__text p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    margin: 0 0 16px;
    max-width: 860px;
}

/* Blocks */
.wholesale-blocks {
    padding: 40px 0;
}
.wholesale-blocks__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}
.wholesale-block__title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    margin: 0 0 20px;
}
.wholesale-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.wholesale-list li {
    position: relative;
    padding: 12px 0 12px 28px;
    font-size: 15px;
    line-height: 22px;
    border-bottom: 1px solid #eee;
}
.wholesale-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 19px;
    width: 8px;
    height: 8px;
    background: #151515;
    border-radius: 50%;
}

/* CTA */
.wholesale-cta {
    padding: 60px 0 40px;
    text-align: center;
}
.wholesale-cta__text {
    font-size: 16px;
    line-height: 26px;
    margin: 0 auto 16px;
    max-width: 720px;
}
.wholesale-cta__slogan {
    font-size: 22px;
    line-height: 30px;
    font-weight: 700;
    margin: 0 0 28px;
}
.wholesale-cta__btn {
    display: inline-block;
    padding: 14px 36px;
    background: #151515;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: opacity .2s;
}
.wholesale-cta__btn:hover {
    opacity: .85;
}

/* Form */
.wholesale-form-section {
    padding: 60px 0 100px;
}
.wholesale-form-section__title {
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 32px;
}
.wholesale-form {
    max-width: 560px;
    margin: 0 auto;
}
.wholesale-form .wpcf7-form p {
    margin: 0 0 16px;
}
.wholesale-form label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #151515;
}
.wholesale-form input[type="text"],
.wholesale-form input[type="tel"],
.wholesale-form input[type="email"],
.wholesale-form textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    font-family: 'Circe', sans-serif;
    color: #151515;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    outline: none;
    transition: border-color .2s;
    -webkit-appearance: none;
}
.wholesale-form input:focus,
.wholesale-form textarea:focus {
    border-color: #151515;
}
.wholesale-form textarea {
    min-height: 110px;
    resize: vertical;
}
.wholesale-form .wpcf7-submit {
    width: 100%;
    padding: 16px;
    background: #151515;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Circe', sans-serif;
    cursor: pointer;
    transition: opacity .2s;
}
.wholesale-form .wpcf7-submit:hover {
    opacity: .85;
}
.wholesale-form .wpcf7-not-valid-tip {
    color: #d63638;
    font-size: 13px;
    margin-top: 4px;
}
.wholesale-form .wpcf7-response-output {
    margin: 16px 0 0;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
}

/* Mobile */
@media (max-width: 768px) {
    .wholesale-intro {
        padding: 48px 0 24px;
    }
    .wholesale-intro__title {
        font-size: 30px;
        line-height: 36px;
        margin-bottom: 20px;
    }
    .wholesale-intro__text p {
        font-size: 15px;
        line-height: 24px;
    }
    .wholesale-blocks__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .wholesale-block__title {
        font-size: 20px;
        line-height: 28px;
    }
    .wholesale-cta {
        padding: 40px 0 24px;
    }
    .wholesale-cta__slogan {
        font-size: 18px;
        line-height: 26px;
    }
    .wholesale-form-section {
        padding: 40px 0 64px;
    }
    .wholesale-form-section__title {
        font-size: 24px;
        line-height: 32px;
    }
}
