{"$schema":"https://ui.shadcn.com/schema/registry-item.json","name":"ecommerce-product-features-alternating-features","type":"registry:block","title":"Alternating Features","files":[{"path":"components/blocks/ecommerce/product-features/alternating-features.tsx","content":"import { Button } from '@/components/ui/button';\n\nexport default function AlternatingFeatures() {\n  const features = [\n    {\n      title: 'Immersive Sound Experience',\n      description:\n        'Advanced acoustic architecture with precision-tuned drivers delivers stunning clarity and depth. Experience music as the artist intended with detailed highs, rich mids, and powerful bass response.',\n      image:\n        'https://images.unsplash.com/photo-1593359677879-a4bb92f829d1?q=80&w=2070&auto=format&fit=crop',\n      alt: 'Premium headphones with acoustic detail',\n      align: 'right',\n    },\n    {\n      title: 'Active Noise Cancellation',\n      description:\n        'Our proprietary noise cancellation technology uses multiple microphones to monitor unwanted ambient sounds and counteract them with equal anti-noise. Enjoy music in noisy environments without raising the volume.',\n      image:\n        'https://images.unsplash.com/photo-1590658268037-6bf12165a8df?q=80&w=2069&auto=format&fit=crop',\n      alt: 'Noise cancellation technology visualization',\n      align: 'left',\n    },\n    {\n      title: 'Premium Materials & Comfort',\n      description:\n        'Crafted with memory foam ear cushions covered in buttery-soft leather and a lightweight yet durable aluminum frame. Designed for extended listening sessions without fatigue or discomfort.',\n      image:\n        'https://images.unsplash.com/photo-1546435770-a3e426bf472b?q=80&w=2065&auto=format&fit=crop',\n      alt: 'Premium headphone materials close-up',\n      align: 'right',\n    },\n    {\n      title: '30-Hour Battery Life',\n      description:\n        \"Extended listening time with up to 30 hours of playback on a single charge. Quick-charge technology provides 5 hours of playback with just 10 minutes of charging when you're in a hurry.\",\n      image:\n        'https://images.unsplash.com/photo-1505740420928-5e560c06d30e?q=80&w=2070&auto=format&fit=crop',\n      alt: 'Headphones with battery indicator',\n      align: 'left',\n    },\n  ];\n\n  return (\n    <section className=\"bg-background w-full py-12 md:py-24 lg:py-32\">\n      <div className=\"container mx-auto px-4 md:px-6 2xl:max-w-[1400px]\">\n        <div className=\"flex flex-col items-center justify-center space-y-4 text-center\">\n          <div className=\"space-y-2\">\n            <div className=\"bg-primary/10 text-primary inline-block rounded-full px-3 py-1 text-sm\">\n              Premium Audio Technology\n            </div>\n            <h2 className=\"text-3xl font-bold tracking-tighter sm:text-4xl md:text-5xl\">\n              Experience sound like never before\n            </h2>\n            <p className=\"text-muted-foreground max-w-[800px] md:text-xl/relaxed\">\n              Our flagship headphones combine cutting-edge technology with\n              premium materials to deliver an exceptional listening experience.\n            </p>\n          </div>\n        </div>\n\n        <div className=\"mt-16 space-y-24\">\n          {features.map((feature, index) => (\n            <div\n              key={index}\n              className={`flex flex-col gap-8 lg:gap-12 ${\n                feature.align === 'left' ? 'lg:flex-row' : 'lg:flex-row-reverse'\n              } items-center`}\n            >\n              {/* Image section */}\n              <div className=\"w-full lg:w-1/2\">\n                <div className=\"bg-background relative aspect-[4/3] overflow-hidden rounded-xl border shadow-xl\">\n                  <img\n                    src={feature.image}\n                    alt={feature.alt}\n                    className=\"object-cover\"\n                    sizes=\"(max-width: 768px) 100vw, 50vw\"\n                  />\n                  <div className=\"absolute inset-0 rounded-xl ring-1 ring-black/10 ring-inset\"></div>\n\n                  {/* Accent elements */}\n                  <div\n                    className={`absolute ${\n                      feature.align === 'left'\n                        ? '-right-5 -bottom-5'\n                        : '-bottom-5 -left-5'\n                    } bg-primary/30 h-16 w-16 rounded-full blur-xl`}\n                  ></div>\n                </div>\n              </div>\n\n              {/* Content section */}\n              <div className=\"flex w-full flex-col space-y-4 lg:w-1/2\">\n                <div className=\"space-y-2\">\n                  <h3 className=\"text-2xl font-bold tracking-tight sm:text-3xl\">\n                    {feature.title}\n                  </h3>\n                  <p className=\"text-muted-foreground md:text-lg/relaxed\">\n                    {feature.description}\n                  </p>\n                </div>\n\n                <div className=\"pt-4\">\n                  <Button variant=\"outline\" size=\"sm\" asChild>\n                    <a href=\"#\">Learn more</a>\n                  </Button>\n                </div>\n              </div>\n            </div>\n          ))}\n        </div>\n\n        <div className=\"mt-24 flex flex-col items-center justify-center space-y-4\">\n          <div className=\"bg-card flex flex-col items-center space-y-4 rounded-xl border p-6 text-center shadow-sm sm:p-10\">\n            <h3 className=\"text-2xl font-bold\">\n              Ready for an exceptional audio experience?\n            </h3>\n            <p className=\"text-muted-foreground max-w-[600px]\">\n              Our headphones come with a 45-day risk-free trial and a 2-year\n              warranty.\n            </p>\n            <div className=\"flex flex-col gap-3 pt-4 sm:flex-row\">\n              <Button size=\"lg\" asChild>\n                <a href=\"#\">Shop Now</a>\n              </Button>\n              <Button size=\"lg\" variant=\"outline\" asChild>\n                <a href=\"#\">View All Features</a>\n              </Button>\n            </div>\n          </div>\n        </div>\n      </div>\n    </section>\n  );\n}\n","type":"registry:component","target":"components/blocks/ecommerce/product-features/alternating-features.tsx"},{"path":"components/ui/button.tsx","content":"import * as React from \"react\"\nimport { cva, type VariantProps } from \"class-variance-authority\"\nimport { Slot } from \"radix-ui\"\n\nimport { cn } from \"@/lib/utils\"\n\nconst buttonVariants = cva(\n  \"group/button inline-flex shrink-0 items-center justify-center rounded-md border border-transparent bg-clip-padding text-sm font-medium whitespace-nowrap transition-all outline-none select-none focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 active:not-aria-[haspopup]:translate-y-px disabled:pointer-events-none disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4\",\n  {\n    variants: {\n      variant: {\n        default: \"bg-primary text-primary-foreground hover:bg-primary/80\",\n        outline:\n          \"border-border bg-background shadow-xs hover:bg-muted hover:text-foreground aria-expanded:bg-muted aria-expanded:text-foreground dark:border-input dark:bg-input/30 dark:hover:bg-input/50\",\n        secondary:\n          \"bg-secondary text-secondary-foreground hover:bg-secondary/80 aria-expanded:bg-secondary aria-expanded:text-secondary-foreground\",\n        ghost:\n          \"hover:bg-muted hover:text-foreground aria-expanded:bg-muted aria-expanded:text-foreground dark:hover:bg-muted/50\",\n        destructive:\n          \"bg-destructive/10 text-destructive hover:bg-destructive/20 focus-visible:border-destructive/40 focus-visible:ring-destructive/20 dark:bg-destructive/20 dark:hover:bg-destructive/30 dark:focus-visible:ring-destructive/40\",\n        link: \"text-primary underline-offset-4 hover:underline\",\n      },\n      size: {\n        default:\n          \"h-9 gap-1.5 px-2.5 in-data-[slot=button-group]:rounded-md has-data-[icon=inline-end]:pr-2 has-data-[icon=inline-start]:pl-2\",\n        xs: \"h-6 gap-1 rounded-[min(var(--radius-md),8px)] px-2 text-xs in-data-[slot=button-group]:rounded-md has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 [&_svg:not([class*='size-'])]:size-3\",\n        sm: \"h-8 gap-1 rounded-[min(var(--radius-md),10px)] px-2.5 in-data-[slot=button-group]:rounded-md has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5\",\n        lg: \"h-10 gap-1.5 px-2.5 has-data-[icon=inline-end]:pr-2 has-data-[icon=inline-start]:pl-2\",\n        icon: \"size-9\",\n        \"icon-xs\":\n          \"size-6 rounded-[min(var(--radius-md),8px)] in-data-[slot=button-group]:rounded-md [&_svg:not([class*='size-'])]:size-3\",\n        \"icon-sm\":\n          \"size-8 rounded-[min(var(--radius-md),10px)] in-data-[slot=button-group]:rounded-md\",\n        \"icon-lg\": \"size-10\",\n      },\n    },\n    defaultVariants: {\n      variant: \"default\",\n      size: \"default\",\n    },\n  }\n)\n\nfunction Button({\n  className,\n  variant = \"default\",\n  size = \"default\",\n  asChild = false,\n  ...props\n}: React.ComponentProps<\"button\"> &\n  VariantProps<typeof buttonVariants> & {\n    asChild?: boolean\n  }) {\n  const Comp = asChild ? Slot.Root : \"button\"\n\n  return (\n    <Comp\n      data-slot=\"button\"\n      data-variant={variant}\n      data-size={size}\n      className={cn(buttonVariants({ variant, size, className }))}\n      {...props}\n    />\n  )\n}\n\nexport { Button, buttonVariants }\n","type":"registry:ui","target":"components/ui/button.tsx"}],"description":"Stacked rows that flip image and text from left to right as you scroll. Walks shoppers through key product benefits one clear section at a time.","dependencies":["class-variance-authority","radix-ui"]}