{"product_id":"self-inking-mini-cat-stamps","title":"Self-Inking Mini Cat Stamps","description":"\u003cstyle type=\"text\/css\"\u003e\/* 1) Design System (CSS Variables) *\/    .product-detail-container {      --primary: #FFD166;      --primary-hover: #FFC233;      --text-main: #2C2C2C;      --text-sub: #5A5A5A;      --bg-body: #FAFAFA;      --bg-card: #FFFFFF;      --bg-accent: #FFF9E6;      --radius-md: 12px;      --radius-lg: 20px;      --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);      --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.08);      --border-color: #EEEEEE;      \/* 0) Typography \u0026 Spacing System *\/      font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif;      color: var(--text-main);      background-color: var(--bg-body);      max-width: 1200px;      margin: 0 auto;      padding: clamp(2rem, 5vw, 4rem) 5%;      box-sizing: border-box;      overflow-wrap: break-word;      word-break: break-word;      line-height: 1.7;    }    .product-detail-container *,    .product-detail-container *::before,    .product-detail-container *::after {      box-sizing: border-box;    }    \/* Typography Utilities *\/    .product-detail-container h1 {      font-size: clamp(32px, 4vw, 44px);      font-weight: 800;      line-height: 1.2;      margin: 0 0 1rem 0;      letter-spacing: -0.02em;    }    .product-detail-container h2 {      font-size: clamp(24px, 3vw, 32px);      font-weight: 700;      line-height: 1.3;      margin: 0 0 1rem 0;      color: var(--text-main);    }    .product-detail-container h3 {      font-size: clamp(20px, 2.5vw, 24px);      font-weight: 700;      margin: 0 0 0.75rem 0;    }    .product-detail-container p {      font-size: clamp(18px, 2vw, 20px);      color: var(--text-sub);      margin: 0 0 1.5rem 0;    }    \/* Media Protocol - Fixed Ratio Card *\/    .media-placeholder {      width: 100%;      aspect-ratio: 1 \/ 1;      overflow: hidden;      position: relative;      display: flex;      align-items: center;      justify-content: center;      background: #f0f0f0;      border-radius: var(--radius-lg);      border: 2px dashed #ccc;      color: var(--text-sub);      font-size: 16px;      text-align: center;      padding: 1rem;    }    \/* Badges (Non-interactive) *\/    .badge-container {      display: flex;      flex-wrap: wrap;      gap: 10px;      margin-bottom: 1.5rem;    }    .status-badge {      display: inline-block;      background: var(--bg-accent);      color: #D48806;      font-size: 16px;      font-weight: 600;      padding: 8px 16px;      border-radius: 30px;      border: 1px solid #FFE58F;    }    \/* Layout Spacing *\/    .section-spacing {      margin-top: clamp(3rem, 6vw, 5rem);      margin-bottom: clamp(3rem, 6vw, 5rem);    }    \/* Hero Section *\/    .hero-section {      text-align: center;      max-width: 800px;      margin: 0 auto clamp(3rem, 6vw, 5rem);    }    .social-proof {      display: inline-flex;      align-items: center;      gap: 8px;      background: var(--bg-card);      padding: 8px 20px;      border-radius: 50px;      box-shadow: var(--shadow-sm);      font-size: 16px;      font-weight: 600;      margin-bottom: 1.5rem;      border: 1px solid var(--border-color);    }    \/* Mobile Ordering Lock (Features) *\/    .feature-item {      display: flex;      flex-direction: column; \/* Mobile first: strict top-to-bottom *\/      gap: clamp(1.5rem, 4vw, 3rem);      margin-bottom: clamp(3rem, 5vw, 4rem);    }        .feature-media, .feature-copy {      width: 100%;    }    \/* Specifications Table *\/    .specs-section {      background: var(--bg-card);      padding: clamp(2rem, 4vw, 3.5rem);      border-radius: var(--radius-lg);      box-shadow: var(--shadow-sm);    }        .specs-table {      width: 100%;      border-collapse: collapse;      margin-top: 1.5rem;    }    .specs-table th, .specs-table td {      padding: 16px 20px;      text-align: left;      font-size: 18px;      border-bottom: 1px solid var(--border-color);    }    .specs-table th {      font-weight: 700;      background-color: var(--bg-accent);      color: var(--text-main);      width: 40%;    }    .specs-table td {      color: var(--text-sub);    }    \/* FAQ Section *\/    .faq-list {      display: flex;      flex-direction: column;      gap: 1.5rem;    }    .faq-card {      background: var(--bg-card);      padding: 1.5rem 2rem;      border-radius: var(--radius-lg);      border: 1px solid var(--border-color);    }    .faq-card h3 {      font-size: clamp(18px, 2vw, 22px);      margin-bottom: 0.5rem;      color: var(--text-main);    }    .faq-card p {      margin-bottom: 0;      font-size: clamp(16px, 1.5vw, 18px);    }    \/* Desktop Enhancements *\/    @media (min-width: 768px) {      .feature-item {        flex-direction: row; \/* Z-Pattern activation *\/        align-items: center;      }      .feature-item.reverse {        flex-direction: row-reverse;      }      .feature-media {        flex: 1;      }      .feature-copy {        flex: 1;        padding: 0 5%;      }    }    \/* Mobile Table Overrides (Strict Card-based layout, NO horizontal scroll) *\/    @media (max-width: 767px) {      .specs-table, .specs-table tbody, .specs-table tr, .specs-table td {        display: block;        width: 100%;      }      .specs-table thead {        display: none; \/* Hide traditional table headers *\/      }      .specs-table tr {        background: var(--bg-card);        border: 1px solid var(--border-color);        border-radius: var(--radius-md);        margin-bottom: 1rem;        padding: 0.5rem 0;      }      .specs-table td {        display: flex;        flex-direction: column; \/* Stacked for ultimate safety against overflow *\/        border-bottom: none;        padding: 12px 16px;      }      .specs-table td:not(:last-child) {        border-bottom: 1px dashed var(--border-color);      }      .specs-table td::before {        content: attr(data-label);        font-weight: 700;        color: var(--text-main);        margin-bottom: 4px;        font-size: 16px;      }    }\u003c\/style\u003e\n\u003cdiv class=\"product-detail-container\"\u003e\n\u003c!-- Hero Section --\u003e\n\u003cdiv class=\"hero-section\"\u003e\n\u003cdiv class=\"social-proof\"\u003e⭐ Loved by 10,000+ Journalers \u0026amp; Teachers\u003c\/div\u003e\n\u003ch1\u003eAdd Instant Purr-sonality to Every Page\u003c\/h1\u003e\n\u003cp\u003e8 playful black cat poses in a pocket-sized, self-inking stamp. Mess-free, quick-drying, and guaranteed to make you smile.\u003c\/p\u003e\n\u003cdiv class=\"badge-container\" style=\"justify-content: center;\"\u003e\n\u003cspan class=\"status-badge\"\u003e1000+ Impressions\u003c\/span\u003e \u003cspan class=\"status-badge\"\u003eKid-Friendly Ink\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"media-placeholder\"\u003e\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0744\/2169\/8671\/files\/O1CN01jiiGIZ2D5caF0pphV__2211790578558-0-cib.jpg?v=1788603737\" alt=\"\"\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"section-spacing\"\u003e\n\u003cdiv class=\"feature-item\"\u003e\n\u003cdiv class=\"feature-media\"\u003e\n\u003cdiv class=\"media-placeholder\"\u003e\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0744\/2169\/8671\/files\/O1CN01u1Mhzr1W8LYIBrUSm__2210063342743-0-cib.jpg?v=1788760233\" alt=\"\"\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-copy\"\u003e\n\u003ch2\u003e8 Playful Designs, One Click Each\u003c\/h2\u003e\n\u003cdiv class=\"\"\u003e\n\u003csection class=\"text-token-text-primary w-full focus:outline-none has-data-writing-block:pointer-events-none [\u0026amp;:has([data-writing-block])\u0026gt;*]:pointer-events-auto R6Vx5W_threadScrollVars scroll-mb-[calc(var(--scroll-root-safe-area-inset-bottom,0px)+var(--thread-response-height))] scroll-mt-[calc(var(--header-height)+min(200px,max(70px,20svh)))]\" dir=\"auto\"\u003e\n\u003cdiv class=\"text-base my-auto mx-auto pb-8 [--thread-content-margin:var(--thread-content-margin-xs,calc(var(--spacing)*4))] @w-sm\/main:[--thread-content-margin:var(--thread-content-margin-sm,calc(var(--spacing)*6))] @w-lg\/main:[--thread-content-margin:var(--thread-content-margin-lg,calc(var(--spacing)*16))] px-(--thread-content-margin)\"\u003e\n\u003cdiv class=\"[--thread-content-max-width:40rem] @w-lg\/main:[--thread-content-max-width:48rem] mx-auto max-w-(--thread-content-max-width) flex-1 group\/turn-messages focus-visible:outline-hidden relative flex w-full min-w-0 flex-col agent-turn\"\u003e\n\u003cdiv class=\"flex max-w-full flex-col gap-4 grow\"\u003e\n\u003cdiv dir=\"auto\" class=\"min-h-8 text-message relative flex w-full flex-col items-end gap-2 text-start break-words whitespace-normal outline-none keyboard-focused:focus-ring [.text-message+\u0026amp;]:mt-1\" tabindex=\"0\"\u003e\n\u003cdiv class=\"flex w-full flex-col gap-1 empty:hidden\"\u003e\n\u003cdiv class=\"markdown prose dark:prose-invert wrap-break-word w-full light markdown-new-styling\"\u003e\n\u003cp\u003eEight quirky black-cat poses add instant personality to whatever you touch.Whether you are decorating planners, bullet journals, greeting cards, or handing out classroom rewards, these expressive little cats bring life to paper with a single press.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/section\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- Feature 2 (Reversed on Desktop) --\u003e\n\u003cdiv class=\"feature-item reverse\"\u003e\n\u003cdiv class=\"feature-media\"\u003e\n\u003cdiv class=\"media-placeholder\"\u003e\n\u003cdiv\u003e\n\u003cdiv\u003e\n\u003cdiv\u003e\u003cimg src=\"https:\/\/wxalbum-10001658-file.dianxiaomi.com\/wxalbum\/1332898\/20260411174926\/5665fe7296d874fae1cd9f9590cbdf3b.jpg\"\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-copy\"\u003e\n\u003ch2\u003eMess-Free Self-Inking Mechanism\u003c\/h2\u003e\n\u003cp\u003eLeave the messy ink pads behind. Our built-in black ink reservoir reloads automatically after every single press. Enjoy up to 1,000 crisp, solid impressions with absolutely zero bottles, spills, or clean-up required.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- Feature 3 --\u003e\n\u003cdiv class=\"feature-item\"\u003e\n\u003cdiv class=\"feature-media\"\u003e\n\u003cdiv class=\"media-placeholder\"\u003e\n\u003cdiv\u003e\n\u003cdiv\u003e\n\u003cdiv\u003e\u003cimg src=\"https:\/\/wxalbum-10001658-file.dianxiaomi.com\/wxalbum\/1332898\/20260411174926\/64277e6e8b12016f73fd03c32a3dabeb.jpg\"\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-copy\"\u003e\n\u003ch2\u003ePocket-Sized \u0026amp; Kid-Friendly\u003c\/h2\u003e\n\u003cp\u003eCompact 2.4-inch barrels fit perfectly into little hands and cramped pencil cases. Using non-toxic, quick-drying ink, your artwork stays totally smudge-free, making it a safe and fun creative tool at home, in school, or on the go.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- Specifications Table --\u003e\n\u003cdiv class=\"section-spacing specs-section\"\u003e\n\u003ch2 style=\"text-align: center; margin-bottom: 2rem;\"\u003eProduct Specifications\u003c\/h2\u003e\n\u003ctable class=\"specs-table\"\u003e\n\u003cthead\u003e\n\u003ctr\u003e\n\u003cth\u003eSpecification\u003c\/th\u003e\n\u003cth\u003eDetails\u003c\/th\u003e\n\u003c\/tr\u003e\n\u003c\/thead\u003e\n\u003ctbody\u003e\n\u003ctr\u003e\n\u003ctd\u003eLength\u003c\/td\u003e\n\u003ctd\u003e2.4 in \/ 6.1 cm\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003eWeight (per stamp)\u003c\/td\u003e\n\u003ctd\u003e0.5 oz \/ 15 g\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003eInk Color\u003c\/td\u003e\n\u003ctd\u003eDeep Black (Quick-dry formula)\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003eImpression Capacity\u003c\/td\u003e\n\u003ctd\u003eUp to 1,000 stamps per unit\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003eMaterial\u003c\/td\u003e\n\u003ctd\u003eDurable ABS plastic \u0026amp; Non-toxic ink\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003eSet Includes\u003c\/td\u003e\n\u003ctd\u003e8 Unique Cat Poses\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003c\/tbody\u003e\n\u003c\/table\u003e\n\u003c\/div\u003e\n\u003c!-- FAQ Section --\u003e\n\u003cdiv class=\"section-spacing\"\u003e\n\u003ch2 style=\"text-align: center; margin-bottom: 2rem;\"\u003eFrequently Asked Questions\u003c\/h2\u003e\n\u003cdiv class=\"faq-list\"\u003e\n\u003cdiv class=\"faq-card\"\u003e\n\u003ch3\u003eDo I need a separate ink pad?\u003c\/h3\u003e\n\u003cp\u003eNot at all! Each mini cat stamp is fully self-inking. The mechanism re-inks the rubber design automatically after every press, giving you a perfect stamp every time without the mess.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-card\"\u003e\n\u003ch3\u003eWill the ink bleed through my journal pages?\u003c\/h3\u003e\n\u003cp\u003eOur ink is specially formulated to be quick-drying and surface-level. While extreme pressure on very thin paper might show, it is perfectly safe and bleed-free for standard bullet journals, planners, and crafting paper.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-card\"\u003e\n\u003ch3\u003eAre these safe for small children?\u003c\/h3\u003e\n\u003cp\u003eYes, the ink is 100% non-toxic and washes off skin easily with mild soap and water. Because they are compact (2.4 inches), we recommend supervision for toddlers, but they are an excellent, mess-free craft for young kids and students.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e","brand":"famivow","offers":[{"title":"🐱 4 Unique Cat Poses 1","offer_id":54206366810223,"sku":"0414-15475845","price":25.99,"currency_code":"USD","in_stock":true},{"title":"🐱 4 Unique Cat Poses 2","offer_id":54242227257455,"sku":null,"price":25.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0744\/2169\/8671\/files\/3374d20e2537953e4460b828bd991137.jpg?v=1788316435","url":"https:\/\/famivow.com\/products\/self-inking-mini-cat-stamps","provider":"Famivow","version":"1.0","type":"link"}