body {
    margin: 0 auto;
    max-width: 390px;
    color: #282828;
    font-family: 'Montserrat', sans-serif;
}

.container {
    padding-right: 10px;
    padding-left: 10px;

}

.header__offer {
    margin: 0;
    background: rgb(105, 177, 201);
    background: linear-gradient(90deg, rgba(105, 177, 201, 1) 0%, rgba(96, 129, 195, 1) 50%, rgba(85, 88, 175, 1) 100%);
    padding: 10px;
    padding-bottom: 12px;
    color: white;
    font-weight: 500;
    font-size: 13px;
    text-align: center;
}

.header {
    background: #0B0B0B;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
}

.header__inner a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    text-decoration: none;
}

.header__inner img {
    position: relative;
    margin-left: 2px;
}

.header__inner nav {
    display: flex;
    gap: 40px;
    padding-top: 24px;
    padding-right: 2px;
    padding-bottom: 11px;
}

.hero {
    background: #0B0B0B;
    background-image: url("./images/hero-bg.png");
    background-size: contain;
    background-position-y: 0px;
    padding-top: 39px;
    padding-bottom: 184px;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.hero__title {
    margin-top: 0px;
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 28.5px;
}

.hero__title strong {
    font-weight: 300;
}

.hero__subtitle {
    margin-top: 0px;
    margin-bottom: 21px;
    font-size: 13px;
}

.price {
    display: flex;
    align-items: center;
    gap: 15px;

    backdrop-filter: blur(6px);
    border: 1px solid #7e7e7d;
    border-radius: 30px;
    background: rgb(11, 11, 11);
    background: linear-gradient(180deg, rgba(11, 11, 11, 1) 0%, rgba(11, 11, 11, 0) 100%);

    padding: 5px 10px;
    width: fit-content;
    font-family: Arial, Helvetica, sans-serif;
}

.price__old {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
    font-size: 17px;
    text-decoration: line-through;
}

.price__new {
    font-weight: 600;
    font-size: 35px;
}

.features {
    display: flex;
    gap: 4px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
    background: #0B0B0B;
    padding-bottom: 10px;

}

.features__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;

    border: 1px solid #7e7e7d;
    border-radius: 30px;

    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    padding-top: 10px;
    padding-bottom: 10px;
    width: 121px;
    color: white;
    text-align: center;
}

.features__item p {
    margin-top: 8px;
    margin-bottom: 0px;
    color: white;
    font-size: 11px;
    line-height: 143%;
}

.reviews {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.reviews p {
    margin-top: 24px;
    margin-bottom: 24px;
    color: #0B0B0B;
    font-size: 11px;
}

.slider {
    position: relative;
}

.slider__preview-images {
    display: flex;
    gap: 8px;
}

.slider__main-image {
    transition: 0.3s ease-in-out;
    margin-bottom: 5px;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
}

.slider__preview-image {
    cursor: pointer;
    box-sizing: border-box;
    outline: none;
    border: 1px solid transparent;
    max-width: 118px;
    -webkit-tap-highlight-color: transparent;
}

.slider__preview-image.active {
    transition: 0.3s ease-in-out;
    cursor: default;
    border: 1px solid #DCDCDC;
    border-radius: 30px;
}

.slider-controls {
    display: flex;
    position: absolute;
    top: 154px;
    left: 8px;
    justify-content: space-between;
    width: calc(100% - 16px);
    -webkit-tap-highlight-color: transparent;
}

.slider-controls button {
    cursor: pointer;
    border: none;
    background: none;
}

.purchase {
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.purchase__title {
    margin-bottom: 6px;
    color: #282828;
    font-size: 27.5px;
}

.purchase__subtitle {
    margin-top: 0px;
    color: rgba(40, 40, 40, 0.8);
    font-size: 13px;
}

.purchase .price {
    gap: 10px;
    border: none;
    background: none;
    padding-left: 0px;
}

.purchase .price__old {
    color: rgba(40, 40, 40, 0.8);
}

.purchase .price__new {
    color: #282828;
}

.price__difference {
    border-radius: 40px;
    background: rgb(105, 177, 201);
    background: linear-gradient(114deg, rgba(105, 177, 201, 1) 0%, rgba(96, 129, 195, 1) 50%, rgba(85, 88, 175, 1) 100%);
    padding: 4px 10px;
    color: white;
    font-weight: 700;

    font-size: 18px;
}

.colors {
    display: flex;
    gap: 3px;
}

.colors__title {
    margin-top: 10px;
    margin-bottom: 4px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
}

.color {
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 100%;
    padding: 3px;
}

.colors__bg {
    border-radius: 100%;
    width: 33px;
    height: 33px;
}

.gray .colors__bg {
    background: #ADACB1;
}

.black .colors__bg {
    background: #282828;
}

.pink .colors__bg {
    background: #ECAAA7;
}

.vanilla .colors__bg {
    background: #ECE5DD;
}

.colors .active {
    transition: 0.3s ease-in-out;
    cursor: default;
    border: 1px solid #626262;
}

.purchase__button {
    cursor: pointer;
    margin-top: 12px;
    border-radius: 40px;
    background: #282828;
    padding: 15px;
    width: 100%;
    color: white;
    font-size: 18px;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.sale-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    margin-bottom: 10px;
    padding-left: 10px;
    color: #F65D81;
}

.sale-duration p {
    font-size: 11px;
}

.sale-duration strong {
    padding-left: 42px;
    font-size: 14px;
    letter-spacing: 1.5px;
}

.payment-methods {
    display: flex;
    gap: 5px;
}

.specs {
    margin-bottom: 24px;
    border-radius: 30px;
    background: #F7F7F7;
    padding: 15px;
    padding-bottom: 10px;
    padding-left: 15px;
}

.specs__title {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 13px;
    letter-spacing: -0.4px;
    text-transform: uppercase;
}

.specs h3 {
    margin-top: 10px;
    font-size: 13px;
    letter-spacing: -1px;
}

.specs__subtitle {
    margin-top: 6px;
    color: rgba(40, 40, 40, 0.8);
    font-size: 13px;
}

.separator {
    margin-top: 16px;
    margin-bottom: 17px;
    background: #DCDCDC;
    width: 100%;
    height: 1px;
}

.specs__property {
    display: flex;
    gap: 20px;
    margin-top: 12px;
    margin-bottom: 8px;
}

.specs__property span {
    width: 100%;
    font-size: 13px;
}

.faq {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 50px;
}

.faq-item p {
    visibility: hidden;
    opacity: 0;
    margin: 0px;
    height: 0px;

}

.faq-item.visible p {
    visibility: visible;
    opacity: 1;
    transition: 0.3s ease-in;
    margin-top: 20px;
    height: initial;
    line-height: 137%;
}


.faq-item {

    border: 1px solid #626262;
    border-radius: 30px;
    padding: 15px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.faq-item__heading {
    display: flex;
    align-items: center;
    gap: 8px;
}



.faq-item__heading h3 {
    margin: 0;
    font-size: 13.5px;

}

.faq-item__text {
    margin-top: 50px;
    font-size: 12.5px;
}

.faq-item__button {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-left: auto;
    border: none;
    border-radius: 100%;
    background: #282828;
    width: 30px;
    height: 30px;

    font-weight: 300;
    font-size: 30px;
    font-family: Arial, Helvetica, sans-serif;
    transition: 0.3s ease-in-out;
    background-image: url("./images/plus.svg");
    background-repeat: no-repeat;
    background-position: center;

}

.faq-item.visible .faq-item__button{
    background-image: url("./images/minus.svg");
}

.swiper-title {
    margin-top: 4px;
    margin-bottom: 22px;
    font-size: 20px;
    text-align: center;
    white-space: nowrap;
}

.swiper {
    box-sizing: border-box;
    margin-bottom: 50px;
    border-radius: 30px;
    background: #F7F7F7;
    padding-top: 10px !important;
    padding-right: 50px !important;
    padding-left: 50px !important;
    width: 100%;
    height: 264px;
}

.swiper-slide {
    box-sizing: border-box;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 30px;
    padding: 15px;
    height: 167px !important;
}

.swiper-slide__text {
    margin-top: 0px;
    padding-bottom: 48px;
    color: rgba(40, 40, 40, 0.8);
    font-size: 13px;
}

.swiper-slide__channel {
    display: flex;
    gap: 10px;
    border-top: 1px solid #DCDCDC;
}

.swiper-slide__channel p {
    margin-top: 10px;
    font-weight: 700;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    text-align: left;
}

.swiper-pagination-bullet {
    opacity: 1 !important;
    border: 1px solid transparent;
    background: #282828 !important;
    width: 7px !important;
}

.swiper-pagination-bullet-active {
    border: 1px solid #282828;
    background: transparent !important;
}