* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
body {
    max-width: 480px;
    margin: 0 auto;
    background: #f5f5f5;
    color: #333;
}
.store-badge {
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    display: inline-block;
    margin: 15px auto;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}
.store-badge:after {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    bottom: -50%;
    left: -50%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3), rgba(255,255,255,0));
    transform: rotateZ(60deg) translate(-5em, 7.5em);
}
.product-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 10px 0;
}
.header {
    text-align: center;
    padding: 15px;
}
.title {
    font-size: 24px;
    font-weight: bold;
    margin: 10px 0;
}
.subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}
.price-block {
    background: white;
    padding: 15px;
    border-radius: 10px;
    margin: 15px 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 18px;
}
.new-price {
    color: #e53935;
    font-size: 28px;
    font-weight: bold;
    margin: 0 10px;
}
.discount {
    background: #e53935;
    color: white;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 14px;
    display: inline-block;
}
.order-btn {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 30px;
    margin: 20px 0;
    width: 100%;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: all 0.3s;
}
.order-btn:hover {
    background: #388E3C;
    transform: translateY(-2px);
}
.section {
    background: white;
    padding: 20px;
    margin: 15px 0;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.section-title {
    font-size: 20px;
    margin-bottom: 15px;
    text-align: center;
    color: #2c3e50;
}
.benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 15px 0;
}
.benefit {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 10px;
}
.benefit-emoji {
    font-size: 30px;
    margin-bottom: 10px;
}
.benefit-title {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 18px;
}
.specs-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}
.specs-list {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}
.specs-item {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
    line-height: 1.5;
}
.specs-item:before {
    content: "✓";
    color: #4CAF50;
    font-size: 18px;
    position: absolute;
    left: 0;
    top: 0;
}
.description-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}
.slider {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.slides {
    display: flex;
    transition: transform 0.5s ease;
}
.slide {
    min-width: 100%;
}
.slide img {
    width: 100%;
    display: block;
    border-radius: 10px;
}
.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 10px;
}
.slider-btn {
    background: rgba(76, 175, 80, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-btn:hover {
    background: rgba(76, 175, 80, 0.9);
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}
.requisites {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}