
        .neon-text {
            color: var(--light-text);
            text-shadow: 0 0 10px rgba(228, 0, 43, 0.5),
                         0 0 20px rgba(228, 0, 43, 0.3);
            font-weight: bold;
        }

        .order-btn {
            background-color: var(--primary-red);
            color: var(--light-text);
            border: none;
            padding: 10px 25px;
            border-radius: 25px;
            text-transform: uppercase;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 0 15px rgba(228, 0, 43, 0.3);
        }

        .order-btn:hover {
            transform: scale(1.05);
            background-color: #ff0033;
            color: var(--light-text);
        }

        .step-circle {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            border: 2px dashed var(--light-text);
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
        }

        .step-icon {
            font-size: 2.5rem;
            color: var(--primary-red);
        }

        .step-arrow {
            color: var(--primary-red);
            font-size: 2rem;
            margin-top: 40px;
        }

        .neon-box {
            border: 2px solid var(--primary-red);
            box-shadow: 0 0 15px rgba(228, 0, 43, 0.3);
            border-radius: 10px;
            padding: 2rem;
            background-color: rgba(228, 0, 43, 0.05);
        }

        .product-image {
            max-width: 100%;
            height: auto;
            /*transform: rotate(-15deg);*/
            /*margin-top: 1rem;*/
        }
