{"$schema":"https://ui.shadcn.com/schema/registry-item.json","name":"ecommerce-product-overview-immersive-overview","type":"registry:block","title":"Immersive Overview","files":[{"path":"components/blocks/ecommerce/product-overview/immersive-overview.tsx","content":"import { Button } from \"@/components/ui/button\";\nimport { Tabs, TabsContent, TabsList, TabsTrigger } from \"@/components/ui/tabs\";\nimport { Heart, Share2, Star, Play, ChevronRight } from \"lucide-react\";\n\nexport default function ImmersiveOverview() {\n  return (\n    <div className=\"w-full\">\n      {/* Hero Section */}\n      <div className=\"relative h-[30vh] md:h-[50vh] lg:h-[70vh] bg-muted\">\n        <img\n          src=\"https://images.unsplash.com/photo-1523275335684-37898b6baf30\"\n          alt=\"Modern watch with leather strap - Hero\"\n          className=\"object-cover w-full h-full\"\n        />\n        <div className=\"absolute inset-0 bg-gradient-to-t from-background to-transparent\"></div>\n\n        {/* Quick Actions */}\n        <div className=\"absolute top-6 right-6 flex gap-2\">\n          <Button\n            size=\"icon\"\n            variant=\"outline\"\n            className=\"rounded-full bg-background/80 backdrop-blur-sm\"\n          >\n            <Share2 className=\"h-5 w-5\" />\n          </Button>\n          <Button\n            size=\"icon\"\n            variant=\"outline\"\n            className=\"rounded-full bg-background/80 backdrop-blur-sm\"\n          >\n            <Heart className=\"h-5 w-5\" />\n          </Button>\n        </div>\n\n        {/* Video Preview */}\n        <Button\n          size=\"icon\"\n          variant=\"outline\"\n          className=\"absolute top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 h-16 w-16 rounded-full bg-background/80 backdrop-blur-sm\"\n        >\n          <Play className=\"h-8 w-8\" />\n        </Button>\n      </div>\n\n      {/* Product Info */}\n      <div className=\"max-w-7xl mx-auto px-6 -mt-20 relative z-10\">\n        <div className=\"bg-background border rounded-2xl p-8 shadow-lg\">\n          <div className=\"grid grid-cols-1 lg:grid-cols-3 gap-12\">\n            {/* Main Info */}\n            <div className=\"lg:col-span-2\">\n              <div className=\"flex items-center gap-4 mb-4\">\n                <span className=\"px-3 py-1 bg-primary/10 text-primary rounded-full text-sm font-medium\">\n                  Limited Edition\n                </span>\n                <div className=\"flex items-center gap-1\">\n                  <div className=\"flex\">\n                    {[...Array(5)].map((_, i) => (\n                      <Star\n                        key={i}\n                        className=\"h-4 w-4 fill-primary text-primary\"\n                      />\n                    ))}\n                  </div>\n                  <span className=\"text-sm font-medium\">4.9</span>\n                  <span className=\"text-sm text-muted-foreground\">(128)</span>\n                </div>\n              </div>\n\n              <h1 className=\"text-4xl font-bold mb-4\">Classic Leather Watch</h1>\n\n              <div className=\"flex items-baseline gap-4 mb-6\">\n                <span className=\"text-3xl font-bold\">$299.00</span>\n                <span className=\"text-lg text-muted-foreground line-through\">\n                  $399.00\n                </span>\n                <span className=\"text-sm font-medium text-green-600\">\n                  Save 25%\n                </span>\n              </div>\n\n              <Tabs defaultValue=\"overview\" className=\"mb-8\">\n                <TabsList>\n                  <TabsTrigger value=\"overview\">Overview</TabsTrigger>\n                  <TabsTrigger value=\"details\">Details</TabsTrigger>\n                  <TabsTrigger value=\"care\">Care</TabsTrigger>\n                </TabsList>\n                <TabsContent value=\"overview\" className=\"mt-4\">\n                  <div className=\"prose dark:prose-invert\">\n                    <p>\n                      Elevate your style with our Classic Leather Watch.\n                      Featuring premium materials, precise movement, and\n                      timeless design that complements any outfit.\n                    </p>\n                    <ul>\n                      <li>Swiss-made movement for precise timekeeping</li>\n                      <li>Genuine leather strap with classic buckle</li>\n                      <li>Sapphire crystal glass for durability</li>\n                      <li>Water-resistant up to 30 meters</li>\n                    </ul>\n                  </div>\n                </TabsContent>\n                <TabsContent value=\"details\" className=\"mt-4\">\n                  <div className=\"grid grid-cols-2 gap-4 text-sm\">\n                    <div>\n                      <span className=\"font-medium\">Case Material</span>\n                      <p className=\"text-muted-foreground\">\n                        316L Stainless Steel\n                      </p>\n                    </div>\n                    <div>\n                      <span className=\"font-medium\">Movement</span>\n                      <p className=\"text-muted-foreground\">Swiss Automatic</p>\n                    </div>\n                    <div>\n                      <span className=\"font-medium\">Crystal</span>\n                      <p className=\"text-muted-foreground\">Sapphire</p>\n                    </div>\n                    <div>\n                      <span className=\"font-medium\">Water Resistance</span>\n                      <p className=\"text-muted-foreground\">30 Meters</p>\n                    </div>\n                  </div>\n                </TabsContent>\n                <TabsContent value=\"care\" className=\"mt-4\">\n                  <div className=\"space-y-4 text-sm text-muted-foreground\">\n                    <p>\n                      To ensure the longevity of your watch, follow these care\n                      instructions:\n                    </p>\n                    <ul className=\"list-disc list-inside space-y-2\">\n                      <li>Clean regularly with a soft, dry cloth</li>\n                      <li>Avoid exposure to extreme temperatures</li>\n                      <li>Service every 3-5 years by a certified watchmaker</li>\n                      <li>Store in a watch box when not in use</li>\n                    </ul>\n                  </div>\n                </TabsContent>\n              </Tabs>\n            </div>\n\n            {/* Purchase Options */}\n            <div>\n              <div className=\"bg-muted p-6 rounded-xl mb-6\">\n                <h3 className=\"font-medium mb-4\">Select Options</h3>\n                <div className=\"space-y-4\">\n                  <div>\n                    <span className=\"text-sm font-medium\">Color</span>\n                    <div className=\"flex gap-2 mt-2\">\n                      <button className=\"w-8 h-8 rounded-full bg-black ring-2 ring-offset-2 ring-black\"></button>\n                      <button className=\"w-8 h-8 rounded-full bg-brown-500\"></button>\n                      <button className=\"w-8 h-8 rounded-full bg-slate-200\"></button>\n                    </div>\n                  </div>\n                  <div>\n                    <span className=\"text-sm font-medium\">Size</span>\n                    <div className=\"grid grid-cols-3 gap-2 mt-2\">\n                      <Button variant=\"outline\" size=\"sm\">\n                        38mm\n                      </Button>\n                      <Button variant=\"outline\" size=\"sm\">\n                        42mm\n                      </Button>\n                      <Button variant=\"outline\" size=\"sm\">\n                        44mm\n                      </Button>\n                    </div>\n                  </div>\n                </div>\n              </div>\n\n              <Button className=\"w-full mb-3\" size=\"lg\">\n                Add to Cart\n              </Button>\n              <Button variant=\"outline\" className=\"w-full\" size=\"lg\">\n                Buy Now\n              </Button>\n\n              <div className=\"mt-6 space-y-3\">\n                <Button variant=\"ghost\" className=\"w-full justify-between\">\n                  Shipping Information\n                  <ChevronRight className=\"h-4 w-4\" />\n                </Button>\n                <Button variant=\"ghost\" className=\"w-full justify-between\">\n                  Return Policy\n                  <ChevronRight className=\"h-4 w-4\" />\n                </Button>\n                <Button variant=\"ghost\" className=\"w-full justify-between\">\n                  Size Guide\n                  <ChevronRight className=\"h-4 w-4\" />\n                </Button>\n              </div>\n            </div>\n          </div>\n        </div>\n      </div>\n\n      {/* Additional Images */}\n      <div className=\"max-w-7xl mx-auto px-6 py-12\">\n        <div className=\"grid grid-cols-2 md:grid-cols-4 gap-4\">\n          {[1, 2, 3, 4].map((i) => (\n            <div\n              key={i}\n              className=\"aspect-square bg-muted rounded-lg overflow-hidden\"\n            >\n              <img\n                src=\"https://images.unsplash.com/photo-1523275335684-37898b6baf30\"\n                alt={`Product view ${i}`}\n                className=\"object-cover w-full h-full hover:scale-105 transition-transform\"\n              />\n            </div>\n          ))}\n        </div>\n      </div>\n    </div>\n  );\n}\n","type":"registry:component","target":"components/blocks/ecommerce/product-overview/immersive-overview.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"},{"path":"components/ui/tabs.tsx","content":"\"use client\"\n\nimport * as React from \"react\"\nimport { cva, type VariantProps } from \"class-variance-authority\"\nimport { Tabs as TabsPrimitive } from \"radix-ui\"\n\nimport { cn } from \"@/lib/utils\"\n\nfunction Tabs({\n  className,\n  orientation = \"horizontal\",\n  ...props\n}: React.ComponentProps<typeof TabsPrimitive.Root>) {\n  return (\n    <TabsPrimitive.Root\n      data-slot=\"tabs\"\n      data-orientation={orientation}\n      className={cn(\n        \"group/tabs flex gap-2 data-horizontal:flex-col\",\n        className\n      )}\n      {...props}\n    />\n  )\n}\n\nconst tabsListVariants = cva(\n  \"group/tabs-list inline-flex w-fit items-center justify-center rounded-lg p-[3px] text-muted-foreground group-data-horizontal/tabs:h-9 group-data-vertical/tabs:h-fit group-data-vertical/tabs:flex-col data-[variant=line]:rounded-none\",\n  {\n    variants: {\n      variant: {\n        default: \"bg-muted\",\n        line: \"gap-1 bg-transparent\",\n      },\n    },\n    defaultVariants: {\n      variant: \"default\",\n    },\n  }\n)\n\nfunction TabsList({\n  className,\n  variant = \"default\",\n  ...props\n}: React.ComponentProps<typeof TabsPrimitive.List> &\n  VariantProps<typeof tabsListVariants>) {\n  return (\n    <TabsPrimitive.List\n      data-slot=\"tabs-list\"\n      data-variant={variant}\n      className={cn(tabsListVariants({ variant }), className)}\n      {...props}\n    />\n  )\n}\n\nfunction TabsTrigger({\n  className,\n  ...props\n}: React.ComponentProps<typeof TabsPrimitive.Trigger>) {\n  return (\n    <TabsPrimitive.Trigger\n      data-slot=\"tabs-trigger\"\n      className={cn(\n        \"relative inline-flex h-[calc(100%-1px)] flex-1 items-center justify-center gap-1.5 rounded-md border border-transparent px-2 py-1 text-sm font-medium whitespace-nowrap text-foreground/60 transition-all group-data-vertical/tabs:w-full group-data-vertical/tabs:justify-start hover:text-foreground focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 focus-visible:outline-1 focus-visible:outline-ring disabled:pointer-events-none disabled:opacity-50 has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 dark:text-muted-foreground dark:hover:text-foreground group-data-[variant=default]/tabs-list:data-active:shadow-sm group-data-[variant=line]/tabs-list:data-active:shadow-none [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4\",\n        \"group-data-[variant=line]/tabs-list:bg-transparent group-data-[variant=line]/tabs-list:data-active:bg-transparent dark:group-data-[variant=line]/tabs-list:data-active:border-transparent dark:group-data-[variant=line]/tabs-list:data-active:bg-transparent\",\n        \"data-active:bg-background data-active:text-foreground dark:data-active:border-input dark:data-active:bg-input/30 dark:data-active:text-foreground\",\n        \"after:absolute after:bg-foreground after:opacity-0 after:transition-opacity group-data-horizontal/tabs:after:inset-x-0 group-data-horizontal/tabs:after:bottom-[-5px] group-data-horizontal/tabs:after:h-0.5 group-data-vertical/tabs:after:inset-y-0 group-data-vertical/tabs:after:-right-1 group-data-vertical/tabs:after:w-0.5 group-data-[variant=line]/tabs-list:data-active:after:opacity-100\",\n        className\n      )}\n      {...props}\n    />\n  )\n}\n\nfunction TabsContent({\n  className,\n  ...props\n}: React.ComponentProps<typeof TabsPrimitive.Content>) {\n  return (\n    <TabsPrimitive.Content\n      data-slot=\"tabs-content\"\n      className={cn(\"flex-1 text-sm outline-none\", className)}\n      {...props}\n    />\n  )\n}\n\nexport { Tabs, TabsList, TabsTrigger, TabsContent, tabsListVariants }\n","type":"registry:ui","target":"components/ui/tabs.tsx"}],"description":"A full bleed product page with edge to edge imagery, floating details, and a sticky buy bar. Best for premium goods that sell on visual impact.","dependencies":["class-variance-authority","lucide-react","radix-ui"]}