{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "create-block/features-section",
  "version": "1.0.0",
  "title": "Features Section",
  "category": "section-blocks",
  "icon": "grid-view",
  "description": "A beautiful features section with icons, headings, descriptions, and optional side image. Supports 3-6 columns layout with hover effects.",
  "keywords": [
    "features",
    "services",
    "grid",
    "columns",
    "icons"
  ],
  "example": {
    "attributes": {
      "features": [
        {
          "icon": "star-filled",
          "heading": "Premium Quality",
          "description": "We deliver exceptional quality in everything we do."
        },
        {
          "icon": "shield",
          "heading": "Secure & Safe",
          "description": "Your data and privacy are our top priorities."
        },
        {
          "icon": "clock",
          "heading": "24/7 Support",
          "description": "Round-the-clock assistance whenever you need it."
        }
      ],
      "columns": 3
    }
  },
  "attributes": {
    "features": {
      "type": "array",
      "default": [
        {
          "icon": "star-filled",
          "heading": "Feature One",
          "description": "Describe your amazing feature here."
        },
        {
          "icon": "shield",
          "heading": "Feature Two",
          "description": "Describe your amazing feature here."
        },
        {
          "icon": "clock",
          "heading": "Feature Three",
          "description": "Describe your amazing feature here."
        }
      ]
    },
    "columns": {
      "type": "number",
      "default": 3,
      "minimum": 3,
      "maximum": 6
    },
    "showSideImage": {
      "type": "boolean",
      "default": false
    },
    "sideImage": {
      "type": "object",
      "default": null
    },
    "sideImageId": {
      "type": "number",
      "default": 0
    },
    "sideImagePosition": {
      "type": "string",
      "default": "right"
    },
    "backgroundColor": {
      "type": "string",
      "default": "#ffffff"
    },
    "textColor": {
      "type": "string",
      "default": "#333333"
    },
    "iconColor": {
      "type": "string",
      "default": "#007cba"
    },
    "hoverEffect": {
      "type": "string",
      "default": "lift"
    },
    "spacing": {
      "type": "string",
      "default": "normal"
    }
  },
  "supports": {
    "html": false,
    "align": [
      "wide",
      "full"
    ],
    "spacing": {
      "padding": true,
      "margin": true
    }
  },
  "textdomain": "section-blocks",
  "editorScript": "file:./index.js",
  "editorStyle": "file:./index.css",
  "style": "file:./style-index.css",
  "render": "file:./render.php"
}