 /* Специфические стили для страницы благодарности */
main {
 min-height: 95vh !important;
display: flex;
flex-direction: column;
justify-content: center; /* Центрируем иконку и текст заказа */
}
.thanks-main {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 65vh;
text-align: center;
padding: 160px 20px;
}

.success-visual {
            font-size: 5rem;
            margin-bottom: 30px;
            animation: bounce 2s infinite ease-in-out;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        .thanks-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 3rem;
            text-transform: uppercase;
            color: var(--brand-dark);
            margin-bottom: 15px;
        }

        .thanks-text {
            font-size: 1.1rem;
            color: #555;
            max-width: 600px;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .home-btn {
            display: inline-block;
            padding: 18px 40px;
            background: var(--brand-dark);
            color: white;
            text-decoration: none;
            font-weight: 800;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    line-height: 1.2 !important; /* Убирает вертикальный перекос текста */
}

        .home-btn:hover {
            background: var(--magenta);
            transform: translateY(-3px);
            box-shadow: 0 15px 25px rgba(255, 0, 255, 0.2);
        }