/* Базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Хедер */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 28px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.logo h1 {
    font-size: 28px;
    font-weight: 800;
    color: #000;
    font-family: 'Cinzel', serif;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0,0,0,0.15);
    font-style: normal;
}

.nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-secondary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #fff;
    border: 2px solid #000;
    color: #000;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #000;
    color: #fff;
}

.telegram-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #0088cc;
    color: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.telegram-btn:hover {
    background: #006699;
    transform: scale(1.05);
}

/* Главный блок */
.hero {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    padding: 30px 0;
    margin-top: -40px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23e5e7eb" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.product-header {
    margin-bottom: 20px;
    text-align: left;
}

.product-badge {
    display: inline-block;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: #fff;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.hero-title {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    margin-bottom: 8px;
    line-height: 1.1;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.4;
    font-weight: 400;
}

/* Рейтинг и цена */
.product-stats {
    margin-bottom: 20px;
    text-align: left;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #6b7280;
    justify-content: flex-start;
}

.stars {
    color: #fbbf24;
    font-size: 14px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.price-display {
    background: #fff;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #f3f4f6;
    width: 100%;
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 28px;
    font-weight: 800;
    color: #000;
    font-family: 'Inter', sans-serif;
}

.price-currency {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.discount-info {
    margin-top: 8px;
}

.discount-text {
    color: #f97316;
    font-size: 13px;
    font-weight: 600;
    background: rgba(249, 115, 22, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-block;
}

/* Цена */
.price-block {
    margin-bottom: 24px;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 6px;
}

.price-amount {
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

.price-currency {
    font-size: 14px;
    color: #6b7280;
}

.discount {
    color: #f97316;
    font-size: 12px;
    font-weight: 500;
}

/* Блок заказа */
.order-section {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border: 1px solid #f3f4f6;
    width: 100%;
}

.quantity-section {
    margin-bottom: 16px;
}

.quantity-section label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    width: fit-content;
}

.quantity-btn {
    width: 36px;
    height: 36px;
    background: #fff;
    border: none;
    color: #6b7280;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: #f3f4f6;
    color: #000;
    transform: scale(1.05);
}

.quantity-value {
    width: 60px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    padding: 8px;
    color: #000;
    background: #f9fafb;
}

.total-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding: 16px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.total-section span:first-child {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.total-price {
    font-size: 20px;
    font-weight: 800;
    color: #f97316;
    font-family: 'Inter', sans-serif;
}

.order-btn {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.order-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.order-btn:hover::before {
    left: 100%;
}

.order-btn:hover {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.3);
}



/* Изображение продукта */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 20px;
    overflow: visible;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.product-image {
    width: 700px;
    height: 700px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
    transition: all 0.4s ease;
    border-radius: 0;
    background: transparent;
    padding: 0;
    box-shadow: none;
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.product-image:hover {
    /* Убрал анимацию при наведении */
}

/* Лендинг блоки */
.landing-sections {
    padding: 80px 0;
}

.landing-block {
    padding: 80px 0;
}

.landing-block.bg-light {
    background: #f9fafb;
}

.landing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.landing-content.reverse {
    direction: rtl;
}

.landing-content.reverse > * {
    direction: ltr;
}

.landing-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.landing-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-icon {
    background: #fff;
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-size: 16px;
}

.landing-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
}

.landing-text p {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.7;
}

.landing-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.landing-image img:hover {
    transform: scale(1.02);
}

/* Новые элементы лендинга */
.landing-features {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.feature-icon {
    font-size: 16px;
}

.health-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 8px;
    border-left: 3px solid #f97316;
}

.benefit-icon {
    font-size: 20px;
}

.benefit div {
    display: flex;
    flex-direction: column;
}

.benefit strong {
    font-size: 14px;
    color: #000;
}

.benefit span:last-child {
    font-size: 12px;
    color: #6b7280;
}

.freeze-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.freeze-benefit {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.freeze-number {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 5px;
}

.freeze-benefit div:last-child {
    font-size: 12px;
    opacity: 0.9;
}

.taste-qualities {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.taste-quality {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.taste-icon {
    font-size: 18px;
}

.delivery-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.delivery-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #f9fafb;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.delivery-icon {
    font-size: 20px;
}

.delivery-feature div {
    display: flex;
    flex-direction: column;
}

.delivery-feature strong {
    font-size: 14px;
    color: #000;
}

.delivery-feature span:last-child {
    font-size: 12px;
    color: #6b7280;
}

.reviews {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.review {
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
    border-left: 4px solid #f97316;
}

.review-stars {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 10px;
}

.review p {
    font-size: 14px;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 10px;
}

.review-author {
    font-size: 12px;
    color: #6b7280;
    font-weight: 600;
}

/* CTA блок */
.cta-block {
    background: linear-gradient(135deg, #000, #1f2937);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(249, 115, 22, 0.2);
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 20px;
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
}

.cta-icon {
    font-size: 20px;
}

.cta-btn {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.6);
}

/* Модальное окно */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: #fff;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 0;
    margin-bottom: 24px;
}

.modal-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
}

.modal-close {
    background: none;
    border: none;
    font-size: 32px;
    color: #9ca3af;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #6b7280;
}

.order-info {
    background: #f9fafb;
    padding: 20px;
    border-radius: 12px;
    margin: 0 24px 24px;
}

.order-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
}

.order-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    color: #6b7280;
}

.order-total {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    color: #000;
    border-top: 1px solid #e5e7eb;
    padding-top: 8px;
    margin-top: 8px;
}

.order-form {
    padding: 0 24px 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-checkboxes {
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #000;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
}

.checkbox-label a {
    color: #f97316;
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: #ea580c;
}

/* Стили для кнопки в модальном окне */
.modal-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.modal-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.modal-btn:hover::before {
    left: 100%;
}

.modal-btn:hover {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.3);
}

/* Адаптивность */
@media (max-width: 768px) {
    .hero {
        padding: 25px 0;
        margin-top: -30px;
        min-height: 100vh;
    }
    
    .landing-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .landing-text h2 {
        font-size: 28px;
    }
    
    .landing-text p {
        font-size: 16px;
    }
    
    .landing-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .health-benefits {
        gap: 12px;
    }
    
    .freeze-benefits {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .freeze-benefit {
        padding: 15px;
    }
    
    .freeze-number {
        font-size: 28px;
    }
    
    .delivery-features {
        gap: 12px;
    }
    
    .reviews {
        gap: 15px;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-btn {
        padding: 16px 32px;
        font-size: 16px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .product-header {
        text-align: center;
    }

    .product-stats {
        text-align: center;
    }

    .rating {
        justify-content: center;
    }

    .price-display {
        width: 100%;
        padding: 12px;
    }

    .order-section {
        width: 100%;
        padding: 16px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .product-stats {
        margin-bottom: 16px;
    }

    .price-display {
        padding: 12px;
    }

    .price-amount {
        font-size: 24px;
    }

    .product-image {
        width: 250px;
        height: 250px;
        position: relative;
        right: auto;
        top: auto;
        transform: none;
    }

    .hero-image::before {
        width: 250px;
        height: 250px;
    }

    .order-section {
        padding: 16px;
    }

    .logo h1 {
        font-size: 26px;
        letter-spacing: 2px;
    }

    .logo-icon {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .landing-text h2 {
        font-size: 24px;
    }
    
    .landing-text p {
        font-size: 14px;
    }
    
    .landing-image img {
        height: 300px;
    }
    
    .freeze-benefit {
        padding: 12px;
    }
    
    .freeze-number {
        font-size: 24px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 14px;
    }
    
    .cta-btn {
        padding: 14px 28px;
        font-size: 14px;
    }

    .hero {
        padding: 20px 0;
        margin-top: -20px;
        min-height: 100vh;
    }

    .hero-content {
        gap: 24px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 12px;
    }

    .product-stats {
        margin-bottom: 12px;
    }

    .price-display {
        padding: 10px;
    }

    .price-amount {
        font-size: 20px;
    }

    .price-currency {
        font-size: 12px;
    }

    .product-image {
        width: 200px;
        height: 200px;
        position: relative;
        right: auto;
        top: auto;
        transform: none;
    }

    .hero-image::before {
        width: 200px;
        height: 200px;
    }

    .order-section {
        padding: 12px;
    }

    .quantity-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .quantity-value {
        width: 50px;
        font-size: 14px;
        padding: 6px;
    }

    .total-price {
        font-size: 18px;
    }

    .order-btn {
        padding: 12px 16px;
        font-size: 14px;
    }

    .logo h1 {
        font-size: 22px;
        letter-spacing: 1px;
    }

    .logo-icon {
        font-size: 20px;
    }

    .logo {
        gap: 8px;
    }
} 