html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #F9F9F9;
    min-width: auto;
    overflow-x: scroll;
    font-family:'PT Sans', sans-serif;
    margin: auto;
}

/* ── LANDING WRAPPER ── */
.landing {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ── HERO ── */
.hero {
    width: 100%;
    min-width: auto;
    height: 1080px;
    overflow: hidden;
    position: relative;
    display: flex;
}

.hero__bg-svg {
    width: 100%;
    height: 4750px;
    left: 0;
    top: 9px;
    z-index: 0;
    position: absolute;
}

.hero__media {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    object-fit: cover;
    position: absolute;
}

/* ── HEADER ── */
header {
    width: 100%;
    height: 83px;
    top: 27px;
    z-index: 10;
    display: flex;
    align-items: center;
    position: absolute;
}

.logo {
    width: 268px;
    height: 83px;
    color: rgba(238, 238, 238, 1);
    font-size: 64px;
    font-family: 'PT Sans', sans-serif;
    font-weight: 700;
    line-height: 82.8px;
    cursor: pointer;
    border: none;
    outline: none;
    text-decoration: none;
    display: inline-block;
    font-style: italic;
    margin-left: 186px;
}

nav {
    height: 71px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(85, 85, 85, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 60px;
    display: flex;
    align-items: center;
    padding: 0 77px;
    gap: 53px;
}

nav button {
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 1);
    font-size: 24px;
    font-family: 'PT Sans', sans-serif;
    font-weight: 700;
    white-space: nowrap;
    transition: color 0.2s ease-in-out;
    padding: 0;
}

nav button:hover {
    color: rgba(164, 53, 31, 1);
}

/* ── HERO CONTENT ── */
.hero__overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
    pointer-events: none;
}

.hero__content {
    left: 186px;
    top: 209px;
    z-index: 5;
    position: absolute;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    gap: 8px;
    background: rgba(164, 53, 31, 1);
    border-radius: 2px;
}

.badge img {
    width: 16px;
    height: 16px;
}

.badge span {
    color: #fff;
    font-size: 16px;
    font-family: 'JetBrains Mono', monospace;
}

.hero__title {
    width: 713px;
    color: rgba(238, 238, 238, 1);
    font-size: 82px;
    font-family: 'PT Sans', sans-serif;
    font-weight: 700;
    line-height: 75px;
    margin-top: 25px;
}

.hero__subtitle {
    width: 845px;
    color: rgba(204, 204, 204, 1);
    font-size: 40px;
    font-family: 'PT Sans', sans-serif;
    font-weight: 400;
    line-height: 50px;
    margin-top: 26px;
}

.hero__subtitle_mobile {
    display: none;
}

.hero__actions {
    display: flex;
    gap: 41px;
    margin-top: 83px;
}

.hero__btn {
    height: 76px;
    background: rgba(238, 238, 238, 1);
    border-radius: 20px;
    border: none;
    outline: none;
    cursor: pointer;
    color: rgba(34, 34, 34, 1);
    font-size: 32px;
    font-family: 'PT Sans', sans-serif;
    font-weight: 700;
    transition: all 0.2s ease-in-out;
    padding: 0 28px;
}

.hero__btn:hover {
    background: #ddd;
    transform: scale(1.02);
}

/* ── BENEFITS BAR ── */
.benefits {
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1400px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    height: 145px;
    top: 867px;
    z-index: 5;
    position: absolute;
}

.benefit-card {
    height: 145px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(85, 85, 85, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.benefit-card__label {
    color: rgba(204, 204, 204, 1);
    font-size: 36px;
    font-family: 'PT Sans', sans-serif;
}

.benefit-card__value {
    color: #fff;
    font-size: 52px;
    font-family: 'PT Sans', sans-serif;
    font-weight: 700;
}

/* ── CATALOG SECTION ── */
.catalog {
    width: 1201px;
    z-index: 5;
}

/* since hero is 1080px absolute, catalog flows after */
.section-catalog {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding-top: 41px;
    z-index: 5;
}

.eyebrow {
    color: rgba(164, 53, 31, 1);
    font-size: 16px;
    font-family: 'Inria Sans', sans-serif;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    display: block;
}

.section-title {
    color: rgba(34, 34, 34, 1);
    font-size: 36px;
    font-family: 'PT Sans', sans-serif;
    font-weight: 700;
    margin: 11px 0 59px 0;
}

.products-grid {
    display: flex;
    gap: 75px;
    justify-content: space-between;
}

.product-card {
    width: 350px;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.product-card img.product-img {
    width: 350px;
    height: 435px;
    object-fit: cover;
    border: 1px solid #ddd;
    display: block;
}

.product-overlay {
    bottom: 0;
    left: 0;
    width: 86%;
    height: 113px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(221, 221, 221, 1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 10px;
    padding: 6px 24px 0 24px;
    position: absolute;
}

.product-overlay__name {
    color: #222;
    font-size: 20px;
    font-family: 'Inter', sans-serif;
    line-height: 24px;
    display: block;
}

.product-overlay__meta {
    color: rgba(119, 119, 119, 1);
    font-size: 15px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    line-height: 18.2px;
    display: block;
    margin-top: 10px;
    white-space: pre-line;
}

.catalog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    width: auto;
}

.catalog-footer button {
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    color: #000;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    text-decoration: underline;
    padding: 0;
}

.catalog-footer span {
    color: #000;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
}

/* ── ABOUT ── */
.about {
    width: 100vw;
    min-width: auto;
    height: 445px;
    background: rgba(243, 243, 243, 1);
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

section {
    width: 100vw;
}

.section__content {
    width: 60%;
    display: flex;
    justify-content: space-between;
}

.section__content.catalog {
    flex-direction: column;
}

.about__img {
    width: 45%;
    height: 335px;
    border-radius: 5px;
    object-fit: cover;
    left: 360px;
    top: 45px;
    filter: grayscale(100%);
}

.about__text {
    width:45%;
}

.about__text h3 {
    color: #222;
    font-size: 32px;
    font-family: 'PT Sans', sans-serif;
    font-weight: 700;
    line-height: 35px;
}

.about__text p {
    color: #222;
    font-size: 16px;
    font-family: 'PT Sans', sans-serif;
    line-height: 20.7px;
    margin-top: 6px;
}

.about__materials-label {
    font-size: 20px;
    font-family: 'Inter', sans-serif;
    color: #222;
    margin-top: 19px;
    display: block;
}

.about__materials-value {
    font-size: 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #555;
    display: block;
}

.about__stats {
    display: flex;
    gap: 14px;
    margin-top: 12px;
}

.about__stat {
    text-align: center;
    width: 122px;
}

.about__stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    display: block;
}

.about__stat-label {
    font-size: 20px;
    font-weight: 300;
    color: #222;
    display: block;
}

/* ── WHOLESALE ── */
.wholesale {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #242424;
    padding-bottom: 80px;;
}

.section__content.wholesale {
    flex-direction: column;
}

.wholesale h2 {
    text-align: center;
    color: #EEE;
    font-size: 48px;
    font-family: 'PT Sans', sans-serif;
    font-weight: 700;
}

.wholesale__cards {
    display: flex;
    gap: 24px;
}

.wholesale__card {
    width: 262px;
    height: 384px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wholesale__card img {
    width: 38px;
    height: 38px;
}

.wholesale__card-title {
    color: #FFF;
    font-size: 24px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    white-space: pre-line;
    min-height: 62px;
    padding-top: 8px;
    display: block;
}

.wholesale__card-desc {
    color: #E2E2E2;
    font-size: 16px;
    line-height: 24px;
    opacity: 0.8;
    white-space: pre-line;
    display: block;
}

/* ── CUSTOM ORDERS ── */
.custom {
    display: flex;
    padding: 25px 0 0 0;
    justify-content: space-around;
}

.section__content.custom {
    flex-direction: column;
}

.custom h2 {
    color: #222;
    font-size: 48px;
    font-family: 'PT Sans', sans-serif;
    font-weight: 700;
}

.custom__subtitle {
    color: #555;
    font-size: 24px;
    font-family: 'PT Sans', sans-serif;
    font-weight: 700;
    margin-top: 12px;
    width: 522px;
}

.custom__cols {
    display: flex;
    gap: 106px;
    margin-top: 59px;
}

.custom__col {
    width: 50%;
    color: #333;
    font-size: 20px;
    line-height: 25.9px;
    font-family: 'Inter', sans-serif;
}

/* ── LEGAL ── */
.legal {
    width: 100vw;
    min-width: auto;
    height: 410px;
    background: #F3F3F3;
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.legal__card {
    width: 1574px;
    height: 294px;
    background: #FFF;
    border-radius: 10px;
    top: 61px;
    display: flex;
    align-items: center;
}

.legal__card img {
    width: 157px;
    height: 222px;
    border-radius: 15px;
    margin: 36px 0 0 174px;
    border: 1px solid #DDD;
    object-fit: cover;
    align-self: flex-start;
}

.legal__text {
    padding: 34px 0 65px 37px;
    max-width: 65%;
}

.legal__text h2 {
    color: #222;
    font-size: 48px;
    font-family: 'PT Sans', sans-serif;
    font-weight: 700;
}

.legal__text p {
    color: #333;
    font-size: 20px;
    line-height: 25.9px;
    margin-top: 15px;
    font-family: 'Inter', sans-serif;
}

/* ── CONTACTS ── */
.contacts {
    width: 1574px;
    padding: 60px 0 80px 0;
}

.contacts h2 {
    color: #222;
    font-size: 48px;
    font-family: 'PT Sans', sans-serif;
    font-weight: 700;
}

.contacts__inner {
    display: flex;
    gap: 213px;
    margin-top: 27px;
    align-items: flex-start;
}

.contacts__list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.contacts__item {
    display: flex;
    align-items: center;
    gap: 9px;
}

.contacts__item img {
    width: 39px;
    height: 39px;
}

.contacts__item span,
.contacts__item a {
    font-size: 24px;
    font-weight: 600;
    color: #555;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}

.contacts__map {
    width: 800px;
    height: 519px;
    border-radius: 20px;
    object-fit: cover;
}

/* ── FOOTER ── */
footer {
    width: 100vw;
    min-width: auto;
    height: 129px;
    background: rgba(34, 34, 34, 1);
    display: flex;
    flex-direction: column;
    /* padding: 14px 186px; */
    justify-content: space-around;
    align-items: center;
}

.section__content.footer {
    flex-direction: column;
}

.footer__brand {
    color: rgba(238, 238, 238, 1);
    font-size: 24px;
    font-weight: 700;
    font-family: 'PT Sans', sans-serif;
}

.footer__copy {
    color: rgba(170, 170, 170, 1);
    font-size: 13px;
    font-weight: 300;
    font-family: 'Inter', sans-serif;
    margin-top: 48px;
}

/* ============================================
   АДАПТИВНАЯ ВЕРСИЯ (Mobile First)
   ============================================ */

/* Базовые настройки для мобильных */
@media (max-width: 768px) {

    /* Общие сбросы */
    body {
        overflow-x: hidden;
    }

    .about_button,
    .individual_order_button {
        display: none;
    }

    /* ===== HERO СЕКЦИЯ ===== */
    .hero {
        min-height: 100vh;
        width: 100%;
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    }

    .hero__overlay {
        background: rgba(0, 0, 0, 0.6);
    }

    .hero__media,
    .hero__bg-svg {
        opacity: 0.5;
    }

    /* Хедер */
    header {
        left: auto;
        top: 0;
        width: 90%;
        height: auto;
        display: flex;
        align-items: center;
        margin-top: 20px;
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .logo {
        font-size: 32px;
        margin-right: 13px;
    }

    nav {
        width: auto;
        height: auto;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 40px;
        backdrop-filter: blur(10px);
        margin: 0;
        padding: 10px 20px;
        gap: 20px;
    }

    nav button {
        font-size: 14px;
        white-space: nowrap;
    }

    /* Контент героя */
    .hero__content {
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        text-align: center;
    }

    .badge {
        display: none;
        margin-bottom: 20px;
    }

    .hero__title {
        width: 85%;
        font-size: 48px;
        line-height: 44px;
        margin-top: 20px;
        text-align: left;
        padding-left: 17px;
        padding-right: 17px;
    }

    .hero__subtitle {
        display: none;
    }

    .hero__subtitle_mobile {
        display: block;
        width: 100%;
        line-height: 28px;
        margin-top: 16px;
        padding: 0 20px;
        text-align: left;
        font-size: 24px;
    }

    .hero__actions {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-top: 32px;
        padding: 0 20px;
    }

    .hero__btn {
        height: 52px;
        font-size: 18px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    /* Преимущества */
    .benefits {
        bottom: auto;
        left: auto;
        right: auto;
        transform: none;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 20px;
        margin-top: 20px;
    }

    .benefit-card {
        width: 100%;
        height: auto;
        padding: 16px;
        text-align: center;
    }

    .benefit-card__label {
        font-size: 14px;
    }

    .benefit-card__value {
        font-size: 20px;
    }

    /* ===== КАТАЛОГ ===== */
    .section-catalog {
        display: flex;
        width: 90%;
        flex-direction: column;
        padding-top: 40px !important;
        padding-bottom: 40px !important;
        padding-left: 0;
    }

    .eyebrow {
        font-size: 12px;
        text-align: center;
        display: block;
    }

    .section-title {
        font-size: 28px;
        text-align: center;
        margin: 10px 0 30px 0;
    }

    .products-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .product-card {
        width: 100%;
        max-width: 320px;
    }

    .product-card img.product-img {
        width: 100%;
    }

    .product-img {
        width: 100%;
        height: auto;
    }

    .product-overlay {
        width: 100%;
        bottom: auto;
        margin-top: -5px;
        padding: 0;
        top: -120px;
        padding-bottom: 10px;
    }

    .catalog-footer {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        margin-top: 30px;
    }

    /* ===== О НАС ===== */
    .about {
        display: flex;
        flex-direction: column;
        height: auto;
        padding: 40px 0;
    }

    .about__img {
        left: auto;
        top: auto;
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .about__text {
        left: auto;
        top: auto;
        width: 100%;
        padding: 0 16px;
    }

    .about__text h3 {
        font-size: 24px;
        line-height: 32px;
        padding: 0 15px;
    }

    .about__text p, span {
        font-size: 20px;
        line-height: 20px;
        padding: 0 15px;
    }

    .about__text span {
        line-height: 1.2;
    }

    .about__stats {
        margin-top: 30px;
        gap: 16px;
        align-items: center;
        justify-content: space-around;
    }

    .about__stat {
        width: 40%;
    }

    /* ===== ОПТОВЫЕ ПРОДАЖИ ===== */
    .wholesale {
        height: auto;
        padding: 40px 0;
    }

    .wholesale h2 {
        left: auto;
        top: auto;
        width: 100%;
        font-size: 28px;
        text-align: center;
        margin-bottom: 30px;
    }

    .wholesale__cards {
        left: auto;
        top: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 0 16px;
    }

    .wholesale__card {
        width: 87%;
        height: auto;
        padding: 24px;
        text-align: center;
    }

    .wholesale__card img {
        margin: 0 auto 16px;
    }

    /* ===== ИНДИВИДУАЛЬНЫЙ ЗАКАЗ ===== */
    .custom {
        padding: 40px 0;
        left: auto;
        width: 90%;
    }

    .custom h2 {
        font-size: 28px;
        text-align: center;
    }

    .custom__subtitle {
        font-size: 18px;
        text-align: center;
        margin-top: 16px;
        width: 100%;
    }

    .custom__cols {
        flex-direction: column;
        gap: 24px;
        margin-top: 32px;
        padding: 0 15px;
    }

    .custom__col {
        width: 100%;
        font-size: 16px;
        line-height: 24px;
        text-align: center;
    }

    /* ===== ЮРИДИЧЕСКАЯ ИНФОРМАЦИЯ ===== */
    .legal {
        height: auto;
        padding: 40px 0;
        margin-top: 0;
        display: flex;
    }

    .legal__card {
        left: auto;
        top: auto;
        width: 100%;
        height: auto;
        flex-direction: column;
        text-align: center;
        padding: 24px;
        display: flex;
    }

    .legal__card img {
        margin: 0 auto 20px;
        width: 100px;
        height: auto;
    }

    .legal__text {
        padding: 0;
        text-align: center;
    }

    .legal__text h2 {
        font-size: 28px;
    }

    .legal__text p {
        font-size: 16px;
        line-height: 24px;
    }

    /* ===== КОНТАКТЫ ===== */
    .contacts {
        padding: 40px 0;
        display: flex;
        flex-direction: column;
        left: auto;
        width: 100%;
    }

    .contacts h2 {
        font-size: 28px;
        text-align: center;
    }

    .contacts__inner {
        flex-direction: column;
        gap: 32px;
        margin-top: 24px;
    }

    .contacts__list {
        align-items: center;
        width: 100%;
    }

    .contacts__item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .contacts__item span, .contacts__item a {
        font-size: 19px;
    }

    .contacts__map {
        width: 100%;
        height: auto;
    }

    /* ===== ФУТЕР ===== */
    footer {
        width: 100%;
        height: auto;
        padding: 24px 16px;
        text-align: center;
    }

    .footer__brand {
        font-size: 20px;
    }

    .footer__copy {
        margin-top: 16px;
    }
}

/* ===== ПЛАНШЕТЫ (768px - 1024px) ===== */
@media (min-width: 769px) and (max-width: 1024px) {
    body {
        overflow-x: hidden;
    }

    header {
        left: 0;
        flex-direction: column;
        width: 100%;
        height: 270px;
    }

    nav {
        width: 100%;
        margin-left: 0;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        display: flex;
        flex-direction: column;
        height: 270px;
        border-radius: 0;
        padding: 14px 0;
    }

    .hero__content {
        left: 0;
        padding: 0 35px;
        top: 370px;
    }

    .hero__actions {
        justify-content: space-between;
        padding: 0 80px;
    }

    .hero__title {
        width: 100%;
        font-size: 64px;
    }

    .benefits {
        width: 90%;
    }

    .benefit-card {
        padding: 0 10px;
    }

    .benefit-card__label, .benefit-card__value {
        font-size: 32px;
        text-align: center;
    }

    .products-grid {
        gap: 30px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .wholesale__cards {
        flex-wrap: wrap;
        justify-content: center;
    }

    .wholesale__card {
        width: 280px;
    }

    .about {
        flex-direction: column;
        height: auto;
    }

    .about__img {
        left: 0;
    }

    .about__text {
        left: 0;
        top: 40px;
    }

    .contacts {
        display: flex;
        flex-direction: column;
        left: auto;
        width: 100%;
    }

    footer {
        padding: 0 15px;
    }
}
