<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Creative Cubs - Modular Kids Play Couches</title>

    <meta name="description" content="Creative Cubs offers premium modular kids play couches and building forts. Safe, durable, and designed for endless fun and creativity.">

    <link rel="stylesheet" href="style.css">

</head>

<body>

    <!-- Announcement Bar -->

    <div class="announcement-bar">

        Winter 2025 Free Shipping

    </div>


    <!-- Header -->

    <header>

        <div class="container">

            <div class="logo">

                <a href="index.html">

                    <h1>Creative Cubs</h1>

                </a>

            </div>

            <nav>

                <ul>

                    <li><a href="index.html">Home</a></li>

                    <li><a href="products.html">Products</a></li>

                    <li><a href="manual.html">Manual</a></li>

                    <li><a href="safety.html">Safety Testing</a></li>

                    <li><a href="contact.html">Contact</a></li>

                </ul>

            </nav>

        </div>

    </header>


    <!-- Main Content -->

    <main>

        <!-- Hero Section -->

        <section class="hero">

            <div class="container">

                <h2>Modular Kids Play Couches</h2>

            </div>

        </section>


        <!-- Featured Products -->

        <section class="container">

            <h2 class="page-title">Featured Products</h2>

            <div class="product-grid">

                <div class="product-card">

                    <div class="product-image">

                        <span>Children's Modular Building Fort and Play Couch (Grey)</span>

                        <div class="sold-out-badge">Sold Out</div>

                    </div>

                    <div class="product-info">

                        <h3>Children's Modular Building Fort and Play Couch (Grey)</h3>

                        <div class="product-price">$229.99 CAD</div>

                    </div>

                </div>


                <div class="product-card">

                    <div class="product-image">

                        <span>Kids Modular Building Fort and Play Couch (Blue)</span>

                        <div class="sold-out-badge">Sold Out</div>

                    </div>

                    <div class="product-info">

                        <h3>Kids Modular Building Fort and Play Couch (Blue)</h3>

                        <div class="product-price">$229.99 CAD</div>

                    </div>

                </div>


                <div class="product-card">

                    <div class="product-image">

                        <span>Kids Modular Building Fort and Play Couch (Pink)</span>

                        <div class="sold-out-badge">Sold Out</div>

                    </div>

                    <div class="product-info">

                        <h3>Kids Modular Building Fort and Play Couch (Pink)</h3>

                        <div class="product-price">$229.99 CAD</div>

                    </div>

                </div>

            </div>

        </section>

    </main>


    <!-- Footer -->

    <footer>

        <div class="container">

            <p>© 2025 Creative Cubs. <a href="#">Refund policy</a> | <a href="#">Privacy policy</a> | <a href="#">Terms of service</a></p>

        </div>

    </footer>

</body>

</html>