body {
    font-family: "Manrope", sans-serif;
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

.wrapper {
    overflow: hidden;
}

.main-image {
    display: flex;
    align-items: center;
}

.main-image img {
    width: 100%;
    height: auto;
    /*    border: 2px solid #ccc;*/
    max-width: 300px;
}

.thumbnails {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    flex-direction: column;
}

.thumbnail {
    cursor: pointer;
    margin-right: 70px;
}

.thumbnails .item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    border-radius: 5px;
    width: 85px;
    height: 85px;
    background: #fff7e6;
    margin-bottom: 30px;
    z-index: 9;
}

.thumbnails .item img {
    position: relative;
    z-index: 99999999999;
    max-width: 39px;
    display: block;
    margin: auto;
}

.thumbnails .item:last-child {
    margin-bottom: 0;
}

.thumbnail.active {
    border: 1px solid #8f2020;
}

.wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;

}

.left-side {
    position: relative;
    background: #f2ecdf;
    max-width: 581px;
    width: 100%;
    margin-right: 95px;
    padding-top: 88px;
    min-height: 100vh;
    padding-left: 87px;
    padding-bottom: 40px;
    padding-right: 12px;
    overflow: hidden;
}

.circle {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0px;
}

.right-side {
    padding-top: 0px;
    max-width: 698px;
}

.right-side .top,
.left-side .top {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
}

.right-side .top .item,
.left-side .top .item {
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
    color: #fff;
    border-radius: 6px;
    padding: 3px 8px;
}

.right-side .top .item:nth-child(1),
.left-side .top .item:nth-child(1) {
    background: #8f2020;
    margin-right: 20px;
}

.right-side .top .item:nth-child(2),
.left-side .top .item:nth-child(2) {
    background: #61a058;
}

.basic-title {
    font-weight: 600;
    font-size: 35px;
    color: #000;
    margin-bottom: 25px;
}

.stars-block {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 11px;
}

.stars-block .text {
    font-weight: 500;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 0.02em;
    text-align: center;
    background: linear-gradient(135deg, #171c24 0%, #28323f 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stars-container {
    margin-right: 13px;
}

.price-block {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

.price-block .new {
    font-weight: 800;
    font-size: 40px;
    line-height: 40px;
    color: #000;
    margin-right: 10px;
}

.price-block .old {
    font-family: "Outfit", sans-serif;
    font-weight: 300;
    /*    text-decoration: line-through;*/
    font-size: 24px;
    color: #6e6e6e;
}

.description {
    font-weight: 400;
    font-size: 16px;
    line-height: 170%;
    color: #000;
    margin-top: 35px;
    margin-bottom: 30px;
}

label {
    display: block;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #706b63;
    margin-bottom: 10px;
}

.field-wrap {
    display: flex;
    justify-content: flex-start;
    gap: 21px;
    flex-wrap: wrap;
}

.field-item {
    max-width: 338px;
    width: 100%;
}

/*.field-item:nth-child(1) {
    margin-right: 21px;
}*/

.field {
     font-family: "Manrope", sans-serif;
    display: block;
    border: 1px solid #dedddb;
    border-radius: 10px;
    max-width: 338px;
    width: 100%;
    padding: 16px 10px;
    padding-left: 20px;
    font-size: 16px;
    height: 55px;

}

input:focus::-webkit-input-placeholder {
     font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #706b63;
}

input:focus::-moz-placeholder {
     font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #706b63;
}

input:focus::-moz-placeholder {
     font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #706b63;
}

input:focus::-ms-input-placeholder {
     font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #706b63;
}

.form-btn {
    font-family: "Manrope", sans-serif;
    display: block;
    border-radius: 10px;
    background: #8f2020;
    max-width: 100%;
    width: 100%;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #fff;
    padding: 16px 10px;
    border: none;
    margin-top: 25px;
    cursor: pointer;
    transition: 0.5s;
    height: 55px;
}

.form-btn:hover {
    opacity: 0.8;
}

.bottom-block {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /*    gap: 22px 33px;*/
}

.bottom-block__item .icon {
    display: flex;
    align-items: center;
    background: #a58a57;
    border-radius: 5px;
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    line-height: 50px;
/*    padding-top: 15px;*/
}

.bottom-block__item .icon svg {
    display: block;
    margin: auto;
}

.bottom-block__item .title {
    font-weight: 800;
    font-size: 16px;
    line-height: 120%;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 10px;
}

.slider {
    display: flex;
    margin-bottom: 33px;
    justify-content: flex-start;
}

.slider-container {
    position: relative;
}

.dots-container {
    display: none;
    /* Скрываем точки по умолчанию */
    justify-content: center;
    margin-top: 10px;
}

.dots-container .dot {
    cursor: pointer;
    margin: 0 5px;
}

.web {
    display: flex;
}

.mob {
    display: none !important;
}

.right-side .top.web {
    display: flex !important;
}

.bottom-block__item:nth-child(1) {
    width: 152px;
    margin-right: 22px;
}

.bottom-block__item:nth-child(2) {
    width: 130px;
    margin-right: 22px;
}

.bottom-block__item:nth-child(3) {
    width: 150px;
}

@media screen and (min-width:480px) and (max-width:1400px) {
  .left-side {
    padding-left: 20px;
    max-width: 50%;
    margin-right: 20px;
  }

  .right-side {
    max-width: 50%;
    padding-right: 30px;
  }
}
@media (max-width: 991px) {
    .slider.web {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .main-image {
        display: block;
    }

    .thumbnails {
        display: none;
        /* Скрываем миниатюры на мобильных устройствах */
    }

    .dots-container {
        display: flex;
        position: relative;
        z-index: 99999;
        margin-top: 0;
    }

    .wrapper {
        flex-direction: column;
    }

    .left-side {
        margin-right: 0px;
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 28px;
        border-radius: 10px;
        padding-bottom: 0;
        max-width: 100%;
        width: 100%;
        overflow: hidden;
        min-height: auto;
        padding-bottom: 35px;
    }

    .main-image img {
        max-width: 250px;
        margin-top: 20px;
    }

    .web {
        display: none !important;
    }

    .mob {
        display: block !important;
    }


    .right-side {
        padding-top: 20px;
        background: #fff;
        position: relative;
        z-index: 9;
        padding-left: 10px;
        padding-right: 10px;
        max-width: 100%;

    }

    .basic-title {
        font-weight: 600;
        font-size: 35px;
        color: #000;
        margin-top: 30px;
    }

    .right-side .top,
    .left-side .top {
        display: inline-block !important;
    }

    .field,
    .field-item {
        max-width: 100%;
    }

    .field-wrap {
        display: block;
    }

    .field.name {
        margin-bottom: 15px;
    }

    .wrapper {
        padding-bottom: 79px;
    }

    .left-side .top .item {
        display: inline-block;
    }

    .left-side .top .item:nth-child(1) {
        margin-bottom: 8px;
    }

    .mainImg-wrap {
        text-align: center;
    }

    .circle {
        position: absolute;
        left: -300px;
        right: auto;
        margin: auto;
        bottom: -280px;
        z-index: 1;
    }

    .right-side .top,
    .left-side .top {
        margin-bottom: 0;
    }

    .right-side .top.web {
        display: none !important;
    }

    .price-block {
        margin-bottom: 25px;
    }

    .bottom-block__item:nth-child(1),
    .bottom-block__item:nth-child(2),
    .bottom-block__item:nth-child(3) {
        width: 100%;
        margin-right: 0;
    }

    .bottom-block__item {
        display: block;
/*        justify-content: flex-start;
        align-items: flex-start;*/
        margin-bottom: 20px;
    }

    .bottom-block__item .right {
        max-width: 75%;
        display: inline-block;
        vertical-align: top;
    }

    .bottom-block__item .icon {
        margin-right: 10px;
        display: inline-block;
        vertical-align: top;
        padding-top: 15px;
        
    }

    .description {
        margin-top: 20px;
        margin-bottom: 40px;
    }

    .form-btn {
        margin-top: 25px;
    }

    .slider {
        margin-bottom: 0;
        justify-content: center;
    }

    #mainImg {
        transition: opacity 0.3s ease-in-out;
    }

    .thumbnail img {
        transition: transform 0.3s ease-in-out;
    }

    .thumbnail.active img {
        transform: scale(1.1);
        /* Пример увеличения активного изображения */
    }
}