/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 480px;
    margin: 0 auto;
    background: #ECEFF1;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #333333;
    overflow-x: hidden;
}

.main_wrapper {
    width: 480px;
    background: #FFFFFF;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Typography */
h1, h2, h4 {
    font-weight: 700;
    text-transform: uppercase;
}

h1.main_title {
    font-size: 26px;
    line-height: 1.2;
    text-align: center;
    padding: 15px 0;
    background: #37474F;
    color: #FFFFFF;
}

h2.title {
    font-size: 22px;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 15px;
    color: #333333;
}

h2.title:after {
    content: '';
    display: block;
    margin: 10px auto 0;
    width: 40px;
    height: 3px;
    background: #D7CCC8;
    border-radius: 1.5px;
}

h4 {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 8px;
    color: #37474F;
}

/* Button */
.button {
    display: block;
    margin: 15px auto;
    width: 440px;
    height: 50px;
    border: none;
    border-radius: 25px;
    background: #D7CCC8;
    box-shadow: 0 3px 0 #A1887F;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 50px;
    color: #333333;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button:hover {
    background: #EFEBE9;
    transform: translateY(-1px);
}

/* Sections */
section {
    padding: 20px;
}

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

.hero_section .subtitle {
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0;
    color: #37474F;
}

.hero_section img {
    width: 440px;
    margin: 0 auto 15px;
    border-radius: 8px;
}

.hero_section .price_block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
}

.hero_section .price_item {
    width: 45%;
    padding: 10px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.hero_section .price_item.old {
	margin-left: 15px;
    background: #ECEFF1;
    color: #666666;
}

.hero_section .price_item.new {
	margin-right: 15px;
    background: #37474F;
    color: #FFFFFF;
}

.hero_section .price_item .text {
    font-size: 14px;
    margin-bottom: 5px;
}

.hero_section .price_item .value {
    font-size: 22px;
    font-weight: 700;
}

.hero_section .price_item.old .value {
    text-decoration: line-through;
}

.hero_section .discount {
    text-align: center;
}

.hero_section .discount .text {
    font-size: 14px;
    text-transform: uppercase;
    color: #ff0000;
}

.hero_section .discount .value {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    background: #fa0c0c;
    display: inline-block;
    padding: 4px 1px;
    border-radius: 15px;
	margin-left: 15px;
	margin-right: 15px;
    margin-top: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.hero_section .timer_block {
    margin: 15px 0;
    text-align: center;
}

.hero_section .timer_block p {
    font-size: 14px;
    margin-bottom: 10px;
}

.hero_section .timer {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.hero_section .timer_item {
    text-align: center;
}

.hero_section .timer_item .count {
    background: #37474F;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 700;
    padding: 8px;
    border-radius: 4px;
    margin-bottom: 5px;
}

.hero_section .timer_item .text {
    font-size: 12px;
    color: #333333;
}

.hero_section .products_count {
    font-size: 14px;
    text-align: center;
    margin-top: 15px;
    color: #666666;
}

/* Form */
.order_form .field {
    display: block;
    margin: 0 auto 10px;
    width: 440px;
    height: 45px;
    border: 1px solid #CCCCCC;
    border-radius: 5px;
    padding: 0 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #333333;
    background: #ECEFF1;
}

.order_form .field[name='name'] {
    background: #ECEFF1 url(../images/offer__name_icon.png) 10px center no-repeat;
    padding-left: 40px;
}

.order_form .field[name='phone'] {
    background: #ECEFF1 url(../images/offer__phone_icon.png) 10px center no-repeat;
    padding-left: 40px;
}

.order_form select.field {
    appearance: none;
    background: #ECEFF1 url(../images/offer__color_icon.png) 10px center no-repeat;
    padding-left: 40px;
}

.order_form .field:focus {
    border-color: #37474F;
    outline: none;
}

.order_form .field::-webkit-input-placeholder {
    color: #999999;
    opacity: 1;
}

.order_form .field:focus::-webkit-input-placeholder {
    opacity: 0;
}

/* About Section */
.about_section {
    background: #ECEFF1;
    text-align: center;
}

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

.about_section img {
    width: 440px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.about_section p {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
}

/* Benefits Section */
.benefits_section {
    background: #FFFFFF;
}

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

.benefits_list .benefit_item {
    background: #ECEFF1;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.benefits_list .benefit_item img {
    width: 120px;
    height: 120px;
    margin: 0 auto 10px;
    border-radius: 50%;
}

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

/* Reviews Section */
.reviews_section {
    background: #FFFFFF;
}

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

.review_item {
    display: flex;
    background: #ECEFF1;
    border-radius: 8px;
    padding: 15px;
    gap: 15px;
    align-items: center;
}

.review_content {
    flex: 1;
}

.review_item .author_block {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

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

.review_item .name {
    font-weight: 700;
    font-size: 14px;
    color: #333333;
}

.review_item p {
    font-size: 13px;
    line-height: 1.5;
    color: #666666;
}

.review_item .review_photo {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    object-fit: cover;
}

/* Guarantee Section */
.guarantee_section {
    background: #ECEFF1;
}

.guarantee_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.guarantee_item {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}

.guarantee_item img {
    width: 60px;
    margin: 0 auto 10px;
}

.guarantee_item p {
    font-size: 13px;
    line-height: 1.5;
    color: #666666;
}

/* Delivery Section */
.delivery_section {
    background: #37474F;
    color: #FFFFFF;
}

.delivery_section .title {
    color: #FFFFFF;
}

.delivery_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.delivery_item img {
    width: 120px;
    border-radius: 8px;
}

.delivery_item .text_block {
    flex: 1;
}

.delivery_item h4 {
    color: #FFFFFF;
}

.delivery_item p {
    font-size: 13px;
    line-height: 1.5;
}

/* CTA Section */
.cta_section {
    background: #FFFFFF;
    text-align: center;
}

.cta_section img {
    width: 440px;
    margin: 0 auto 15px;
    border-radius: 8px;
}

.cta_section .price_block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
}

.cta_section .price_item {
    width: 45%;
    padding: 10px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.cta_section .price_item.old {
	margin-left: 15px;
    background: #ECEFF1;
    color: #666666;
}

.cta_section .price_item.new {
	margin-right: 15px;
    background: #37474F;
    color: #FFFFFF;
}

.cta_section .price_item .text {
    font-size: 14px;
    margin-bottom: 5px;
}

.cta_section .price_item .value {
    font-size: 22px;
    font-weight: 700;
}

.cta_section .price_item.old .value {
    text-decoration: line-through;
}

.cta_section .discount {
    text-align: center;
}

.cta_section .discount .text {
    font-size: 14px;
    text-transform: uppercase;
    color: #333333;
}

.cta_section .discount .value {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    background: #ff0000;
    display: inline-block;
    padding: 8px 15px;
    border-radius: 15px;
    margin-top: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer_section {
    background: #FFFFFF;
    padding: 20px;
    text-align: center;
    font-size: 13px;
    color: #666666;
}

.footer_section p {
    margin-bottom: 8px;
}

.footer_section a {
    color: #37474F;
    text-decoration: none;
}

.footer_section a:hover {
    text-decoration: underline;
}