/** Shopify CDN: Minification failed

Line 15:18 Unexpected "\"react\""
Line 16:13 Expected ":"
Line 16:34 Unexpected "\"@/components/ui/card\""
Line 17:15 Expected ":"
Line 17:23 Unexpected "\"@/components/ui/button\""
Line 18:13 Expected ":"
Line 18:46 Unexpected "\"lucide-react\""
Line 19:15 Expected ":"
Line 19:23 Unexpected "\"framer-motion\""
Line 22:8 Expected ":"

**/
import React from "react";
import { Card, CardContent } from "@/components/ui/card";
import { Button } from "@/components/ui/button";
import { Star, Truck, ShieldCheck, Zap } from "lucide-react";
import { motion } from "framer-motion";

export default function MiniHairStraightenerLandingPage() {
  return (
    <div className="min-h-screen bg-neutral-50 text-neutral-900 p-6 md:p-10">
      <div className="max-w-6xl mx-auto space-y-10">
        {/* Hero */}
        <motion.section
          initial={{ opacity: 0, y: 20 }}
          animate={{ opacity: 1, y: 0 }}
          transition={{ duration: 0.6 }}
          className="grid md:grid-cols-2 gap-8 items-center"
        >
          <div className="space-y-6">
            <p className="text-sm font-medium uppercase tracking-wide">
              Portátil • Recargable • Sin Cable
            </p>
            <h1 className="text-4xl md:text-6xl font-bold leading-tight">
              Mini Hair Straightener
            </h1>
            <p className="text-lg text-neutral-600">
              Cepillo alisador inalámbrico con 3 niveles de temperatura,
              calentamiento rápido en 30 segundos y diseño portátil ideal para
              casa, oficina o viaje.
            </p>

            <div className="flex items-center gap-4">
              <span className="text-4xl font-bold">$79</span>
              <span className="text-xl line-through text-neutral-400">$99</span>
            </div>

            <div className="flex flex-wrap gap-4">
              <Button className="rounded-2xl px-8 py-6 text-base">
                Comprar Ahora
              </Button>
              <Button variant="outline" className="rounded-2xl px-8 py-6 text-base">
                Ver Detalles
              </Button>
            </div>
          </div>

          <Card className="rounded-3xl shadow-lg border-0">
            <CardContent className="p-6">
              <img
                src="https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9"
                alt="Mini Hair Straightener"
                className="w-full h-[500px] object-cover rounded-2xl"
              />
            </CardContent>
          </Card>
        </motion.section>

        {/* Benefits */}
        <section className="grid md:grid-cols-4 gap-4">
          {[
            {
              icon: <Zap className="w-6 h-6" />,
              title: "30s Heating",
              text: "Calentamiento ultra rápido",
            },
            {
              icon: <ShieldCheck className="w-6 h-6" />,
              title: "Safe Design",
              text: "Protección anti quemaduras",
            },
            {
              icon: <Truck className="w-6 h-6" />,
              title: "Free Shipping",
              text: "Envío gratis a todo el país",
            },
            {
              icon: <Star className="w-6 h-6" />,
              title: "Top Rated",
              text: "Favorito de nuestras clientas",
            },
          ].map((item, index) => (
            <Card key={index} className="rounded-2xl shadow-sm">
              <CardContent className="p-6 space-y-3">
                {item.icon}
                <h3 className="font-semibold text-lg">{item.title}</h3>
                <p className="text-sm text-neutral-600">{item.text}</p>
              </CardContent>
            </Card>
          ))}
        </section>

        {/* Features */}
        <section className="grid md:grid-cols-2 gap-8 items-center">
          <div>
            <img
              src="https://images.unsplash.com/photo-1515377905703-c4788e51af15"
              alt="Hair styling"
              className="rounded-3xl shadow-lg w-full h-[450px] object-cover"
            />
          </div>

          <div className="space-y-5">
            <h2 className="text-3xl font-bold">¿Por qué elegirlo?</h2>
            <ul className="space-y-4 text-neutral-700">
              <li>✔ 3 niveles de temperatura ajustables</li>
              <li>✔ Tecnología cerámica iónica anti-frizz</li>
              <li>✔ Diseño mini ideal para bolso o cartera</li>
              <li>✔ Batería recargable USB</li>
              <li>✔ Perfecto para retoques rápidos en cualquier lugar</li>
            </ul>
          </div>
        </section>

        {/* CTA */}
        <section className="text-center bg-white rounded-3xl shadow-md p-10 space-y-6">
          <h2 className="text-3xl md:text-4xl font-bold">
            Lleva tu alisado a cualquier lugar
          </h2>
          <p className="text-neutral-600 max-w-2xl mx-auto">
            Ideal para mujeres que buscan practicidad, estilo y resultados
            rápidos sin depender de cables.
          </p>
          <Button className="rounded-2xl px-10 py-6 text-lg">
            Ordenar Ahora
          </Button>
        </section>
      </div>
    </div>
  );
}
