{"product_id":"wooden-tic-tac-toe","title":"Wooden Tic Tac Toe","description":"\u003cp\u003e\u003cmeta charset=\"UTF-8\"\u003e \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400\u0026amp;family=DM+Sans:wght@300;400;500\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\u003c\/p\u003e\n\u003cstyle\u003e\n  :root {\n    --forest:    #2D5016;\n    --leaf:      #4A7C2F;\n    --sage:      #7BAD5A;\n    --mint:      #C8E6B2;\n    --cream:     #F8F4EC;\n    --warm-white:#FDFAF5;\n    --oak:       #A0722A;\n    --oak-light: #C8963C;\n    --wood-pale: #E8D5B0;\n    --charcoal:  #1E1E1E;\n    --muted:     #6B6560;\n    --divider:   rgba(74,124,47,0.2);\n    --x-color:   #D94F3D;\n    --o-color:   #2E86C1;\n  }\n\n  * { margin:0; padding:0; box-sizing:border-box; }\n\n  body {\n    font-family: 'DM Sans', sans-serif;\n    background: var(--warm-white);\n    color: var(--charcoal);\n    line-height: 1.7;\n  }\n\n  \/* ── HERO ── *\/\n  .hero {\n    background: linear-gradient(150deg, #1A3A0A 0%, #2D5016 45%, #4A7C2F 100%);\n    padding: 60px 32px 56px;\n    text-align: center;\n    position: relative;\n    overflow: hidden;\n  }\n\n  \/* Subtle grid pattern evoking the game board *\/\n  .hero::before {\n    content: '';\n    position: absolute;\n    inset: 0;\n    background-image:\n      linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),\n      linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);\n    background-size: 60px 60px;\n  }\n\n  .hero::after {\n    content: '';\n    position: absolute;\n    inset: 0;\n    background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(200,230,178,0.10) 0%, transparent 65%);\n  }\n\n  .hero-badge {\n    display: inline-block;\n    font-size: 10px;\n    font-weight: 500;\n    letter-spacing: 4px;\n    text-transform: uppercase;\n    color: var(--mint);\n    border: 1px solid rgba(200,230,178,0.4);\n    padding: 5px 18px;\n    border-radius: 2px;\n    margin-bottom: 20px;\n    position: relative;\n    z-index: 1;\n  }\n\n  .hero h1 {\n    font-family: 'Playfair Display', serif;\n    font-size: clamp(30px, 5vw, 52px);\n    font-weight: 700;\n    color: #FDFAF5;\n    line-height: 1.15;\n    position: relative;\n    z-index: 1;\n    max-width: 600px;\n    margin: 0 auto 12px;\n  }\n\n  .hero h1 em {\n    font-style: italic;\n    color: var(--mint);\n  }\n\n  .hero-sub {\n    font-size: 12px;\n    font-weight: 300;\n    letter-spacing: 3px;\n    text-transform: uppercase;\n    color: rgba(200,230,178,0.65);\n    position: relative;\n    z-index: 1;\n  }\n\n  \/* ── BOARD VISUAL ── *\/\n  .board-stage {\n    background: var(--cream);\n    padding: 52px 24px 48px;\n    display: flex;\n    justify-content: center;\n    align-items: center;\n    gap: 48px;\n    flex-wrap: wrap;\n    border-bottom: 1px solid var(--divider);\n  }\n\n  .board-wrap {\n    position: relative;\n  }\n\n  .board-wrap svg {\n    filter: drop-shadow(0 12px 32px rgba(45,80,22,0.22));\n    animation: boardFloat 5s ease-in-out infinite;\n  }\n\n  @keyframes boardFloat {\n    0%,100% { transform: translateY(0) rotate(-1deg); }\n    50%      { transform: translateY(-8px) rotate(1deg); }\n  }\n\n  .piece-x {\n    animation: popIn 0.4s cubic-bezier(0.34,1.56,0.64,1) both;\n  }\n  .piece-o {\n    animation: popIn 0.4s cubic-bezier(0.34,1.56,0.64,1) 0.15s both;\n  }\n\n  @keyframes popIn {\n    from { transform: scale(0); opacity: 0; }\n    to   { transform: scale(1); opacity: 1; }\n  }\n\n  .board-caption {\n    text-align: center;\n    margin-top: 14px;\n    font-size: 11px;\n    letter-spacing: 2.5px;\n    text-transform: uppercase;\n    color: var(--muted);\n  }\n\n  \/* Skills pills beside board *\/\n  .skill-pills {\n    display: flex;\n    flex-direction: column;\n    gap: 12px;\n    max-width: 230px;\n  }\n\n  .skill-pill {\n    display: flex;\n    align-items: center;\n    gap: 12px;\n    padding: 12px 16px;\n    background: var(--warm-white);\n    border-left: 3px solid var(--leaf);\n    box-shadow: 0 2px 10px rgba(45,80,22,0.08);\n    transition: transform 0.2s, box-shadow 0.2s;\n  }\n\n  .skill-pill:hover {\n    transform: translateX(4px);\n    box-shadow: 0 4px 16px rgba(45,80,22,0.14);\n  }\n\n  .skill-pill-icon {\n    width: 32px;\n    height: 32px;\n    background: linear-gradient(135deg, var(--forest), var(--leaf));\n    border-radius: 6px;\n    display: flex;\n    align-items: center;\n    justify-content: center;\n    flex-shrink: 0;\n    color: #fff;\n    font-size: 16px;\n  }\n\n  .skill-pill-text h4 {\n    font-size: 13px;\n    font-weight: 500;\n    color: var(--charcoal);\n    margin-bottom: 1px;\n  }\n\n  .skill-pill-text p {\n    font-size: 11px;\n    color: var(--muted);\n    font-weight: 300;\n    line-height: 1.4;\n  }\n\n  \/* ── LAYOUT WRAP ── *\/\n  .content-wrap {\n    max-width: 860px;\n    margin: 0 auto;\n    padding: 0 24px;\n  }\n\n  \/* ── INTRO ── *\/\n  .intro-section {\n    padding: 52px 0 44px;\n    text-align: center;\n    border-bottom: 1px solid var(--divider);\n  }\n\n  .intro-section p {\n    font-family: 'Playfair Display', serif;\n    font-size: clamp(17px, 2.4vw, 21px);\n    font-weight: 400;\n    color: var(--charcoal);\n    line-height: 1.8;\n    max-width: 650px;\n    margin: 0 auto;\n  }\n\n  .intro-section p em {\n    font-style: italic;\n    color: var(--leaf);\n  }\n\n  \/* ── SECTION HEADER ── *\/\n  .section-header {\n    display: flex;\n    align-items: center;\n    gap: 16px;\n    margin-bottom: 36px;\n  }\n\n  .section-header::before,\n  .section-header::after {\n    content: '';\n    flex: 1;\n    height: 1px;\n    background: var(--divider);\n  }\n\n  .section-title {\n    font-size: 10px;\n    font-weight: 500;\n    letter-spacing: 4px;\n    text-transform: uppercase;\n    color: var(--leaf);\n    white-space: nowrap;\n  }\n\n  \/* ── FEATURES ── *\/\n  .features-section {\n    padding: 52px 0 44px;\n    border-bottom: 1px solid var(--divider);\n  }\n\n  .features-grid {\n    display: grid;\n    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n    gap: 16px;\n  }\n\n  .feature-card {\n    background: var(--cream);\n    padding: 26px 22px;\n    border-radius: 4px;\n    border: 1px solid transparent;\n    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;\n    position: relative;\n    overflow: hidden;\n  }\n\n  .feature-card::before {\n    content: '';\n    position: absolute;\n    top: 0; left: 0;\n    width: 3px; height: 100%;\n    background: var(--leaf);\n    transform: scaleY(0);\n    transform-origin: bottom;\n    transition: transform 0.3s;\n  }\n\n  .feature-card:hover {\n    border-color: var(--divider);\n    transform: translateY(-3px);\n    box-shadow: 0 8px 24px rgba(45,80,22,0.12);\n  }\n\n  .feature-card:hover::before {\n    transform: scaleY(1);\n  }\n\n  .feat-emoji {\n    font-size: 26px;\n    margin-bottom: 12px;\n    display: block;\n    line-height: 1;\n  }\n\n  .feature-card h3 {\n    font-family: 'Playfair Display', serif;\n    font-size: 16px;\n    font-weight: 700;\n    color: var(--charcoal);\n    margin-bottom: 6px;\n  }\n\n  .feature-card p {\n    font-size: 13px;\n    color: var(--muted);\n    font-weight: 300;\n    line-height: 1.6;\n  }\n\n  \/* ── BENEFITS STRIP ── *\/\n  .benefits-strip {\n    background: linear-gradient(135deg, var(--forest), var(--leaf));\n    padding: 40px 32px;\n    display: flex;\n    justify-content: center;\n    gap: 0;\n    flex-wrap: wrap;\n  }\n\n  .benefit-item {\n    flex: 1;\n    min-width: 150px;\n    max-width: 200px;\n    text-align: center;\n    padding: 16px 12px;\n    border-right: 1px solid rgba(255,255,255,0.12);\n  }\n\n  .benefit-item:last-child {\n    border-right: none;\n  }\n\n  .benefit-num {\n    font-family: 'Playfair Display', serif;\n    font-size: 30px;\n    font-weight: 700;\n    color: var(--mint);\n    line-height: 1;\n    margin-bottom: 6px;\n    display: block;\n  }\n\n  .benefit-label {\n    font-size: 11px;\n    letter-spacing: 1.5px;\n    text-transform: uppercase;\n    color: rgba(200,230,178,0.75);\n    font-weight: 300;\n  }\n\n  \/* ── HOW TO PLAY ── *\/\n  .play-section {\n    padding: 52px 0 44px;\n    border-bottom: 1px solid var(--divider);\n  }\n\n  .steps-row {\n    display: flex;\n    gap: 0;\n    flex-wrap: wrap;\n    background: var(--cream);\n    border: 1px solid var(--divider);\n  }\n\n  .step {\n    flex: 1;\n    min-width: 160px;\n    padding: 28px 20px;\n    border-right: 1px solid var(--divider);\n    text-align: center;\n    transition: background 0.2s;\n  }\n\n  .step:last-child { border-right: none; }\n  .step:hover { background: var(--mint); }\n\n  .step-num {\n    width: 32px; height: 32px;\n    background: var(--forest);\n    color: #fff;\n    font-family: 'Playfair Display', serif;\n    font-size: 16px;\n    font-weight: 700;\n    border-radius: 50%;\n    display: flex;\n    align-items: center;\n    justify-content: center;\n    margin: 0 auto 12px;\n  }\n\n  .step h4 {\n    font-size: 13px;\n    font-weight: 500;\n    color: var(--charcoal);\n    margin-bottom: 4px;\n  }\n\n  .step p {\n    font-size: 12px;\n    color: var(--muted);\n    font-weight: 300;\n    line-height: 1.5;\n  }\n\n  \/* ── SPECS TABLE ── *\/\n  .specs-section {\n    padding: 52px 0 44px;\n    border-bottom: 1px solid var(--divider);\n  }\n\n  .specs-table {\n    width: 100%;\n    border-collapse: collapse;\n  }\n\n  .specs-table tr {\n    border-bottom: 1px solid var(--divider);\n    transition: background 0.2s;\n  }\n\n  .specs-table tr:first-child { border-top: 1px solid var(--divider); }\n  .specs-table tr:hover { background: var(--cream); }\n\n  .specs-table td {\n    padding: 16px 8px;\n  }\n\n  .specs-table td:first-child {\n    font-size: 10px;\n    font-weight: 500;\n    letter-spacing: 3px;\n    text-transform: uppercase;\n    color: var(--leaf);\n    width: 38%;\n  }\n\n  .specs-table td:last-child {\n    font-family: 'Playfair Display', serif;\n    font-size: 16px;\n    color: var(--charcoal);\n  }\n\n  \/* ── IDEAL FOR ── *\/\n  .uses-section {\n    padding: 52px 0 44px;\n    border-bottom: 1px solid var(--divider);\n  }\n\n  .uses-grid {\n    display: flex;\n    gap: 12px;\n    flex-wrap: wrap;\n  }\n\n  .use-tag {\n    display: flex;\n    align-items: center;\n    gap: 8px;\n    padding: 10px 18px;\n    background: var(--cream);\n    border: 1px solid var(--divider);\n    font-size: 13px;\n    color: var(--charcoal);\n    font-weight: 400;\n    transition: background 0.2s, border-color 0.2s, transform 0.2s;\n    border-radius: 2px;\n  }\n\n  .use-tag:hover {\n    background: var(--mint);\n    border-color: var(--leaf);\n    transform: translateY(-2px);\n  }\n\n  .use-tag span:first-child { font-size: 16px; }\n\n  \/* ── GIFTING BANNER ── *\/\n  .gift-banner {\n    background: var(--wood-pale);\n    border-top: 1px solid rgba(160,114,42,0.25);\n    border-bottom: 1px solid rgba(160,114,42,0.25);\n    padding: 48px 40px;\n    text-align: center;\n    position: relative;\n    overflow: hidden;\n  }\n\n  .gift-banner::before {\n    content: '';\n    position: absolute;\n    inset: 0;\n    background-image: repeating-linear-gradient(\n      45deg,\n      transparent 0px, transparent 20px,\n      rgba(160,114,42,0.04) 20px, rgba(160,114,42,0.04) 21px\n    );\n  }\n\n  .gift-banner h2 {\n    font-family: 'Playfair Display', serif;\n    font-size: clamp(22px, 3.5vw, 34px);\n    font-weight: 700;\n    color: var(--forest);\n    position: relative;\n    margin-bottom: 10px;\n  }\n\n  .gift-banner p {\n    font-size: 13px;\n    letter-spacing: 2px;\n    text-transform: uppercase;\n    color: var(--oak);\n    position: relative;\n    font-weight: 300;\n  }\n\n  \/* ── FOOTER ── *\/\n  .footer-note {\n    padding: 32px 40px;\n    text-align: center;\n    background: var(--forest);\n  }\n\n  .footer-note p {\n    font-size: 12px;\n    letter-spacing: 2px;\n    text-transform: uppercase;\n    color: rgba(200,230,178,0.65);\n    font-weight: 300;\n  }\n\n  .footer-note span { color: var(--mint); }\n\u003c\/style\u003e\n\u003c!-- HERO --\u003e\n\u003cdiv class=\"hero\"\u003e\n\u003cdiv class=\"hero-badge\"\u003eClassic Wooden Games\u003c\/div\u003e\n\u003ch1\u003eWooden Tic Tac Toe\u003cbr\u003e\u003cem\u003eThe Timeless Game\u003c\/em\u003e\n\u003c\/h1\u003e\n\u003cp class=\"hero-sub\"\u003ePlay · Learn · Grow Together\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c!-- BOARD VISUAL + SKILLS --\u003e\n\u003cdiv class=\"board-stage\"\u003e\n\u003c!-- SVG Board --\u003e\n\u003cdiv class=\"board-wrap\"\u003e\n\u003csvg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" fill=\"none\" viewbox=\"0 0 200 200\" height=\"200\" width=\"200\"\u003e\n      \n      \u003crect fill=\"#3D7522\" rx=\"12\" height=\"200\" width=\"200\"\u003e\u003c\/rect\u003e\n      \u003crect stroke-width=\"1.5\" stroke=\"rgba(255,255,255,0.12)\" fill=\"none\" rx=\"11\" height=\"196\" width=\"196\" y=\"2\" x=\"2\"\u003e\u003c\/rect\u003e\n      \n      \u003crect opacity=\"0.06\" fill=\"url(#woodGrain)\" rx=\"12\" height=\"200\" width=\"200\"\u003e\u003c\/rect\u003e\n      \u003cdefs\u003e\n        \u003cpattern patternunits=\"userSpaceOnUse\" height=\"200\" width=\"4\" y=\"0\" x=\"0\" id=\"woodGrain\"\u003e\n          \u003crect fill=\"#fff\" height=\"200\" width=\"1\"\u003e\u003c\/rect\u003e\n        \u003c\/pattern\u003e\n      \u003c\/defs\u003e\n      \n      \u003cline stroke-linecap=\"round\" stroke-width=\"6\" stroke=\"#2D5016\" y2=\"184\" x2=\"68\" y1=\"16\" x1=\"68\"\u003e\u003c\/line\u003e\n      \u003cline stroke-linecap=\"round\" stroke-width=\"6\" stroke=\"#2D5016\" y2=\"184\" x2=\"132\" y1=\"16\" x1=\"132\"\u003e\u003c\/line\u003e\n      \u003cline stroke-linecap=\"round\" stroke-width=\"6\" stroke=\"#2D5016\" y2=\"68\" x2=\"184\" y1=\"68\" x1=\"16\"\u003e\u003c\/line\u003e\n      \u003cline stroke-linecap=\"round\" stroke-width=\"6\" stroke=\"#2D5016\" y2=\"132\" x2=\"184\" y1=\"132\" x1=\"16\"\u003e\u003c\/line\u003e\n\n      \n      \n      \u003cg style=\"transform-origin:34px 34px\" class=\"piece-x\"\u003e\n        \u003cline stroke-linecap=\"round\" stroke-width=\"6\" stroke=\"#D94F3D\" y2=\"48\" x2=\"48\" y1=\"20\" x1=\"20\"\u003e\u003c\/line\u003e\n        \u003cline stroke-linecap=\"round\" stroke-width=\"6\" stroke=\"#D94F3D\" y2=\"48\" x2=\"20\" y1=\"20\" x1=\"48\"\u003e\u003c\/line\u003e\n      \u003c\/g\u003e\n      \n      \u003cg style=\"transform-origin:100px 100px;animation-delay:0.3s\" class=\"piece-x\"\u003e\n        \u003cline stroke-linecap=\"round\" stroke-width=\"6\" stroke=\"#D94F3D\" y2=\"114\" x2=\"114\" y1=\"86\" x1=\"86\"\u003e\u003c\/line\u003e\n        \u003cline stroke-linecap=\"round\" stroke-width=\"6\" stroke=\"#D94F3D\" y2=\"114\" x2=\"86\" y1=\"86\" x1=\"114\"\u003e\u003c\/line\u003e\n      \u003c\/g\u003e\n      \n      \u003cg style=\"transform-origin:166px 166px;animation-delay:0.6s\" class=\"piece-x\"\u003e\n        \u003cline stroke-linecap=\"round\" stroke-width=\"6\" stroke=\"#D94F3D\" y2=\"180\" x2=\"180\" y1=\"152\" x1=\"152\"\u003e\u003c\/line\u003e\n        \u003cline stroke-linecap=\"round\" stroke-width=\"6\" stroke=\"#D94F3D\" y2=\"180\" x2=\"152\" y1=\"152\" x1=\"180\"\u003e\u003c\/line\u003e\n      \u003c\/g\u003e\n\n      \n      \n      \u003ccircle stroke-width=\"6\" stroke=\"#2E86C1\" fill=\"none\" r=\"18\" cy=\"34\" cx=\"166\" class=\"piece-o\"\u003e\u003c\/circle\u003e\n      \n      \u003ccircle style=\"animation-delay:0.45s\" stroke-width=\"6\" stroke=\"#2E86C1\" fill=\"none\" r=\"18\" cy=\"100\" cx=\"34\" class=\"piece-o\"\u003e\u003c\/circle\u003e\n      \n      \u003ccircle style=\"animation-delay:0.75s\" stroke-width=\"6\" stroke=\"#2E86C1\" fill=\"none\" r=\"18\" cy=\"166\" cx=\"34\" class=\"piece-o\"\u003e\u003c\/circle\u003e\n\n      \n      \u003cline stroke-dashoffset=\"200\" stroke-dasharray=\"200\" stroke-linecap=\"round\" stroke-width=\"4\" stroke=\"rgba(255,220,80,0.9)\" y2=\"166\" x2=\"166\" y1=\"34\" x1=\"34\"\u003e\n        \u003canimate attributename=\"stroke-dashoffset\" from=\"200\" to=\"0\" dur=\"0.7s\" begin=\"1s\" fill=\"freeze\"\u003e\u003c\/animate\u003e\n      \u003c\/line\u003e\n    \u003c\/svg\u003e\n\u003cp class=\"board-caption\"\u003eVibrant Green Finish\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c!-- Skill pills --\u003e\n\u003cdiv class=\"skill-pills\"\u003e\n\u003cdiv class=\"skill-pill\"\u003e\n\u003cdiv class=\"skill-pill-icon\"\u003e🧠\u003c\/div\u003e\n\u003cdiv class=\"skill-pill-text\"\u003e\n\u003ch4\u003eStrategic Thinking\u003c\/h4\u003e\n\u003cp\u003ePlan moves, predict outcomes\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"skill-pill\"\u003e\n\u003cdiv class=\"skill-pill-icon\"\u003e👁️\u003c\/div\u003e\n\u003cdiv class=\"skill-pill-text\"\u003e\n\u003ch4\u003eFocus \u0026amp; Concentration\u003c\/h4\u003e\n\u003cp\u003eSharpens attention span\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"skill-pill\"\u003e\n\u003cdiv class=\"skill-pill-icon\"\u003e🤝\u003c\/div\u003e\n\u003cdiv class=\"skill-pill-text\"\u003e\n\u003ch4\u003eSocial Play\u003c\/h4\u003e\n\u003cp\u003eTurn-based bonding for all ages\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"skill-pill\"\u003e\n\u003cdiv class=\"skill-pill-icon\"\u003e✋\u003c\/div\u003e\n\u003cdiv class=\"skill-pill-text\"\u003e\n\u003ch4\u003eHand-Eye Coordination\u003c\/h4\u003e\n\u003cp\u003eFine motor skill builder\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"content-wrap\"\u003e\n\u003c!-- INTRO --\u003e\n\u003cdiv class=\"intro-section\"\u003e\n\u003cp\u003eA beautifully crafted wooden board game that blends \u003cem\u003etimeless play\u003c\/em\u003e with \u003cem\u003emeaningful learning\u003c\/em\u003e — smooth natural pieces, a vibrant green finish, and hours of fun that bring families and classrooms closer together.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c!-- FEATURES --\u003e\n\u003cdiv class=\"features-section\"\u003e\n\u003cdiv class=\"section-header\"\u003e\u003cspan class=\"section-title\"\u003eKey Features\u003c\/span\u003e\u003c\/div\u003e\n\u003cdiv class=\"features-grid\"\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cspan class=\"feat-emoji\"\u003e🪵\u003c\/span\u003e\n\u003ch3\u003ePremium Wood Build\u003c\/h3\u003e\n\u003cp\u003eCrafted from durable natural wood — solid, smooth, and built to last through countless games.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cspan class=\"feat-emoji\"\u003e🎨\u003c\/span\u003e\n\u003ch3\u003eVibrant Green Finish\u003c\/h3\u003e\n\u003cp\u003eBright, attractive colour that excites young players and looks stunning on any tabletop.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cspan class=\"feat-emoji\"\u003e♻️\u003c\/span\u003e\n\u003ch3\u003eEco-Friendly Design\u003c\/h3\u003e\n\u003cp\u003eMade from sustainably finished wood — reusable, non-toxic, and planet-conscious.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cspan class=\"feat-emoji\"\u003e✈️\u003c\/span\u003e\n\u003ch3\u003eLightweight \u0026amp; Portable\u003c\/h3\u003e\n\u003cp\u003eCompact size slips into bags easily — perfect for travel, picnics, or classroom corners.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cspan class=\"feat-emoji\"\u003e👧\u003c\/span\u003e\n\u003ch3\u003eChild-Safe \u0026amp; Smooth\u003c\/h3\u003e\n\u003cp\u003eRounded wooden pieces with a polished, splinter-free finish safe for little hands.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cspan class=\"feat-emoji\"\u003e🎁\u003c\/span\u003e\n\u003ch3\u003ePerfect Gift\u003c\/h3\u003e\n\u003cp\u003eIdeal return gift, birthday present, party favour, or classroom reward for kids.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- BENEFITS STRIP --\u003e\n\u003cdiv class=\"benefits-strip\"\u003e\n\u003cdiv class=\"benefit-item\"\u003e\n\u003cspan class=\"benefit-num\"\u003e3+\u003c\/span\u003e \u003cspan class=\"benefit-label\"\u003eAge Suitable\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"benefit-item\"\u003e\n\u003cspan class=\"benefit-num\"\u003e2\u003c\/span\u003e \u003cspan class=\"benefit-label\"\u003ePlayers\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"benefit-item\"\u003e\n\u003cspan class=\"benefit-num\"\u003e9\u003c\/span\u003e \u003cspan class=\"benefit-label\"\u003eSmooth Pieces\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"benefit-item\"\u003e\n\u003cspan class=\"benefit-num\"\u003e∞\u003c\/span\u003e \u003cspan class=\"benefit-label\"\u003eReplayable\u003c\/span\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"content-wrap\"\u003e\n\u003c!-- HOW TO PLAY --\u003e\n\u003cdiv class=\"play-section\"\u003e\n\u003cdiv class=\"section-header\"\u003e\u003cspan class=\"section-title\"\u003eHow to Play\u003c\/span\u003e\u003c\/div\u003e\n\u003cdiv class=\"steps-row\"\u003e\n\u003cdiv class=\"step\"\u003e\n\u003cdiv class=\"step-num\"\u003e1\u003c\/div\u003e\n\u003ch4\u003eSet Up\u003c\/h4\u003e\n\u003cp\u003ePlace the board flat and sort X and O pieces between two players.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"step\"\u003e\n\u003cdiv class=\"step-num\"\u003e2\u003c\/div\u003e\n\u003ch4\u003eTake Turns\u003c\/h4\u003e\n\u003cp\u003ePlayers alternate placing one piece per turn on any empty square.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"step\"\u003e\n\u003cdiv class=\"step-num\"\u003e3\u003c\/div\u003e\n\u003ch4\u003eStrategy\u003c\/h4\u003e\n\u003cp\u003eBlock your opponent while working to align 3 of your pieces.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"step\"\u003e\n\u003cdiv class=\"step-num\"\u003e4\u003c\/div\u003e\n\u003ch4\u003eWin!\u003c\/h4\u003e\n\u003cp\u003eFirst to get 3 in a row — horizontal, vertical, or diagonal — wins!\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- SPECS --\u003e\n\u003cdiv class=\"specs-section\"\u003e\n\u003cdiv class=\"section-header\"\u003e\u003cspan class=\"section-title\"\u003eSpecifications\u003c\/span\u003e\u003c\/div\u003e\n\u003ctable class=\"specs-table\"\u003e\n\u003ctbody\u003e\n\u003ctr\u003e\n\u003ctd\u003eMaterial\u003c\/td\u003e\n\u003ctd\u003ePremium Natural Wood\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003eFinish\u003c\/td\u003e\n\u003ctd\u003eVibrant Green Wooden Polish\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ePieces\u003c\/td\u003e\n\u003ctd\u003eSmooth X \u0026amp; O Wooden Tokens\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003ePlayers\u003c\/td\u003e\n\u003ctd\u003e2 Players\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003eSuitable For\u003c\/td\u003e\n\u003ctd\u003eKids \u0026amp; Family (Ages 3+)\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003eDesign\u003c\/td\u003e\n\u003ctd\u003eEco-Friendly · Reusable · Portable\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003eUsage\u003c\/td\u003e\n\u003ctd\u003ePlay · Education · Gifting · Décor\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003c\/tbody\u003e\n\u003c\/table\u003e\n\u003c\/div\u003e\n\u003c!-- IDEAL FOR --\u003e\n\u003cdiv class=\"uses-section\"\u003e\n\u003cdiv class=\"section-header\"\u003e\u003cspan class=\"section-title\"\u003eIdeal For\u003c\/span\u003e\u003c\/div\u003e\n\u003cdiv class=\"uses-grid\"\u003e\n\u003cdiv class=\"use-tag\"\u003e\n\u003cspan\u003e🏠\u003c\/span\u003e Family Game Night\u003c\/div\u003e\n\u003cdiv class=\"use-tag\"\u003e\n\u003cspan\u003e🎒\u003c\/span\u003e Travel \u0026amp; Holidays\u003c\/div\u003e\n\u003cdiv class=\"use-tag\"\u003e\n\u003cspan\u003e🏫\u003c\/span\u003e Classroom Activities\u003c\/div\u003e\n\u003cdiv class=\"use-tag\"\u003e\n\u003cspan\u003e🎁\u003c\/span\u003e Return Gifts\u003c\/div\u003e\n\u003cdiv class=\"use-tag\"\u003e\n\u003cspan\u003e🎂\u003c\/span\u003e Birthday Presents\u003c\/div\u003e\n\u003cdiv class=\"use-tag\"\u003e\n\u003cspan\u003e🎉\u003c\/span\u003e Party Favours\u003c\/div\u003e\n\u003cdiv class=\"use-tag\"\u003e\n\u003cspan\u003e🧒\u003c\/span\u003e Kids' Learning\u003c\/div\u003e\n\u003cdiv class=\"use-tag\"\u003e\n\u003cspan\u003e🖥️\u003c\/span\u003e Desk Décor\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- GIFTING BANNER --\u003e\n\u003cdiv class=\"gift-banner\"\u003e\n\u003ch2\u003e🎁 A Gift They'll Play Again \u0026amp; Again\u003c\/h2\u003e\n\u003cp\u003eBirthdays · Festivals · Classrooms · Return Gifts · Family Nights\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c!-- FOOTER --\u003e\n\u003cdiv class=\"footer-note\"\u003e\n\u003cp\u003eHandcrafted with care · \u003cspan\u003eEco-friendly wood\u003c\/span\u003e · Safe for all ages · Reusable forever\u003c\/p\u003e\n\u003c\/div\u003e","brand":"AB Wooden Toys","offers":[{"title":"Green","offer_id":63661304807793,"sku":null,"price":209.0,"currency_code":"INR","in_stock":true},{"title":"Orange","offer_id":63661304840561,"sku":null,"price":209.0,"currency_code":"INR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0943\/3631\/9857\/files\/59_ae6473ed-5d88-47bc-afd3-b48dec43b94c.png?v=1779630789","url":"https:\/\/inaiyan.in\/products\/wooden-tic-tac-toe","provider":"Inaiyan","version":"1.0","type":"link"}