* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #fff;
    color: #1a1a1a;
}

.hero {
    padding: 0;
    background-color: #fff;
}

.sale-banner {
    background-color: #ff3366;
    color: #fff;
    font-weight: 700;
    text-align: center;
    padding: 10px;
    font-size: 16px;
}

.container {
    padding: 20px 15px;
    text-align: center;
}

.logo {
    width: 140px;
    margin: 15px auto;
}

.rating {
    font-size: 15px;
    margin: 10px 0;
}

.rating .highlight {
    color: #e3006e;
    font-weight: 700;
}

h1 {
    font-size: 22px;
    font-weight: 900;
    margin: 15px 0;
    line-height: 1.3;
}

h1 .pink {
    color: #e3006e;
}

.btn {
    display: inline-block;
    background: #ff4f7f;
    color: #fff;
    padding: 14px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    margin-top: 15px;
    box-shadow: 0 4px 10px rgba(255, 79, 127, 0.3);
    position: relative;
    overflow: hidden;
}

.button:before,
.btn:before {
    display: block;
    content: '';
    width: 140%;
    height: 100%;
    background: url(../img/animate_bg.png) no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    -webkit-animation: AnimationName 2s cubic-bezier(0.43, 0.61, 1, 1) infinite;
    -moz-animation: AnimationName 2s cubic-bezier(0.43, 0.61, 1, 1) infinite;
    -o-animation: AnimationName 2s cubic-bezier(0.43, 0.61, 1, 1) infinite;
    animation: AnimationName 2s cubic-bezier(0.43, 0.61, 1, 1) infinite;
    position: absolute;
    top: 0;
    left: -20%;
}

@keyframes AnimationName {
    100% {
        background-position: 100% 50%;
    }
    0% {
        background-position: 0% 50%;
    }
}

.benefits {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 25px 0;
    gap: 10px;
}

.benefit-item {
    flex: 1 1 30%;
    text-align: center;
    font-size: 14px;
}

.benefit-item img {
    width: 36px;
    margin-bottom: 5px;
}

.product-image {
    position: relative;
    margin: 20px 0;
}

.product-image img {
    width: 100%;
    border-radius: 8px;
}

.insert-preview {
    position: absolute;
    left: 10px;
    bottom: -20px;
    width: 120px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.insert-preview img {
    width: 100%;
    border-radius: 50%;
}

.description {
    text-align: left;
    margin-top: 30px;
}

.description h2 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 15px;
}

.description ul {
    list-style: none;
    padding-left: 0;
}

.description li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    line-height: 1.4;
}

.description li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #ff4f7f;
    font-size: 18px;
    line-height: 1;
}

.features {
    background: #fff;
    padding: 30px 15px;
}

.features h2 {
    font-size: 24px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 30px;
}

.features .pink {
    color: #e3006e;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.feature-item .icon {
    width: 105px;
    height: 105px;
    flex-shrink: 0;
    border-radius: 50%;
    /* background: #ffeaf0;
     padding: 10px;*/
}

.feature-item .text h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.feature-item .text p {
    font-size: 14px;
    line-height: 1.5;
    color: #444;
}

.feature-images {
    margin: 25px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-images img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.reasons {
    background: #fff;
    /*padding: 40px 15px;*/
    padding: 0 15px;
    text-align: center;
}

.reasons h2 {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.4;
}

.reasons-image img {
    width: 100%;
    border-radius: 16px;
    margin: 20px 0;
}

.reasons-title {
    font-size: 20px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.reasons-sub {
    font-size: 15px;
    color: #e3006e;
    font-weight: 700;
    margin-bottom: 15px;
}

.reasons-text {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

.reasons-text strong {
    font-weight: 700;
}

/*отзывы*/
/* body {
     font-family: Arial, sans-serif;
     background: #f9f9f9;
     margin: 0;
     padding: 20px;
   }

   h1 {
     font-size: 24px;
     font-weight: bold;
   }*/

.review {
    background: #ffeef3;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
    border-width: 0px;
    border-style: solid;
    border-color: rgb(0, 0, 0);
    border-radius: 20px;
    margin: 20px 20px 0px;
    /*    padding: 0px;*/
    background-color: rgb(254, 230, 230);
    box-shadow: rgba(175, 175, 175, 0.65) 0.999848px -0.0174524px 8px 1px;
}

.review img {
    width: 242px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
}

.stars {
    color: #f5b50a;
    font-size: 20px;
    margin-bottom: 10px;
}

.name {
    font-weight: bold;
    margin-bottom: 10px;
}

.text {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}

/*    faq*/
h2 {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.faq {
    background-color: rgb(249, 241, 235);
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10px;
    cursor: pointer;
    background: #f9f9f9;
    font-weight: bold;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #fff;
    padding: 0 10px;
    font-size: 14px;
    color: #333;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Достаточно для текста */
    padding: 15px 10px;
}

.arrow {
    transition: transform 0.3s;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

/*    sliders*/
.offer {
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 30px;
    text-align: center;
    background: #fff;
}

.discount {
    display: inline-block;
    background: #40c4ff;
    color: #fff;
    padding: 5px 60px;
    border-radius: 20px;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 22px;
    margin-top: 20px;
}

.product-main-img {
    width: 100%;
    max-width: 290px;
    height: auto;
    margin: 0 auto 10px;
}

.thumbnails {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.thumbnails img {
    width: 100px;
    height: auto;
    border: 2px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: border 0.3s;
}

.thumbnails img:hover {
    border: 2px solid #40c4ff;
}

.thumbnails.small {
    gap: 10px;
}

.thumbnails.small img {
    width: 60px;
}

.price {
    font-size: 22px;
    margin: 10px 0;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 20px;
}

.save {
    color: #4caf50;
    font-size: 14px;
}

.btn {
    display: inline-block;
    background: #ff3d71;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin: 10px 0;
}

.features {
    text-align: left;
    font-size: 14px;
    margin-top: 10px;
}

.features li {
    margin: 5px 0;
}

/* Цветные рамки */
.offer.blue {
    border-color: #40c4ff;
}

.offer.green {
    border-color: #4caf50;
}

.offer.red {
    border-color: #ff3d71;
}

/*    end block*/
.toggle-btn {
    width: 100%;
    text-align: left;
    padding: 15px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.measure-section {
    padding: 20px 0;
}

.measure-section h3 {
    margin: 10px 0;
    font-size: 16px;
}

.measure-section p {
    font-size: 14px;
    line-height: 1.5;
}

.measure-section img {
    width: 100%;
    border-radius: 10px;
    margin: 20px 0;
}

footer {
    background: #fbe9eb;
    text-align: center;
    padding: 20px;
    font-size: 12px;
    border-radius: 10px;
}

footer img {
    max-width: 100px;
}

.hidden {
    display: none;
}

select {
    background-image: url(img/selectc0215.png);
    background-repeat: no-repeat;
    background-position: -2px center;
    overflow: hidden;
    text-indent: 0.01px;
    text-overflow: '';
    -ms-appearance: none;
    appearance: none !important;
}

.offer_section .field {
    display: block;
    margin: 0 auto 20px;
    padding: 0 20px 0 62px;
    width: 370px;
    max-width: 100%;
    height: 72px;
    border: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #777;
}

.offer_section.offer3 .field {
    border: 1px solid #dedede;
}

.offer_section.offer3 .field[name='name'] {
    background: #f0f0f0 url(img/offer__name_icon77466.png) 22px center no-repeat;
}

.offer_section.offer3 .field[name='phone'] {
    margin: 0 auto 35px;
    background: #f0f0f0 url(img/offer__phone_icon9a33f.png) 20px center no-repeat;
}

.button {
    display: block;
    margin: 10px auto;
    width: 350px;
    max-width: 100%;
    height: 80px;
    border: 0;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
    background-color: rgb(255, 80, 105);
    box-shadow: 0 0 0 6px rgb(183 153 142 / 58%);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 80px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.offer_section .products_count {
    padding: 25px;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    text-align: center;
}

.offer_section.offer3 .products_count {
    color: #222;
}