/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    padding: 20px;
    scroll-behavior: smooth; /* Плавная прокрутка */
    overflow-x: hidden; /* Убираем горизонтальную прокрутку */
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-bottom: 2px solid #d62736;
    max-width: 1200px;
    margin: 0 auto;
}

/* Контейнер для логотипа и текста */
.logo-container {
    display: flex;
    align-items: center; /* Выравнивание по центру по вертикали */
    gap: 10px; /* Расстояние между логотипом и текстом */
}

/* Стиль для ссылки логотипа и текста */
.logo-link {
    display: flex; /* Объединяем логотип и текст в одну строку */
    align-items: center; /* Выравниваем элементы по центру */
    text-decoration: none; /* Убираем подчеркивание ссылки */
    color: inherit; /* Наследуем цвет от родителя (чтобы текст не менял цвет) */
}

/* Стиль для логотипа */
.logo img {
    max-width: 100px;
    height: auto;
}

/* Стиль для текста рядом с логотипом */
.logo-text span {
    font-size: 1.3rem;
    color: #333; /* Цвет текста */
    margin-left: 10px; /* Отступ между логотипом и текстом */
}
.logo img {
    max-width: 35px;
    height: auto;
}

.menu {
    position: relative;
}

.menu-list {
    list-style: none;
    display: flex;
    gap: 20px;
}

.menu a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.menu a:hover {
    color: #d62736;
}

.burger-menu {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
}

.close-menu {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
}

.product {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    margin: 40px auto;
    max-width: 1200px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-content {
    display: flex;
    flex-wrap: wrap;
	flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
	max-width: 1200px;
}

.product-image {
    max-width: 100%;
    height: auto;
	display: block;
    border-radius: 25px;
}

.product-info {
    flex: 1;
    text-align: center;
	padding-left: 30px;
    padding-right: 30px;
}

.price {
    font-size: 1.5rem;
    color: #d62736;
    margin-bottom: 20px;
}

.delivery {
    font-size: 1.2rem;
    margin-bottom: 30px;
}



/* Неоморфизм */
/*.order-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #f9f9f9;
    color: #d62736;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 20px;
    box-shadow: 8px 8px 15px #d9d9d9, -8px -8px 15px #ffffff;
    transition: all 0.3s ease;
    margin-top: 20px;
    border: none;
}

.order-button:hover {
    box-shadow: inset 4px 4px 10px #d9d9d9, inset -4px -4px 10px #ffffff;
    transform: scale(1.05);
} */

/* Стиль кнопки */
.order-button {
    position: relative; /* Для позиционирования блеска */
    display: inline-block;
    padding: 15px 30px;
	margin-top: 20px;
    background-color: #d62736; /* Основной цвет кнопки */
    color: white; /* Белый текст для контраста */
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 25px; /* Слегка закругленные углы */
    overflow: hidden; /* Скрываем блеск за пределами кнопки */
    transition: all 0.3s ease-in-out; /* Плавная анимация */
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Тень для объема */
}

/* Постоянная анимация блеска */
.order-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%; /* Начальная позиция блеска */
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0) 100%
    ); /* Градиент для блеска */
    transform: skewX(-45deg); /* Наклон блеска */
    animation: shine 3s infinite linear; /* Бесконечная анимация */
}

/* Анимация блеска */
@keyframes shine {
    from {
        left: -100%; /* Блеск начинается слева */
    }
    to {
        left: 100%; /* Блеск перемещается вправо */
    }
}

/* Анимация при наведении */
.order-button:hover {
    background-color: #a31b29; /* Темнее оттенок */
    transform: scale(1.05); /* Легкое увеличение */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); /* Усиленная тень */
}

.process {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
    margin: 40px auto;
    max-width: 1200px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.steps-container {
    display: flex;
    justify-content: center;
    overflow-x: auto;
    padding: 20px 0;
}

.steps {
    display: flex;
    align-items: center;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: #d62736;
    color: white;
    border-radius: 50%;
    margin-bottom: 10px;
    font-weight: bold;
}

.arrow {
    font-size: 2rem;
    color: #d62736;
    margin: 0 20px;
}

.benefits {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
    margin: 40px auto;
    max-width: 1200px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.benefits-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
	padding-top: 40px;
}

.benefits-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.benefits-list {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
    text-align: left;
}

.benefits-list li {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.faq {
    padding: 40px 20px;
    background-color: #fff;
    margin: 40px auto;
	padding-left: 40px;
	padding-right: 40px;
    max-width: 1200px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.faq-item {
    margin-bottom: 30px;
}

.footer {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-top: 2px solid #d62736;
    margin-top: 60px; /* Увеличен отступ */
}



/* Анимация появления шагов */
.step-number {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Пульсация шагов */
/*.step-number {
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(214, 39, 54, 0.5);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(214, 39, 54, 0.8);
    }
} */

/* Стрелки между шагами */
.arrow {
    font-size: 2rem;
    color: #d62736;
    margin: 0 20px;
    animation: bounce-horizontal 2s infinite ease-in-out; /* Анимация влево-вправо */
}

/* Анимация влево-вправо */
@keyframes bounce-horizontal {
    0%, 100% {
        transform: translateX(0); /* Начальное положение */
    }
    50% {
        transform: translateX(10px); /* Движение вправо */
    }
}



/* Бургер-меню */
@media (max-width: 768px) {


	.product-image {
		max-height: 400px;
	}
	
    .menu-list {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: -80%; /* Меню скрыто за экраном */
        width: 80%;
        height: 100%;
        background-color: #fff;
        z-index: 1000;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease; /* Плавное появление */
    }

    .menu-list.active {
        left: 0; /* Меню выезжает на экран */
    }

    .burger-menu {
        display: block;
    }

    body.overlay::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .menu a {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    /* Шаги заказа в столбик для мобильной версии */
    .steps-container {
        align-items: center;
        min-width: auto;
    }
	
	.steps {
		flex-direction: column;
	}

    .step {
        margin-bottom: 20px; /* Отступы между шагами */
    }
	
    .arrow {
        transform: rotate(90deg); /* Поворот стрелок вниз */
        margin: 10px 0;
        animation: bounce-vertical 2s infinite ease-in-out; /* Анимация вверх-вниз */
    }
}

/* Анимация вверх-вниз */
@keyframes bounce-vertical {
    0%, 100% {
        transform: rotate(90deg) translateX(0); /* Начальное положение */
    }
    50% {
        transform: rotate(90deg) translateX(-10px); /* Движение вверх */
    }
}
