{"$schema":"https://ui.shadcn.com/schema/registry-item.json","name":"ecommerce-ecommerce-trust-guarantee-checklist","type":"registry:block","title":"Checklist","files":[{"path":"components/blocks/ecommerce/ecommerce-trust-guarantee/checklist.tsx","content":"import { Check } from \"lucide-react\";\n\nexport default function TrustGuaranteeChecklist() {\n  const trustItems = [\n    {\n      title: \"Money-Back Guarantee\",\n      description: \"30-day hassle-free returns\",\n    },\n    {\n      title: \"Verified Payments\",\n      description: \"SSL encrypted & secure checkout\",\n    },\n    {\n      title: \"Easy Returns\",\n      description: \"Free return shipping included\",\n    },\n    {\n      title: \"Fast Shipping\",\n      description: \"Free delivery on orders over $50\",\n    },\n    {\n      title: \"Secure Transactions\",\n      description: \"Protected by industry standards\",\n    },\n    {\n      title: \"24/7 Support\",\n      description: \"Always here to help you\",\n    },\n  ];\n\n  return (\n    <div className=\"px-4 py-8 md:py-12\">\n      <div className=\"mx-auto max-w-4xl\">\n        <div className=\"mb-8 text-center\">\n          <h2 className=\"mb-2 text-2xl font-bold md:text-3xl\">\n            Shop with Confidence\n          </h2>\n          <p className=\"text-muted-foreground\">\n            Your satisfaction is our guarantee\n          </p>\n        </div>\n\n        <div className=\"grid grid-cols-1 gap-4 md:grid-cols-2 md:gap-6\">\n          {trustItems.map((item, index) => {\n            return (\n              <div\n                key={index}\n                className=\"bg-card flex items-start gap-3 rounded-lg border p-4\"\n              >\n                <div className=\"bg-primary mt-0.5 flex h-6 w-6 flex-shrink-0 items-center justify-center rounded-full\">\n                  <Check className=\"text-primary-foreground h-4 w-4\" />\n                </div>\n                <div className=\"flex flex-1 items-start gap-3\">\n                  <div className=\"min-w-0 flex-1\">\n                    <h3 className=\"text-sm leading-tight font-semibold md:text-base\">\n                      {item.title}\n                    </h3>\n                    <p className=\"text-muted-foreground mt-1 text-sm leading-relaxed\">\n                      {item.description}\n                    </p>\n                  </div>\n                </div>\n              </div>\n            );\n          })}\n        </div>\n\n        <div className=\"mt-8 text-center\">\n          <p className=\"text-muted-foreground text-sm\">\n            Questions about our policies?{\" \"}\n            <span className=\"text-primary cursor-pointer font-medium hover:underline\">\n              Contact our support team\n            </span>\n          </p>\n        </div>\n      </div>\n    </div>\n  );\n}\n","type":"registry:component","target":"components/blocks/ecommerce/ecommerce-trust-guarantee/checklist.tsx"}],"description":"A vertical checklist of product promises with check icons and short labels. Use it on a product page to spell out exactly what every order includes.","dependencies":["lucide-react"]}