.gradient_section {
    background:linear-gradient(135deg, rgb(102, 126, 234) 0%, rgb(118, 75, 162) 100%);
}
.product h2 {
    text-align:center;
}
.hero_content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
    @media screen and (max-width:1200px) {gap:30px;}
    @media screen and (max-width:992px) {grid-template-columns: 1fr;gap:0;}
}
.hero_image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    max-width:400px;
    margin:0 auto;
}
.hero_image img {
    display:block;
    width:100%;
    aspect-ratio: 1 / 1;
}
.hero_text {
    @media screen and (max-width:992px) {text-align:center;}
}
.hero_text h1 {
    font-size:42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    @media screen and (max-width:1200px) {font-size:32px;}
    @media screen and (max-width:992px) {font-size:28px;}
    @media screen and (max-width:768px) {font-size:24px;}
    @media screen and (max-width:575px) {font-size:20px;}
}
.hero_text p {
    font-size: 18px;
    color: #666666;
    margin-bottom: 30px;
    line-height: 1.5;
    @media screen and (max-width:1200px) {font-size:16px;}
    @media screen and (max-width:992px) {font-size:14px;}
    @media screen and (max-width:768px) {font-size:12px;}
}
.price_block {
    display:flex;
    align-items:center;
    gap:30px;
    margin:35px 0;
    @media screen and (max-width:1200px) {margin:20px 0;}
    @media screen and (max-width:992px) {margin:15px 0;justify-content:center;}
}
.old_price {
    font-size:18px;
    color: #9CA3AF;
    text-decoration: line-through;
    @media screen and (max-width:575px) {font-size:16px;}
}
.main_price {
    font-size: 36px;
    font-weight: 800;
    color:#4f46e5;
    @media screen and (max-width:575px) {font-size:28px;}
}
.chars_product {
    display:grid;
    grid-template-columns: 1fr;
    gap:10px;
    margin-bottom:20px;
}
.title_item_chars_product {
    font-weight:600;
    font-size:20px;
    margin-bottom:3px;
    @media screen and (max-width:1200px) {
        font-size:18px;
    }
    @media screen and (max-width:992px) {
        font-size:16px;
    }
    @media screen and (max-width:575px) {
        font-size:14px;
    }
}
.text_item_chars_product {
    color:#666;
    @media screen and (max-width:1200px) {
        font-size:14px;
    }
    @media screen and (max-width:768px) {
        font-size:12px;
    }
}
.title_item_chars_product span {
    color:red;
}
#order_box {
    @media screen and (max-width:992px) {margin:0 auto;}
}
#order_box img {
    width:30px;
}
.garantii {
    margin-top:15px;
    font-size:14px;
    color:#666;
    @media screen and (max-width:992px) {font-size:12px;}
}

.composition {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    @media screen and (max-width:1025px) {grid-template-columns: repeat(2, 1fr);}
    @media screen and (max-width:575px) {grid-template-columns: repeat(1, 1fr);}
}
.item_composition {
    background: #F9FAFB;
    padding: 30px;
    border-radius: 12px;
    transition: 0.3s;
}
.item_composition:hover {
    background: #fff;
    box-shadow:0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.item_composition_icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 12px;
}
.item_composition_icon img {
    width:60px;
    height:60px;
    padding:10px;
}
.item_composition_title {
    font-size:20px;
    font-weight:700;
    @media screen and (max-width:1025px) {font-size:18px;}
    @media screen and (max-width:575px) {font-size:16px;}
}
.item_composition p {
    color: #6B7280;
    font-size: 14px;
    line-height: 1.6;
    @media screen and (max-width: 1025px) {font-size: 12px;}
}