
    :root {
      --bg: #fff8ef;
      --card: #ffffff;
      --text: #2b2d42;
      --muted: #6b7280;
      --pink: #ff5fa2;
      --orange: #ffb347;
      --blue: #55c7ff;
      --green: #7ed957;
      --purple: #8f7cff;
      --shadow: 0 18px 45px rgba(43, 45, 66, 0.12);
      --radius: 26px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background:
        radial-gradient(circle at top left, rgba(255, 95, 162, 0.18), transparent 32%),
        radial-gradient(circle at 90% 10%, rgba(85, 199, 255, 0.22), transparent 30%),
        linear-gradient(180deg, #fff8ef 0%, #f7fbff 100%);
      color: var(--text);
      min-height: 100vh;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
    }

    .topbar {
      background: #2b2d42;
      color: #fff;
      font-size: 14px;
      padding: 8px 0;
    }

    .topbar-inner {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(255, 255, 255, 0.82);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(43, 45, 66, 0.08);
    }

    .nav {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 26px;
      font-weight: 900;
      letter-spacing: -1px;
    }

    .logo-badge {
      width: 44px;
      height: 44px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--pink), var(--orange));
      color: #fff;
      box-shadow: var(--shadow);
    }

    .menu {
      display: flex;
      align-items: center;
      gap: 18px;
      color: #374151;
      font-weight: 700;
    }

    .menu a:hover {
      color: var(--pink);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .search {
      width: 260px;
      display: flex;
      align-items: center;
      gap: 8px;
      background: #fff;
      border: 2px solid rgba(85, 199, 255, 0.28);
      border-radius: 999px;
      padding: 10px 14px;
      box-shadow: 0 10px 25px rgba(85, 199, 255, 0.12);
    }

    .search input {
      width: 100%;
      border: 0;
      outline: 0;
      font-size: 14px;
      background: transparent;
    }

    .icon-btn,
    .primary-btn,
    .soft-btn {
      border: 0;
      cursor: pointer;
      border-radius: 999px;
      font-weight: 800;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .icon-btn:hover,
    .primary-btn:hover,
    .soft-btn:hover {
      transform: translateY(-2px);
    }

    .icon-btn {
      width: 44px;
      height: 44px;
      background: #fff;
      box-shadow: 0 10px 25px rgba(43, 45, 66, 0.1);
      font-size: 18px;
      position: relative;
    }

    .cart-count {
      position: absolute;
      top: -5px;
      right: -5px;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--pink);
      color: #fff;
      display: grid;
      place-items: center;
      font-size: 12px;
      border: 2px solid #fff;
    }

    .primary-btn {
      padding: 13px 20px;
      background: linear-gradient(135deg, var(--pink), #ff8a3d);
      color: #fff;
      box-shadow: 0 16px 28px rgba(255, 95, 162, 0.25);
    }

    .soft-btn {
      padding: 12px 18px;
      background: #fff;
      color: var(--text);
      box-shadow: 0 10px 25px rgba(43, 45, 66, 0.08);
    }

    .hero {
      padding: 58px 0 38px;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 34px;
      align-items: center;
    }

    .hero-card {
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid rgba(255, 255, 255, 0.9);
      border-radius: 42px;
      padding: 44px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .hero-card::before {
      content: "";
      position: absolute;
      width: 160px;
      height: 160px;
      border-radius: 50%;
      background: rgba(126, 217, 87, 0.22);
      right: -40px;
      top: -50px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #fff0f6;
      color: #d63384;
      border-radius: 999px;
      padding: 10px 14px;
      font-weight: 800;
      margin-bottom: 18px;
    }

    .hero h1 {
      font-size: clamp(38px, 6vw, 72px);
      line-height: 0.95;
      letter-spacing: -3px;
      margin-bottom: 18px;
    }

    .hero h1 span {
      color: var(--pink);
    }

    .hero p {
      color: var(--muted);
      font-size: 18px;
      max-width: 620px;
      margin-bottom: 24px;
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .hero-visual {
      min-height: 440px;
      border-radius: 42px;
      background:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.85), transparent 22%),
        linear-gradient(135deg, #bff0ff, #fff0b8 48%, #ffc2df);
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
      display: grid;
      place-items: center;
    }

    .toy-stack {
      position: relative;
      width: 320px;
      height: 320px;
    }

    .toy {
      position: absolute;
      border-radius: 34px;
      display: grid;
      place-items: center;
      font-size: 66px;
      box-shadow: 0 24px 40px rgba(43, 45, 66, 0.18);
      background: #fff;
      animation: float 4s ease-in-out infinite;
    }

    .toy:nth-child(1) {
      width: 160px;
      height: 160px;
      left: 8px;
      top: 30px;
      transform: rotate(-10deg);
    }

    .toy:nth-child(2) {
      width: 190px;
      height: 190px;
      right: 0;
      top: 70px;
      animation-delay: 0.8s;
      transform: rotate(8deg);
    }

    .toy:nth-child(3) {
      width: 145px;
      height: 145px;
      left: 80px;
      bottom: 15px;
      animation-delay: 1.4s;
      transform: rotate(5deg);
    }

    @keyframes float {
      0%, 100% { translate: 0 0; }
      50% { translate: 0 -14px; }
    }

    .section-head {
      margin: 34px 0 18px;
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 16px;
    }

    .section-head h2 {
      font-size: 34px;
      letter-spacing: -1px;
    }

    .section-head p {
      color: var(--muted);
      margin-top: 6px;
    }

    .categories {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
    }

    .category-card {
      background: #fff;
      border-radius: var(--radius);
      padding: 20px;
      text-align: center;
      box-shadow: 0 12px 30px rgba(43, 45, 66, 0.08);
      border: 2px solid rgba(255, 255, 255, 0.8);
      transition: transform 0.2s ease;
    }

    .category-card:hover {
      transform: translateY(-6px) rotate(-1deg);
    }

    .category-icon {
      width: 68px;
      height: 68px;
      border-radius: 24px;
      display: grid;
      place-items: center;
      margin: 0 auto 12px;
      font-size: 30px;
      background: linear-gradient(135deg, rgba(255, 95, 162, 0.18), rgba(85, 199, 255, 0.18));
    }

    .filters {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 20px;
    }

    .filter-pill {
      padding: 10px 16px;
      border-radius: 999px;
      background: #fff;
      border: 1px solid rgba(43, 45, 66, 0.08);
      color: #4b5563;
      font-weight: 800;
      cursor: pointer;
    }

    .filter-pill.active {
      background: #2b2d42;
      color: #fff;
    }

    .products {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .product-card {
      background: var(--card);
      border-radius: 30px;
      overflow: hidden;
      box-shadow: 0 16px 34px rgba(43, 45, 66, 0.1);
      border: 1px solid rgba(43, 45, 66, 0.06);
      transition: transform 0.22s ease, box-shadow 0.22s ease;
    }

    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 48px rgba(43, 45, 66, 0.14);
    }

    .product-img {
      height: 210px;
      display: grid;
      place-items: center;
      font-size: 84px;
      position: relative;
      background: linear-gradient(135deg, #e8f8ff, #fff3cc);
    }

    .badge {
      position: absolute;
      top: 14px;
      left: 14px;
      background: var(--green);
      color: #124016;
      border-radius: 999px;
      padding: 6px 10px;
      font-weight: 900;
      font-size: 12px;
    }

    .product-body {
      padding: 18px;
    }

    .product-body h3 {
      font-size: 19px;
      margin-bottom: 8px;
    }

    .product-body p {
      color: var(--muted);
      font-size: 14px;
      margin-bottom: 14px;
    }

    .product-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }

    .price {
      font-size: 22px;
      font-weight: 900;
      color: var(--pink);
    }

    .add-cart {
      width: 46px;
      height: 46px;
      border-radius: 16px;
      border: 0;
      background: #2b2d42;
      color: #fff;
      cursor: pointer;
      font-size: 20px;
    }

    .feature-strip {
      margin: 46px 0;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .feature {
      background: rgba(255, 255, 255, 0.78);
      border-radius: var(--radius);
      padding: 22px;
      box-shadow: 0 12px 28px rgba(43, 45, 66, 0.08);
    }

    .feature strong {
      display: block;
      font-size: 20px;
      margin-bottom: 6px;
    }

    .feature p {
      color: var(--muted);
    }

    .newsletter {
      margin: 42px 0 64px;
      border-radius: 40px;
      padding: 34px;
      background: linear-gradient(135deg, #2b2d42, #5b4bff);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      overflow: hidden;
      position: relative;
    }

    .newsletter::after {
      content: "🧸";
      position: absolute;
      right: 24px;
      bottom: -30px;
      font-size: 120px;
      opacity: 0.16;
    }

    .newsletter h2 {
      font-size: 32px;
      margin-bottom: 8px;
    }

    .newsletter p {
      color: rgba(255, 255, 255, 0.78);
    }

    .newsletter-form {
      display: flex;
      background: #fff;
      border-radius: 999px;
      padding: 6px;
      min-width: 360px;
      z-index: 1;
    }

    .newsletter-form input {
      flex: 1;
      border: 0;
      outline: 0;
      padding: 0 14px;
      font-size: 15px;
    }

    footer {
      background: #fff;
      border-top: 1px solid rgba(43, 45, 66, 0.08);
      padding: 30px 0;
      color: var(--muted);
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    @media (max-width: 1024px) {
      .hero {
        grid-template-columns: 1fr;
      }

      .categories {
        grid-template-columns: repeat(3, 1fr);
      }

      .products {
        grid-template-columns: repeat(2, 1fr);
      }

      .feature-strip {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 760px) {
      .nav {
        flex-wrap: wrap;
        padding: 14px 0;
      }

      .menu {
        width: 100%;
        order: 3;
        overflow-x: auto;
        padding-bottom: 6px;
      }

      .nav-actions {
        width: 100%;
        justify-content: space-between;
      }

      .search {
        width: 100%;
      }

      .hero-card {
        padding: 28px;
        border-radius: 30px;
      }

      .hero-visual {
        min-height: 320px;
      }

      .toy-stack {
        scale: 0.78;
      }

      .categories {
        grid-template-columns: repeat(2, 1fr);
      }

      .products {
        grid-template-columns: 1fr;
      }

      .newsletter {
        flex-direction: column;
        align-items: flex-start;
      }

      .newsletter-form {
        width: 100%;
        min-width: unset;
      }
    }