
@-ms-viewport {
    width: device-width;
  }
  
  @viewport {
    width: device-width;
  }
  
  html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    touch-action: manipulation;
  }
  
  body {
    touch-action: pan-y;
    -webkit-user-scalable: no;
    user-scalable: no;
    overflow-x: hidden;
    width: 100%;
    position: relative;
  }
  
  /* Остальной ваш CSS остается без изменений */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #1C2526;
    background: #E8ECEF;
    scroll-behavior: smooth;
}

.main_wrapper {
    width: 480px;
    margin: 0 auto;
    background: #FFFFFF;
}

img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.button {
    display: block;
    margin: 20px auto;
    padding: 15px 30px;
    border: none;
    border-radius: 20px;
    background: #F05423;
    font-weight: 700;
    font-size: 16px;
    color: #FFFFFF;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.button:hover {
    background: #D9451F;
    transform: scale(1.05);
}

section {
    padding: 25px 15px;
}

h2.title {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
    color: #1C2526;
}

h2.title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #F05423;
    margin: 10px auto;
}

.offer_section {
    background: linear-gradient(135deg, #1C2526, #2E3A3B);
    color: #FFFFFF;
    padding: 25px 15px;
    text-align: center;
}

.offer_section .main_title {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.offer_section .info_block .subtitle {
    font-size: 16px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.95);
    color: #1C2526;
    padding: 8px 15px;
    border-radius: 6px;
    margin: 15px 0;
}

.offer_section .price_block {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

.offer_section .price_item {
    background: #FFFFFF;
    padding: 10px 15px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 100px;
}

.offer_section .price_item.old {
    color: #6B7280;
}

.offer_section .price_item.new {
    background: #F05423;
    color: #FFFFFF;
}

.offer_section .price_item .text {
    font-size: 14px;
}

.offer_section .price_item .value {
    font-size: 18px;
    font-weight: 700;
}

.offer_section .discount {
    background: #FBBF24;
    color: #1C2526;
    padding: 8px 10px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    min-width: 60px;
}

.offer_section .discount .text {
    font-size: 12px;
    font-weight: 700;
}

.offer_section .discount .value {
    font-size: 14px;
    font-weight: 700;
}

.offer_section .timer_block {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 6px;
    margin: 15px 0;
}

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

.offer_section .timer_item .count {
    font-size: 20px;
    font-weight: 700;
    background: #F05423;
    padding: 8px;
    border-radius: 4px;
    color: #FFFFFF;
}

.offer_section .timer_item .text {
    font-size: 12px;
}

.offer_section .field {
    display: block;
    margin: 10px auto;
    padding: 12px 15px;
    width: 100%;
    max-width: 350px;
    border: 1px solid #D1D5DB;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.offer_section .field:focus {
    border-color: #F05423;
    outline: none;
}

.offer_section .products_count {
    font-size: 14px;
    color: #E8ECEF;
}

.about_section {
    background: #FFFFFF;
    text-align: center;
}

.about_section .about_content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.about_section img {
    max-width: 100%;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.about_section p {
    font-size: 16px;
    color: #4B5563;
}

.benefits_section {
    background: #E8ECEF;
    text-align: center;
}

.benefits_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.benefits_list .benefit_item {
    background: #FFFFFF;
    border-radius: 6px;
    padding: 15px;
    width: 100%;
    max-width: 350px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.benefits_list .benefit_item:hover {
    transform: translateY(-3px);
}

.benefits_list .benefit_item img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.benefits_list .benefit_item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1C2526;
}

.benefits_list .benefit_item p {
    font-size: 14px;
    color: #4B5563;
}

.reviews_section {
    background: #FFFFFF;
    padding: 25px 15px;
}

.reviews_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.review_item {
    background: #E8ECEF;
    border-radius: 6px;
    padding: 15px;
    width: 100%;
    max-width: 350px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.review_item:hover {
    transform: translateY(-3px);
}

.review_item img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.review_item .name {
    font-weight: 700;
    color: #1C2526;
    margin-bottom: 5px;
    font-size: 14px;
}

.review_item p {
    font-size: 14px;
    color: #4B5563;
}

.guarantee_section {
    background: #FFFFFF;
    text-align: center;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px 20px;
    margin: 25px 15px;
}

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

.guarantee_item {
    background: #E8ECEF;
    border-radius: 6px;
    padding: 20px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.guarantee_item img {
    width: 60px;
    margin-bottom: 15px;
}

.guarantee_item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1C2526;
}

.guarantee_item p {
    font-size: 16px;
    color: #4B5563;
}

.order_info_section {
    background: #FFFFFF;
    text-align: center;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 15px;
    margin: 25px 15px;
}

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

.info_item {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
    text-align: left;
    width: 100%;
    max-width: 400px;
}

.info_item .image_block img {
    max-width: 100px;
    border-radius: 6px;
}

.info_item .text_block h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #F05423;
}

.info_item .text_block p {
    font-size: 14px;
    color: #4B5563;
}

footer {
    background: #1C2526;
    color: #E8ECEF;
    padding: 20px 15px;
    text-align: center;
    font-size: 14px;
}

footer a {
    color: #FBBF24;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}