body {
    font-family: "Roboto Condensed", sans-serif;
    background: #F2F2F2;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mb {
    margin-bottom: 100px;
}

@media screen and (max-width: 1025px) {
    .mb {
        margin-bottom: 80px;
    }
}

@media screen and (max-width: 761px) {
    .mb {
        margin-bottom: 60px;
    }
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-decoration: none;
}

.container {
    width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

@media screen and (max-width: 1441px) {
    .container {
        width: 1300px;
        padding: 0 20px;
    }
}

@media screen and (max-width: 1367px) {
    .container {
        width: 1200px;
    }
}

@media screen and (max-width: 1025px) {
    .container {
        width: 900px;
    }
}

@media screen and (max-width: 761px) {
    .container {
        width: 100%;
        padding: 0 20px;
    }
}

/* HEADER */

.header {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    transition: top 0.3s ease;
}

.header--scrolled {
    top: 20px;
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    background: #E2E3E5;
    backdrop-filter: blur(2px);
    padding: 11px 20px;
    gap: 40px;
}

.header__top {
    display: contents;
}

.header__logo {
    order: 1;
}

.header__nav {
    order: 2;
}

.header__logo2 {
    width: 102px;
    height: auto;
    order: 3;
}

.header__burger {
    order: 4;
}

.header__nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.header__nav__link {
    color: #1A1A1A;
    font-family: "Roboto Condensed";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.48px;
    transition: opacity 0.3s ease-in-out;
}

.header__nav__link:hover {
    opacity: 0.4;
}

@media (max-width: 1281px) {

    .header__container {
        gap: 24px;
        padding: 10px 16px;
    }

    .header__nav-list {
        gap: 24px;
    }
}

@media (max-width: 1025px) {
    .header__logo2 {
        width: 84px;
    }

    .header__nav__link {
        font-size: 14px;
    }
}

.header__burger {
    display: none;
    align-items: center;
    justify-content: center;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    width: 16px;
    height: 16px;
}

.header__close-icon {
    display: none;
}

@media (max-width: 761px) {
    .header {
        top: 16px;
        left: 16px;
        right: 16px;
        width: auto;
        transform: none;
        transition: top 0.3s ease, bottom 0.3s ease;
    }

    .header--scrolled {
        top: 16px;
    }

    .header__container {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        background: none;
        border-radius: 0;
        backdrop-filter: none;
        padding: 0;
        gap: 12px;
        height: 100%;
    }

    .header__top {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 18px;
        background: #E2E3E5;
        border-radius: 10px;
        backdrop-filter: blur(2px);
        padding: 10px 16px;
        flex-shrink: 0;
    }

    .header__burger {
        margin-left: auto;
    }

    .header__logo img {
        width: 76px;
    }

    .header__logo2 {
        width: 77px;
    }

    .header__burger {
        display: flex;
    }

    .header__nav {
        display: none;
        flex: 1;
        min-height: 0;
        background: #fff;
        border-radius: 20px;
        padding: 20px 20px 24px 20px;
        overflow-y: auto;
    }

    .header--open {
        bottom: 16px;
    }

    .header--open .header__nav {
        display: block;
    }

    .header--open .header__burger-icon {
        display: none;
    }

    .header--open .header__close-icon {
        display: block;
    }

    .header__nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .header__nav-list-item {
        width: 100%;
    }

    .header__nav__link {
        display: block;
        font-size: 18px;
    }
}

/* HEADER */

/* HERO */

.hero {
    background-color: #fff;
    padding: 134px 0 62px 0;
    margin: 20px 20px 0 20px;
    border-radius: 20px;
}

.hero__img {
    width: 100%;
    max-width: 1088px;
    height: auto;
    display: block;
}

.black__btn {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 12px 20px;
    border-radius: 5px;
    border: 1px solid #1F1F1F;
    background: #1F1F1F;
    width: fit-content;
    color: #FFF;
    font-family: "Roboto Condensed";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    /* 21.6px */
    text-transform: uppercase;
}

@media (max-width: 761px) {
    .black__btn {
        font-size: 14px;
    }
}

.black__btn-fill {
    position: absolute;
    inset: 0;
    background: #FFF;
    transform: scaleX(0);
    transform-origin: left center;
    z-index: 0;
    pointer-events: none;
}

.black__btn-label {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.black__btn svg path {
    stroke: #FFF;
}

.hero__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.hero__title {
    margin-bottom: 24px;
    color: #1F1F1F;
    text-align: center;
    font-family: "Roboto Condensed";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 40px */
    text-transform: uppercase;
}

@media screen and (max-width: 1367px) {
    .hero__img {
        max-width: 900px;
    }
}

@media (max-width: 1281px) {
    .hero {
        padding: 100px 0 48px 0;
    }
}

@media (max-width: 1025px) {
    .hero {
        padding: 80px 0 40px 0;
    }

    .hero__title {
        font-size: 32px;
    }

    .hero__img {
        max-width: 700px;
    }
}

@media (max-width: 761px) {
    .hero {
        padding: 160px 0 110px 0;
        margin: 12px 12px 0 12px;
        border-radius: 16px;
        margin-bottom: 30px;
    }

    .hero__container {
        align-items: flex-start;
        gap: 20px;
    }

    .hero__title {
        text-align: left;
        font-size: 24px;
        margin-bottom: 0;
    }
}

@media (min-width: 1281px) and (max-width: 1441px) and (max-height: 900px) {
    .hero {
        padding: 70px 0 26px 0;
        margin-top: 10px;
    }

    .hero__title {
        font-size: 28px;
        margin-bottom: 14px;
    }
}

/* HERO */

/* NOTHING */

.nothing__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.nothing {
    padding: 50px 0 0 0;
}

.nothing__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;

}

.title-h2 {
    color: #1F1F1F;
    font-family: "Roboto Condensed";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    /* 44px */
    text-transform: uppercase;
}

@media screen and (max-width: 1367px) {
    .title-h2 {
        font-size: 36px;
    }
}

.subtitle {
    color: #1f1f1f;
    font-family: "Roboto Condensed";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    /* 21.6px */
}

@media (max-width: 1281px) {
    .title-h2 {
        font-size: 34px;
    }
}

@media (max-width: 1025px) {
    .title-h2 {
        font-size: 26px;
    }

    .subtitle {
        font-size: 16px;
    }

    .nothing__container {
        gap: 24px;
    }
}

@media (max-width: 761px) {
    .nothing {
        padding: 0;
    }

    .nothing__container {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .nothing .subtitle br {
        display: none;
    }

    .nothing .title-h2 {
        max-width: 60%;
    }

    .nothing__left {
        gap: 12px;
    }

    .title-h2 {
        font-size: 20px;
    }

    .subtitle {
        font-size: 14px;
    }
}

/* NOTHING */

/* COLORS */

.colors__heading {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.colors__container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.colors__list {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.colors {
    margin-right: 20px;
    margin-left: 20px;
}

.colors__img {
    display: block;
    width: 100%;
    height: auto;
}

.colors__grid {
    display: none;
}

@media (max-width: 761px) {


    .colors__container {
        gap: 16px;
    }

    .colors__heading {
        gap: 8px;
    }

    .colors .colors__list {
        display: none;
    }

    .colors__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 20px;
    }

    .colors__grid img {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

    .colors {
        margin-right: 0;
        margin-left: 0;
    }
}

/* COLORS */

/* GALLERY */

.gallery__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-2.gallery {
    padding: 0;
}

.gallery__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery__container {
    display: flex;
    flex-direction: column;
    gap: 190px;
}

.gallery {
    padding: 70px 0 0px 0;
}

.gallery__photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gallery__photos img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 20px;
}

.gallery__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px
}

.gallery__text {
    color: #1f1f1f;
    font-family: "Roboto Condensed";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    /* 21.6px */
    max-width: 470px;
}

@media screen and (max-width: 1367px) {
    .gallery__photos img {
        max-height: 360px;
    }
}

@media screen and (max-width: 1025px) {
    .gallery__photos img {
        max-height: 290px;
    }
}

@media (max-width: 761px) {
    .gallery {
        padding: 0;
    }

    .gallery:not(.gallery-2) .gallery__photos {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gallery__photos img {
        max-height: none;
        border-radius: 10px;
    }

    .gallery-2 .gallery__photos {
        gap: 10px;
    }
}

/* GALLERY */

.gallery-swiper__slider {
    width: 100%;
    position: relative;
}

.gallery-swiper {
    position: relative;
}

.gallery-swiper__slider .swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
}

.gallery-swiper__container {
    position: absolute;
    min-height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: none;
}

.gallery-swiper__prev {
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: auto;
}

.gallery-swiper__next {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    pointer-events: auto;
}

.gallery-swiper__next,
.gallery-swiper__prev {
    width: 50px;
    height: 50px;
    fill: rgba(191, 191, 191, 0.20);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    border-radius: 5px;
    cursor: pointer;
    justify-content: center;
}

.system__heading {
    display: flex;
    align-items: center;
    z-index: 10;
    flex-direction: column;
    gap: 20px;
}

.system__wrapper {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 60px 0;
    background: #FFF;
    border-radius: 20px;
}

.system__heading * {
    text-align: center;
}

.system__container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.system__img {
    width: 636px;
    height: auto;
}

.line__wrapper {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0;
}

.system__item.first .line__wrapper {
    right: -310px;
    top: 50%;
    transform: translateY(-50%);
}

.circle {
    background-color: #151515;
    border-radius: 50%;
    width: 8px;
    height: 8px;
}

.line {
    height: 2px;
    background-color: #151515;
}

.system__item.first .line {
    width: 230px;

}

.circle__wrapper {
    display: flex;
    flex-direction: column;
    border: 1px solid #151515;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 16px;
}

.system__content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.system__item {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1f1f1f;
    font-family: "Roboto Condensed";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    /* 19.8px */
}

.system__item.first {
    top: 90px;
    left: 0;
    max-width: 217px;
}

.system__item.second {
    left: 173px;
    bottom: 97px;
}

.system__item.second .line {
    width: 180px;
}

.system__item.second .line__wrapper {
    right: -245px;
    top: 50%;
    transform: translateY(-50%);
}

.system__item.third {
    right: 70px;
    top: 250px;
}

.system__item.third .line {
    width: 164px;
}

.system__item.third .line__wrapper {
    left: -215px;
    top: 50%;
    transform: translateY(-50%);
}

.system__item.fourth {
    max-width: 254px;
    bottom: 115px;
    right: 0;
}

.system__item.fourth .line__wrapper {
    left: -270px;
    top: 50%;
    transform: translateY(-50%);
}

.system__item.fourth .line {
    width: 219px;
}

.system__item.fifth {
    max-width: 335px;
    left: 0;
    bottom: 0px;
}

.system__item.fifth .line__wrapper {
    right: -233px;
    top: 50%;
    transform: translateY(-50%);
}

.system__item.fifth .line {
    width: 187px;
}

.system__item img {
    width: 64px;
    height: 64px;
}

.system__item.fifth {
    max-width: 335px;
    left: 0;
    bottom: 0px;
}

/* The whole diagram (image + absolutely-positioned callouts/lines) is designed
   at a fixed 1400px reference width, so it's scaled down as one unit to keep
   every dot/line locked to its spot on the image instead of drifting. */

@media (max-width: 1441px) {
    .system__wrapper {
        padding: 48px 0;
    }

    .system__item.first .line {
        width: 200px;
    }

    .system__item.third .line__wrapper {
        left: -165px;
    }

    .system__item.third .line {
        width: 110px;
    }

    .system__item.first .line__wrapper {
        right: -264px;
    }

    .system__item.fourth .line__wrapper {
        left: -210px;
    }

    .system__item.fourth .line {
        width: 153px;
    }

    .system__item.second .line__wrapper {
        right: -190px;
    }

    .system__item.second .line {
        width: 130px;
    }

    .system__item.fifth .line__wrapper {
        right: -155px;
    }

    .system__item.fifth .line {
        width: 128px;
    }

    .system__item.second {
        bottom: 105px;
    }

}

@media screen and (max-width: 1367px) {

    .system__img {
        width: 560px;
    }

    .system__item.first {
        top: 80px;
    }

    .system__item.first .line__wrapper {
        right: -240px;
    }

    .system__item.first .line {
        width: 160px;
    }

    .system__item.fourth .line__wrapper {
        left: -190px;
    }

    .system__item.fourth .line {
        width: 140px;
    }

    .system__item.second {
        left: 148px;
    }

    .system__item.fifth {
        max-width: 295px;
    }

    .system__item.third {
        right: 50px;
        top: 215px;
    }

    .system__item.fourth {
        max-width: 240px;
        bottom: 105px;
    }
}


@media (max-width: 1025px) {
    .system__wrapper {
        padding: 40px 0;
    }


    .system__img {
        width: 430px;
    }

    .system__item.first .line__wrapper {
        right: -156px;
    }

    .system__item.second {
        bottom: 75px;
    }

    .system__item.fifth {
        max-width: 215px;
    }

    .system__item.third {
        top: 170px;
        right: 0;
    }

    .system__item.third .line__wrapper {
        left: -125px;
    }

    .system__item.fourth {
        bottom: 85px;
        max-width: 130px;
    }

    .system__item.fourth .line__wrapper {
        left: -170px;
    }

    .system__item.fourth .line {
        width: 120px;
    }

    .system__item.third .line {
        width: 90px;
    }

    .system__item.fifth .line {
        width: 70px;
    }

    .system__item.fifth .line__wrapper {
        right: -115px;
    }

    .system__item.second {
        left: 30px;
    }

    .circle__wrapper {
        height: 12px;
        width: 12px;
    }

    .circle {
        width: 6px;
        height: 6px;

    }

    .system__item.first .line {
        width: 100px;
    }

    .system__item {
        font-size: 14px;
    }

    .system__item.first {
        top: 55px;
    }
}

@media (max-width: 761px) {
    .system__wrapper {
        width: 100%;
        background: none;
        border-radius: 0;
        padding: 0;
    }

    .system__heading {
        align-items: flex-start;
        gap: 12px;
    }

    .system__heading .subtitle br {
        display: none;
    }

    .system__item.first,
    .system__item.second,
    .system__item.third,
    .system__item.fourth,
    .system__item.fifth {
        max-width: 80%;
    }

    .system__heading * {
        text-align: left;
    }

    .system__container {
        gap: 24px;
    }

    .system__content {
        display: block;
        position: static;
    }

    .system__img {
        display: block;
        width: 100%;
        max-width: 335px;
        margin: 0 auto;
    }

    .system__list {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-top: 24px;
    }

    .system__item {
        position: static;
        max-width: none;
        font-size: 14px;
        gap: 4px;
        align-items: start;
    }

    .system__item::before {
        content: '';
        flex-shrink: 0;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        border: 1px solid #151515;
        background: radial-gradient(circle, #151515 0 3px, transparent 3.5px 100%);
    }

    .system__item .line__wrapper {
        display: none;
    }

    .system__item.first {
        order: 1;
    }

    .system__item.third {
        order: 2;
    }

    .system__item.second {
        order: 3;
    }

    .system__item.fifth {
        order: 4;
    }

    .system__item.fourth {
        order: 5;
    }
}

/* SYSTEM */

/* INCLUDE */

.include {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.include-swiper {
    position: relative;
    width: 100%;
}

.include-swiper__prev,
.include-swiper__next {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background-color: #fff;
}

@media screen and (max-width: 1025px) {

    .include-swiper__prev,
    .include-swiper__next {
        width: 40px;
        height: 40px;
    }

    .include-swiper__prev svg,
    .include-swiper__next svg {
        width: 10px;
        height: 18px;
    }
}

.include-swiper__slider {
    width: 100%;
}

.include-swiper__slider .swiper-slide img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.include-swiper__nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
    z-index: 2;
}

.include-swiper__prev,
.include-swiper__next {
    pointer-events: auto;
    cursor: pointer;
}

.include__text {
    color: #1F1F1F;
    text-align: center;
    font-family: "Roboto Condensed";
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    /* 26.4px */
}

@media (max-width: 1025px) {
    .include {
        gap: 24px;
    }

    .include__text {
        font-size: 18px;
    }
}

@media (max-width: 761px) {
    .include {
        gap: 20px;
    }

    .include-swiper__slider .swiper-slide {
        width: auto;
    }

    .include-swiper__nav {
        position: static;
        transform: none;
        justify-content: center;
        gap: 12px;
        margin-top: 16px;
    }

    .include-swiper__prev,
    .include-swiper__next {
        width: 40px;
        height: 40px;
        background-color: #fff;
    }

    .include__text {
        font-size: 14px;
    }
}


/* INCLUDE */

/* POWER */

.power__container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.power__list {
    display: flex;
    gap: 113px;
    align-items: center;
}

.power__item img {
    width: auto;
    height: auto;
    margin-bottom: 11px;
}

.power__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    position: relative;
}

.power__item::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -56px;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: rgba(0, 0, 0, 0.40);
}

.power__title {
    color: #151515;
    text-align: center;
    font-family: "Roboto Condensed";
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    /* 26.4px */
}

.power__text {
    color: #151515;
    text-align: center;
    font-family: "Roboto Condensed";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    /* 21.6px */
}

@media (max-width: 1441px) {
    .power__list {
        gap: 70px;
    }

    .power__item::after {
        right: -35px;
    }
}

@media (max-width: 1281px) {
    .power__list {
        gap: 40px;
    }

    .power__item::after {
        right: -20px;
    }
}

@media (max-width: 1025px) {
    .power__list {
        gap: 20px;
    }

    .power__item::after {
        right: -10px;
    }

    .power__title {
        font-size: 18px;
    }

    .power__text {
        font-size: 16px;
    }
}

@media (max-width: 761px) {
    .power__container {
        gap: 24px;
    }

    .power__list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        column-gap: 12px;
        row-gap: 24px;
    }


    .power__item img {
        width: 48px;
        height: 48px;
        margin-bottom: 8px;
    }

    .power__item::after {
        display: none;
    }

    .power__title {
        font-size: 14px;
    }

    .power__text {
        font-size: 12px;
    }

    .power__item:nth-child(5) {
        order: 6;
    }

    .power__item:nth-child(6) {
        order: 5;
    }
}

/* POWER */

/* BUNDLE */

.bundle__pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.bundle__text__wrapper {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin: 40px 0 0px 0;
}

.bundle__text {
    color: #1F1F1F;
    text-align: center;
    font-family: "Roboto Condensed";
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    /* 26.4px */
}

.bundle__photos {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

@media (max-width: 1281px) {
    .bundle__text__wrapper {
        margin: 32px 0 0px 0;
    }
}

@media (max-width: 1025px) {
    .bundle__text__wrapper {
        margin: 24px 0 48px 0;
        gap: 20px;
    }

    .bundle__text {
        font-size: 18px;
    }
}

@media (max-width: 761px) {
    .bundle__pair {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .bundle__text__wrapper {
        margin: 20px 0 0 0;
        gap: 16px;
    }

    .bundle__text {
        font-size: 14px;
        text-align: center;
    }

    .bundle img {
        max-height: 182px;
        width: 100%;
        object-fit: cover;
        overflow: hidden;
        border-radius: 10px;
    }
}

/* BUNDLE */

/* KEY */

.key__title {
    color: #151515;
    text-align: center;
    font-family: "Roboto Condensed";
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.key__text {
    color: #1F1F1F;
    text-align: center;
    font-family: "Roboto Condensed";
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.key__container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.key__content {
    display: flex;
    gap: 32px;
    flex-direction: column;
    align-items: center;
}

.key__info1 {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.key__info2 {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.key__info__wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.key__text span {
    color: #1F1F1F;
    text-align: center;
    font-family: "Roboto Condensed";
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

@media (max-width: 1281px) {

    .key__title {
        font-size: 28px;
    }

    .key__text,
    .key__text span {
        font-size: 20px;
    }
}

@media (max-width: 1025px) {

    .key__title {
        font-size: 24px;
    }

    .key__text,
    .key__text span {
        font-size: 18px;
    }

    .key__content {
        gap: 24px;
    }
}

@media (max-width: 761px) {

    .key__container {
        align-items: flex-start;
        gap: 24px;
    }

    .key__content {
        align-items: flex-start;
        gap: 16px;
    }

    .key__info1,
    .key__info2,
    .key__info__wrapper {
        align-items: flex-start;
        gap: 8px;
    }

    .key__title {
        font-size: 18px;
        text-align: left;
    }

    .key__text,
    .key__text span {
        font-size: 14px;
        text-align: left;
    }
}

/* KEY */

/* CABIN */

.cabin__content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cabin__img {
    display: none;
}

.cabin__content .title-h2 {
    margin-bottom: 12px;
}

.cabin__container {
    display: flex;
    gap: 50px;
}

.cabin__wrapper {
    background: #FFF;
    border-radius: 20px;
    padding: 60px 0;
    width: calc(100% - 40px);
    margin: 0 auto;
}

.cabin__img__wrapper {
    flex: 0 1 51.5%;
    min-width: 0;
}

.cabin__img__wrapper img {
    width: 100%;
    max-width: 721px;
    height: auto;
}

.cabin__content {
    flex: 1 1 auto;
    min-width: 0;
}

@media (max-width: 1281px) {
    .cabin__wrapper {
        padding: 40px 0;
    }

    .cabin__container {
        gap: 32px;
    }
}

@media (max-width: 1025px) {
    .cabin__wrapper {
        padding: 32px 0;
    }
}

@media (max-width: 761px) {
    .cabin__wrapper {
        border-radius: 10px;
        margin: 0 20px;
    }

    .cabin__img {
        display: block;
    }

    .cabin__container {
        flex-direction: column;
        gap: 24px;
    }

    .cabin__content .title-h2 {
        margin-bottom: 0;
    }

    .cabin__img__wrapper {
        flex: none;
        display: none;
    }

    .cabin__img__wrapper img {
        width: 130%;
        max-width: 130%;
        margin-left: -15%;
    }

    .cabin__content {
        gap: 12px;
    }

    .cabin__content .subtitle {
        display: flex;
        align-items: flex-start;
        gap: 4px;
        font-size: 14px;
    }

    .cabin__content .subtitle::before {
        content: '';
        flex-shrink: 0;
        margin-top: 3px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        border: 1px solid #151515;
        background: radial-gradient(circle, #151515 0 3px, transparent 3.5px 100%);
    }
}

/* CABIN */

/* DRAW */

.draw__wrapper .title-h2 {
    text-transform: uppercase;
}

.draw__wrapper {
    padding: 60px 24px;
    height: 670px;
    border-radius: 10px;
    background: #FFF;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.draw__wrapper:nth-child(1) {
    flex: 0 1 57.7%;
    min-width: 0;
}

.draw__wrapper:nth-child(2) {
    flex: 0 1 40.7%;
    min-width: 0;
}

.draw__wrapper:nth-child(1) img {
    width: 100%;
    max-width: 709px;
    height: auto;
}

.draw__wrapper:nth-child(2) img {
    width: 100%;
    max-width: 520px;
    height: auto;
}

.draw__container {
    display: flex;
    align-items: center;
    gap: 22px;
}

@media (max-width: 1441px) {
    .draw__wrapper {
        height: stretch;
        height: -webkit-fill-available;
        padding: 40px 24px;
    }
}

@media screen and (max-width: 1367px) {
    .draw__wrapper {
        max-height: 550px;
    }
}

@media (max-width: 1025px) {
    .draw__container {
        gap: 16px;
    }

    .draw__wrapper {
        padding: 32px 20px;
        max-height: 400px;
    }
}

@media (max-width: 761px) {
    .draw__container {
        flex-direction: column;
        gap: 12px;
    }

    .draw__wrapper:nth-child(1),
    .draw__wrapper:nth-child(2) {
        flex: none;
        width: 100%;
    }

    .draw__wrapper {
        max-height: fit-content;
        padding: 24px 16px;
        gap: 18px;
    }

    .draw__wrapper .title-h2 {
        font-size: 18px;
    }

    .draw__wrapper:nth-child(1) img,
    .draw__wrapper:nth-child(2) img {
        max-width: 100%;
    }
}

/* DRAW */

/* FORM */

.form__text {
    color: #1F1F1F;
    text-align: center;
    font-family: "Roboto Condensed";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    /* 24px */
}

.form__heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.form {
    display: flex;
    align-items: center;
    background-color: #fff;
    justify-content: space-between;
    width: calc(100% - 40px);
    border-radius: 20px;
    margin: 0 auto;
    overflow: hidden;
    max-height: 833px;
}

.form__img {
    flex: 0 0 812px;
    max-width: 812px;
    height: stretch;
    height: -webkit-fill-available;
    display: block;
    max-height: 100%;
    object-fit: cover;
}

.form__content {
    max-width: 690px;
    margin-right: calc((100% - 1400px) / 2);
    gap: 8px;
    display: flex;
    flex-direction: column;

}


input,
textarea {
    border-radius: 10px;
    background: #F7F7F7;
    padding: 20px;
    border: 0;
    width: 100%;
}

input::placeholder,
textarea::placeholder {
    color: rgba(191, 191, 191, 0.98);
    font-family: Onest;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    /* 19.2px */
    letter-spacing: 0.32px;
}

.form__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    width: 100%;
    margin-bottom: 46px;
}

.form__status {
    width: 100%;
    text-align: center;
    font-family: "Roboto Condensed";
    font-size: 15px;
    line-height: 130%;
}

.form__status--success {
    color: #1a7a3a;
}

.form__status--error {
    color: #b3261e;
}

.form__mail {
    color: #1F1F1F;
    font-family: "Roboto Condensed";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.form__mail__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.form__mail a {
    color: #1F1F1F;
    font-family: "Roboto Condensed";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.form__social img {
    width: 40px;
    height: 40px
}


@media (max-width: 1441px) {
    .form__img {
        flex: 1 1 45%;
        min-width: 0;
        max-width: 672px;
    }

    .form {
        max-height: 600px;
    }

    .form__content {
        flex: 1 1 55%;
        min-width: 0;
        margin-right: 0;
        padding: 40px 40px 40px 0;
    }
}

@media screen and (max-width: 1367px) {
    .form__content {
        max-width: 570px;
    }
}

@media screen and (max-width: 1281px) {
    .form__img {
        max-width: 600px;
    }
}

@media (max-width: 1025px) {
    .form__content {
        padding-right: 24px;
    }

    .form__text {
        font-size: 18px;
    }

    .form__form {
        margin-bottom: 32px;
    }

    .form__content {
        max-width: 400px;
    }

    .form__img {
        max-width: 520px;
    }

    .form__content {
        gap: 20px;
    }
}

@media (max-width: 761px) {
    .form {
        flex-direction: column;
        align-items: stretch;
        width: calc(100% - 40px);
        max-height: none;
        border-radius: 16px;
    }

    .form__img {
        flex: none;
        width: 100%;
        max-width: none;
        height: auto;
        aspect-ratio: 335 / 318;
    }

    .form__content {
        max-width: none;
        margin-right: 0;
        padding: 24px 16px;
    }

    .form__heading {
        gap: 8px;
    }


    .form__heading .title-h2 {
        font-size: 20px;
    }

    .form__text {
        text-align: center;
        font-size: 14px;
    }

    .form__form {
        margin-bottom: 0;
        align-items: stretch;
    }

    .form__mail a {
        font-size: 14px;
    }


    .form .black__btn {
        width: 100%;
        padding: 13.5px 0;
        display: block;
        justify-content: center;
        align-items: center;
    }

    input::placeholder,
    textarea::placeholder {
        font-size: 14px;
    }

    input,
    textarea {
        padding: 13.5px
    }

    textarea {
        min-height: 100px;
    }

    .form__mail {
        font-size: 14px;
    }

    .form__social {
        display: none;
    }
}

/* FORM */

/* FOOTER */

.footer__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 50px;
}

.footer__nav__list {
    display: flex;
    align-items: center;
    gap: 40px;
}

.footer__nav__item a {
    color: #1A1A1A;
    font-family: "Roboto Condensed";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.48px;
    transition: opacity 0.3s ease-in-out;
}

.footer__nav__item a:hover {
    opacity: 0.4;
}

.footer__text {
    color: #1F1F1F;
    font-family: "Roboto Condensed";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 24px */
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer__text img {
    width: 42px;
    height: auto;
}

.footer {
    padding: 30px 0 20px 0;
}

@media (max-width: 1281px) {
    .footer__container {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 16px;
        column-gap: 40px;
    }
}

@media (max-width: 1025px) {
    .footer__logo {
        gap: 24px;
    }

    .footer__nav__list {
        gap: 20px;
    }
}

@media (max-width: 761px) {
    .footer {
        padding: 24px 0 20px 0;
    }

    .footer__container {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer__logo {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer__nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin: 8px 0;
    }

    .footer__text {
        font-size: 14px;
    }
}

/* FOOTER */

/* LIGHTBOX */

.lightbox[hidden] {
    display: none;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    background: rgba(15, 15, 15, 0.96);
    padding: 24px 0;
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
}

.lightbox__main {
    flex: 1;
    min-height: 0;
    width: 100%;
    padding: 0 80px;
}

.lightbox__main .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.lightbox__main .swiper-slide img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    cursor: pointer;
}

.lightbox__prev {
    left: 20px;
}

.lightbox__next {
    right: 20px;
}

.lightbox__thumbs {
    flex-shrink: 0;
    width: 100%;
    max-width: 900px;
    margin: 20px auto 0 auto;
    padding: 0 20px;
}

.lightbox__thumbs .swiper-slide {
    width: 100px;
    height: 70px;
    opacity: 0.4;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.lightbox__thumbs .swiper-slide-thumb-active {
    opacity: 1;
}

.lightbox__thumbs .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

@media (max-width: 1281px) {
    .lightbox {
        padding: 20px 0;
    }

    .lightbox__main {
        padding: 0 60px;
    }

    .lightbox__thumbs {
        max-width: 700px;
    }
}

@media (max-width: 1025px) {
    .lightbox__close {
        width: 36px;
        height: 36px;
        top: 12px;
        right: 12px;
    }

    .lightbox__main {
        padding: 0 50px;
    }

    .lightbox__nav {
        width: 44px;
        height: 44px;
    }

    .lightbox__prev {
        left: 12px;
    }

    .lightbox__next {
        right: 12px;
    }

    .lightbox__thumbs {
        max-width: 520px;
    }

    .lightbox__thumbs .swiper-slide {
        width: 80px;
        height: 56px;
    }
}

@media (max-width: 761px) {
    .lightbox {
        padding: 16px 0;
    }

    .lightbox__main {
        padding: 0 16px;
    }

    .lightbox__nav {
        width: 40px;
        height: 40px;
    }

    .lightbox__prev {
        left: 8px;
    }

    .lightbox__next {
        right: 8px;
    }

    .lightbox__thumbs {
        max-width: 100%;
        margin-top: 12px;
        padding: 0 12px;
    }

    .lightbox__thumbs .swiper-slide {
        width: 64px;
        height: 48px;
    }
}

/* LIGHTBOX */

/* TEXT PAGES */

.text__container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-top: 180px;
    padding-bottom: 100px;
}

.title {
    color: #1F1F1F;
    font-family: "Roboto Condensed";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    text-transform: uppercase;
}

.text__block {
    display: flex;
    flex-direction: column;
    gap: 50px;
    background: #fff;
    border-radius: 20px;
    padding: 50px;
}

.text__block__wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.text__block__wrapper .title-h3,
.accordion__panel-inner .title-h3 {
    color: #1F1F1F;
    font-family: "Roboto Condensed";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    margin-top: 8px;
}

.text__block__wrapper ul,
.accordion__panel-inner ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-left: 20px;
}

.text__block__wrapper ul li,
.accordion__panel-inner ul li {
    color: #1f1f1f;
    font-family: "Roboto Condensed";
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    list-style-type: disc;
}

@media (max-width: 1281px) {
    .title {
        font-size: 40px;
    }

    .text__block {
        padding: 40px;
        gap: 40px;
    }
}

@media (max-width: 1025px) {
    .text__container {
        padding-top: 140px;
        padding-bottom: 80px;
        gap: 30px;
    }

    .title {
        font-size: 32px;
    }

    .text__block {
        padding: 30px;
        gap: 30px;
    }

    .text__block__wrapper .title-h3,
    .accordion__panel-inner .title-h3 {
        font-size: 18px;
    }

    .text__block__wrapper ul li,
    .accordion__panel-inner ul li {
        font-size: 16px;
    }
}

@media (max-width: 761px) {
    .text__container {
        padding-top: 110px;
        padding-bottom: 60px;
        gap: 24px;
    }

    .title {
        font-size: 24px;
    }

    .text__block {
        padding: 20px;
        border-radius: 16px;
        gap: 24px;
    }
}

/* PREORDER NOTICE */

.preorder-notice {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    background: #E2E3E5;
    border-radius: 20px;
    padding: 50px;
}

.preorder-notice__title {
    color: #1F1F1F;
    font-family: "Roboto Condensed";
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    text-transform: uppercase;
}

.preorder-notice__text {
    color: #1f1f1f;
    font-family: "Roboto Condensed";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    max-width: 760px;
}

.preorder-notice .black__btn {
    margin-top: 8px;
}

@media (max-width: 1281px) {
    .preorder-notice {
        padding: 40px;
    }
}

@media (max-width: 1025px) {
    .preorder-notice {
        padding: 30px;
        gap: 14px;
    }

    .preorder-notice__title {
        font-size: 22px;
    }

    .preorder-notice__text {
        font-size: 16px;
    }
}

@media (max-width: 761px) {
    .preorder-notice {
        padding: 20px;
        border-radius: 16px;
        gap: 12px;
    }

    .preorder-notice__title {
        font-size: 18px;
    }

    .preorder-notice__text {
        font-size: 14px;
    }
}

/* TEXT PAGES */

/* ACCORDION */

.accordion {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.accordion__item {
    border-bottom: 1px solid #E5E5E5;
}

.accordion__item:last-child {
    border-bottom: none;
}

.accordion__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 28px 50px;
    background: none;
    border: 0;
    cursor: pointer;
    text-align: left;
}

.accordion__title {
    color: #1F1F1F;
    font-family: "Roboto Condensed";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    text-transform: uppercase;
}

.accordion__icon {
    position: relative;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.accordion__icon::before,
.accordion__icon::after {
    content: "";
    position: absolute;
    background: #1F1F1F;
    transition: transform 0.3s ease;
}

.accordion__icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.accordion__icon::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

.accordion__item.is-open .accordion__icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.accordion__panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}

.accordion__item.is-open .accordion__panel {
    grid-template-rows: 1fr;
}

.accordion__panel-inner {
    overflow: hidden;
    min-height: 0;
}

.accordion__panel-inner-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 50px 32px 50px;
}

@media (max-width: 1281px) {
    .accordion__header {
        padding: 22px 40px;
    }

    .accordion__title {
        font-size: 20px;
    }

    .accordion__panel-inner-content {
        padding: 0 40px 28px 40px;
    }
}

@media (max-width: 1025px) {
    .accordion__header {
        padding: 20px 30px;
    }

    .accordion__title {
        font-size: 18px;
    }

    .accordion__panel-inner-content {
        padding: 0 30px 24px 30px;
    }
}

@media (max-width: 761px) {
    .accordion__header {
        padding: 16px 20px;
        gap: 12px;
    }

    .accordion__title {
        font-size: 15px;
    }

    .accordion__icon {
        width: 16px;
        height: 16px;
    }

    .accordion__panel-inner-content {
        padding: 0 20px 20px 20px;
    }
}

/* ACCORDION */


/* PREORDER */

.price__sheet {
    gap: 0 !important;
}

.price__letterhead {
    display: flex;
    justify-content: flex-end;
}

.price__letterhead-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    text-align: right;
}

.price__letterhead-meta p {
    font-family: "Roboto Condensed";
    font-size: 14px;
    color: #1F1F1F;
    opacity: 0.7;
}

.price__letterhead-meta p strong {
    opacity: 1;
    font-weight: 700;
}

.price__letterhead-meta a {
    color: #1F1F1F;
}

.price__divider {
    border: none;
    border-top: 1px solid #E5E5E5;
    margin: 20px 0;
}

.price__doc-heading {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 24px;
}

.price__company {
    font-family: "Roboto Condensed";
    font-size: 14px;
    color: #1F1F1F;
    opacity: 0.7;
}

.price__doc-title {
    font-family: "Roboto Condensed";
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1F1F1F;
    line-height: 110%;
}

.price__doc-subtitle {
    font-family: "Roboto Condensed";
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1F1F1F;
    opacity: 0.7;
}

.price__banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    background: #1F1F1F;
    color: #fff;
    border-radius: 8px;
    padding: 18px 26px;
    margin-bottom: 30px;
}

.price__banner-title {
    font-family: "Roboto Condensed";
    font-size: 20px;
    font-weight: 700;
    line-height: 120%;
    text-transform: uppercase;
}

.price__banner-note {
    font-family: "Roboto Condensed";
    font-size: 14px;
    font-weight: 400;
    opacity: 0.75;
}

.price__hero {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.price__hero-photo {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price__hero-photo img {
    border-radius: 10px;
    background: #F2F2F2;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.price__hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
}

.price__hero-swatch {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price__hero-swatch img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: #F2F2F2;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.price__hero-swatch-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    aspect-ratio: 4 / 3;
    border: 1px dashed #C7C7C7;
    border-radius: 8px;
    font-family: "Roboto Condensed";
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1F1F1F;
    opacity: 0.6;
}

.price__swatch-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.price__checkbox {
    flex-shrink: 0;
    width: 15px;
    height: 15px;
    margin-top: 2px;
    border: 1.5px solid #1F1F1F;
    border-radius: 2px;
}

.price__swatch-name {
    font-family: "Roboto Condensed";
    font-size: 15px;
    font-weight: 700;
    color: #1F1F1F;
    display: block;
}

.price__swatch-code {
    font-family: "Roboto Condensed";
    font-size: 13px;
    color: #1F1F1F;
    opacity: 0.65;
    display: block;
}

.price__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
}

.price__column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.price__group-title {
    background: #1F1F1F;
    color: #fff;
    font-family: "Roboto Condensed";
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 6px;
}

.price__list {
    display: flex;
    flex-direction: column;
}

.price__item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #E5E5E5;
}

.price__item:last-child {
    border-bottom: none;
}

.price__item-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.price__item-title-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.price__item-title {
    font-family: "Roboto Condensed";
    font-size: 15px;
    font-weight: 700;
    color: #1F1F1F;
    line-height: 130%;
}

.price__item-desc {
    font-family: "Roboto Condensed";
    font-size: 13px;
    font-weight: 400;
    color: #1F1F1F;
    opacity: 0.65;
    margin-left: 23px;
    line-height: 130%;
}

.price__item-price {
    font-family: "Roboto Condensed";
    font-size: 15px;
    font-weight: 700;
    color: #1F1F1F;
    white-space: nowrap;
    flex-shrink: 0;
}

.price__doc-footer {
    text-align: center;
    font-family: "Roboto Condensed";
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1F1F1F;
    opacity: 0.55;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #E5E5E5;
}

@media (max-width: 1025px) {
    .price__hero {
        grid-template-columns: 1fr;
    }

    .price__columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .price__doc-title {
        font-size: 30px;
    }
}

@media (max-width: 761px) {
    .price__letterhead {
        justify-content: flex-start;
    }

    .price__letterhead-meta {
        align-items: flex-start;
        text-align: left;
    }

    .price__banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 18px;
    }

    .price__banner-title {
        font-size: 17px;
    }

    .price__hero-grid {
        grid-template-columns: 1fr 1fr;
    }

    .price__doc-title {
        font-size: 24px;
    }
}

/* PREORDER */
