{"product_id":"travel-scrapbooking-supplies-kit-with-a6-notebook-and-vintage-paper-crafts","title":"Travel Scrapbooking Supplies Kit with A6 Notebook and Vintage Paper Crafts","description":"\u003cstyle\u003e\n\/* eBay Template Engine - PROFESSIONAL Style *\/\n.ebay-template {\n  max-width: 900px;\n  margin: 0 auto;\n  font-family: Georgia, \"Times New Roman\", serif;\n  color: #111827;\n  background: #f9fafb;\n  line-height: 1.6;\n}\n.ebay-template * {\n  box-sizing: border-box;\n}\n.template-header {\n  background: linear-gradient(135deg, #374151 0%, #111827 100%);\n  color: #ffffff;\n  padding: 24px;\n  border-radius: 4px 4px 0 0;\n  text-align: center;\n}\n.template-header h1 {\n  font-family: \"Helvetica Neue\", Arial, sans-serif;\n  font-size: 24px;\n  margin: 0 0 8px 0;\n  font-weight: 700;\n}\n.template-header .brand {\n  font-size: 14px;\n  opacity: 0.9;\n}\n.template-header .condition {\n  display: inline-block;\n  background: rgba(255,255,255,0.2);\n  padding: 4px 12px;\n  border-radius: 20px;\n  font-size: 12px;\n  margin-top: 12px;\n}\n.template-body {\n  padding: 24px;\n  border: 1px solid #d1d5db;\n  border-top: none;\n  border-radius: 0 0 4px 4px;\n  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);\n}\n\n\/* ── Trust badges row (Ships from USA · Free Delivery) ──────────────\n   Sits directly under the gallery. Two equal columns built with a\n   classic table layout — eBay's CSS sanitiser sometimes strips\n   modern flex\/grid declarations on mobile renders, but table-cell\n   has been bulletproof since 2015. SVG icons are inlined (no\n   external requests, no script content, safe for eBay's content\n   policy) and sized in viewBox units so they scale crisply on\n   retina without external \u003cimg\u003e tags. *\/\n.trust-badges {\n  width: 100%;\n  border-collapse: separate;\n  border-spacing: 12px 0;\n  margin: 0 0 28px 0;\n  table-layout: fixed;\n}\n.trust-badges td {\n  width: 50%;\n  vertical-align: middle;\n  background: #ffffff;\n  border: 1px solid #d1d5db;\n  border-radius: 12px;\n  padding: 14px 16px;\n  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);\n}\n.trust-badge-inner {\n  display: table;\n  width: 100%;\n}\n.trust-badge-icon,\n.trust-badge-text {\n  display: table-cell;\n  vertical-align: middle;\n}\n.trust-badge-icon {\n  width: 52px;\n  padding-right: 12px;\n}\n.trust-badge-icon svg {\n  display: block;\n  width: 44px;\n  height: 44px;\n}\n.trust-badge-title {\n  margin: 0;\n  font-family: \"Helvetica Neue\", Arial, sans-serif;\n  font-size: 14px;\n  font-weight: 700;\n  letter-spacing: 0.02em;\n  color: #111827;\n  line-height: 1.2;\n  text-transform: uppercase;\n}\n.trust-badge-sub {\n  margin: 2px 0 0 0;\n  font-size: 12px;\n  color: #6b7280;\n  line-height: 1.3;\n}\n\n@media (max-width: 480px) {\n  .trust-badges { border-spacing: 0; }\n  .trust-badges, .trust-badges tbody, .trust-badges tr, .trust-badges td {\n    display: block;\n    width: 100%;\n  }\n  .trust-badges td {\n    margin-bottom: 10px;\n  }\n  .trust-badge-icon svg { width: 38px; height: 38px; }\n  .trust-badge-title { font-size: 13px; }\n  .trust-badge-sub   { font-size: 11px; }\n}\n.section {\n  margin-bottom: 32px;\n}\n.section:last-child {\n  margin-bottom: 0;\n}\n.section-title {\n  font-family: \"Helvetica Neue\", Arial, sans-serif;\n  font-size: 18px;\n  font-weight: 600;\n  color: #111827;\n  margin: 0 0 16px 0;\n  padding-bottom: 8px;\n  border-bottom: 2px solid #d1d5db;\n}\n\/* Carousel layout — ghost-anchor + :target + transform pattern.\n   PR-Carousel-GhostAnchor: arrows work without page jump. The trick:\n   each slide's \"anchor link target\" is a hidden \u003ca id=\"g-slide-N\"\u003e\n   element with position: fixed; top: 0. Because the anchor is\n   already pinned to the viewport top, when the buyer clicks\n   \u003ca href=\"#g-slide-N\"\u003e the browser sees the target as already in\n   view and does NOT scroll the page vertically. We then use CSS\n   :target + general sibling selector (~) to apply translateX on\n   the .gallery-track, sliding the requested image into view\n   horizontally with a smooth animation. Zero JS.\n\n   This is the same pattern eBay's own listing photo galleries use\n   server-side (rendered to plain HTML when JS is disabled). Works\n   in every browser that supports :target (basically everything\n   since ~IE9). *\/\n.image-gallery {\n  width: 100%;\n  max-width: 600px;\n  margin: 0 auto;\n}\n\/* Ghost anchors: invisible 1px targets pinned to viewport top via\n   position: fixed. Browser's scroll-into-view for fragment links\n   sees them as already-in-view, so no vertical page scroll happens.\n   pointer-events: none so they never intercept clicks\/hovers. *\/\n.gallery-anchor {\n  position: fixed;\n  top: 0;\n  left: 0;\n  width: 1px;\n  height: 1px;\n  opacity: 0;\n  pointer-events: none;\n}\n.gallery-carousel {\n  \/* overflow: hidden (not auto) — we control the visible slide via\n     transform, not via the native scroll position. This is what lets\n     the arrow navigation NOT cause any scroll on the page or in the\n     container. *\/\n  position: relative;\n  overflow: hidden;\n  border-radius: 12px;\n  border: 1px solid #d1d5db;\n  background: #f8fafc;\n}\n.gallery-track {\n  \/* The track is a horizontal flex row that gets translated as a\n     whole. Default position shows the first slide. transition makes\n     the change between slides feel like a native swipe rather than\n     a jarring jump. *\/\n  display: flex;\n  width: 100%;\n  transform: translateX(0);\n  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);\n}\n.gallery-slide {\n  \/* Each slide takes the full track width — flex: 0 0 100% locks\n     this so a 4-slide track is 400% wide internally but each slide\n     fills the carousel viewport one at a time. *\/\n  flex: 0 0 100%;\n  position: relative;\n  aspect-ratio: 1 \/ 1;\n  display: flex;\n  align-items: center;\n  justify-content: center;\n  background: #ffffff;\n}\n.gallery-slide img {\n  \/* object-fit: contain so we never crop the product. White slide\n     background letterboxes non-square source images. *\/\n  width: 100%;\n  height: 100%;\n  object-fit: contain;\n  display: block;\n  -webkit-user-drag: none;\n  user-select: none;\n}\n\/* Fully transparent nav arrows — no pill, no background.\n   Just a chunky white chevron glyph with a strong drop-shadow so\n   it stays readable over both light and dark product photos.\n   Operator feedback: \"şefaf olmamış gene siyahlık var arkasında\" —\n   earlier rgba(15,23,42,0.18) pill was still too visible. *\/\n.gallery-nav {\n  position: absolute;\n  top: 50%;\n  transform: translateY(-50%);\n  width: 48px;\n  height: 80px;\n  display: flex;\n  align-items: center;\n  justify-content: center;\n  \/* No background, no border. The text-shadow IS the affordance. *\/\n  background: transparent;\n  color: #ffffff;\n  text-decoration: none;\n  font-size: 56px;\n  line-height: 1;\n  font-weight: 300;\n  font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Arial, sans-serif;\n  \/* Heavy text-shadow gives the glyph a halo that reads on any\n     background. Three stacked shadows produce a soft outline rather\n     than a single hard drop-shadow. *\/\n  text-shadow:\n    0 0 4px rgba(0, 0, 0, 0.6),\n    0 0 12px rgba(0, 0, 0, 0.4),\n    0 2px 6px rgba(0, 0, 0, 0.5);\n  -webkit-user-select: none;\n  user-select: none;\n  opacity: 0.85;\n  transition: opacity 0.15s ease, transform 0.15s ease;\n  z-index: 2;\n}\n.gallery-nav:hover,\n.gallery-nav:focus {\n  opacity: 1;\n  outline: none;\n}\n.gallery-nav-prev {\n  left: 8px;\n}\n.gallery-nav-next {\n  right: 8px;\n}\n\/* :target-driven slide transitions. Each ghost-anchor :target rule\n   shifts the track by -100% per slide index. The general sibling\n   combinator (~) works because the ghost-anchors and the\n   .gallery-carousel are siblings inside .image-gallery. *\/\n#g-slide-1:target ~ .gallery-carousel .gallery-track { transform: translateX(0); }\n#g-slide-2:target ~ .gallery-carousel .gallery-track { transform: translateX(-100%); }\n#g-slide-3:target ~ .gallery-carousel .gallery-track { transform: translateX(-200%); }\n#g-slide-4:target ~ .gallery-carousel .gallery-track { transform: translateX(-300%); }\n#g-slide-5:target ~ .gallery-carousel .gallery-track { transform: translateX(-400%); }\n#g-slide-6:target ~ .gallery-carousel .gallery-track { transform: translateX(-500%); }\n#g-slide-7:target ~ .gallery-carousel .gallery-track { transform: translateX(-600%); }\n#g-slide-8:target ~ .gallery-carousel .gallery-track { transform: translateX(-700%); }\n#g-slide-9:target ~ .gallery-carousel .gallery-track { transform: translateX(-800%); }\n#g-slide-10:target ~ .gallery-carousel .gallery-track { transform: translateX(-900%); }\n#g-slide-11:target ~ .gallery-carousel .gallery-track { transform: translateX(-1000%); }\n#g-slide-12:target ~ .gallery-carousel .gallery-track { transform: translateX(-1100%); }\n.gallery-hint {\n  text-align: center;\n  font-size: 13px;\n  color: #64748b;\n  margin-top: 10px;\n  letter-spacing: 0.3px;\n  line-height: 1.5;\n}\n.gallery-hint strong {\n  color: #475569;\n  font-weight: 600;\n}\n\/* Description *\/\n.description {\n  font-size: 15px;\n  line-height: 1.8;\n}\n\/* Features List *\/\n.features-list {\n  list-style: none;\n  padding: 0;\n  margin: 0;\n}\n.features-list li {\n  padding: 10px 0 10px 32px;\n  position: relative;\n  border-bottom: 1px solid #d1d5db;\n}\n.features-list li:last-child {\n  border-bottom: none;\n}\n.features-list li:before {\n  content: \"✓\";\n  position: absolute;\n  left: 0;\n  color: #10b981;\n  font-weight: bold;\n  font-size: 16px;\n}\n\/* Specifications Table *\/\n.specs-table {\n  width: 100%;\n  border-collapse: collapse;\n}\n.specs-table tr:nth-child(even) {\n  background: rgba(0,0,0,0.02);\n}\n.specs-table td {\n  padding: 12px;\n  border: 1px solid #d1d5db;\n  font-size: 14px;\n}\n.specs-table td:first-child {\n  font-weight: 600;\n  width: 35%;\n  background: rgba(0,0,0,0.03);\n}\n\/* Policies *\/\n.policies {\n  display: flex;\n  gap: 24px;\n  flex-wrap: wrap;\n}\n.policy-box {\n  flex: 1;\n  min-width: 250px;\n  padding: 16px;\n  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);\n  border-radius: 8px;\n  border-left: 4px solid #0ea5e9;\n}\n.policy-box h4 {\n  margin: 0 0 8px 0;\n  font-size: 14px;\n  color: #0369a1;\n}\n.policy-box p {\n  margin: 0;\n  font-size: 13px;\n  color: #475569;\n}\n\/* Footer *\/\n.template-footer {\n  text-align: center;\n  padding: 20px;\n  background: #d1d5db;\n  border-radius: 0 0 4px 4px;\n  font-size: 13px;\n  color: #6b7280;\n}\n.store-name {\n  font-weight: 600;\n  color: #111827;\n}\n\n\/* Mobile Responsive *\/\n@media screen and (max-width: 600px) {\n  .ebay-template {\n    font-size: 14px;\n  }\n  .template-header {\n    padding: 16px;\n  }\n  .template-header h1 {\n    font-size: 18px;\n  }\n  .template-body {\n    padding: 16px;\n  }\n  .section-title {\n    font-size: 16px;\n  }\n  .image-gallery {\n    \/* Carousel already 100%\/max-600 on desktop — on mobile we let it\n       stretch full width minus the .template-body padding. *\/\n    max-width: 100%;\n  }\n  .gallery-carousel {\n    border-radius: 8px;\n  }\n  .gallery-nav {\n    \/* Smaller chevron on mobile so it doesn't dominate the photo. *\/\n    font-size: 44px;\n    width: 36px;\n    height: 64px;\n  }\n  .gallery-nav-prev { left: 4px; }\n  .gallery-nav-next { right: 4px; }\n  .policies {\n    flex-direction: column;\n  }\n  .specs-table td {\n    padding: 8px;\n    font-size: 13px;\n  }\n  .specs-table td:first-child {\n    width: 40%;\n  }\n}\n\u003c\/style\u003e\n\u003cdiv class=\"ebay-template\"\u003e\n\n\u003cdiv class=\"template-header\"\u003e\n  \u003ch1\u003eTravel Scrapbooking Supplies Kit, A6 Notebook, Vintage Junk Journaling Kit\u003c\/h1\u003e\n  \n  \n\u003c\/div\u003e\n\n\u003cdiv class=\"template-body\"\u003e\n  \u003cdiv class=\"section\"\u003e\n    \u003cdiv class=\"image-gallery\"\u003e\n      \u003ca id=\"g-slide-1\" class=\"gallery-anchor\" aria-hidden=\"true\"\u003e\u003c\/a\u003e\n      \u003ca id=\"g-slide-2\" class=\"gallery-anchor\" aria-hidden=\"true\"\u003e\u003c\/a\u003e\n      \u003ca id=\"g-slide-3\" class=\"gallery-anchor\" aria-hidden=\"true\"\u003e\u003c\/a\u003e\n      \u003ca id=\"g-slide-4\" class=\"gallery-anchor\" aria-hidden=\"true\"\u003e\u003c\/a\u003e\n      \u003ca id=\"g-slide-5\" class=\"gallery-anchor\" aria-hidden=\"true\"\u003e\u003c\/a\u003e\n      \u003ca id=\"g-slide-6\" class=\"gallery-anchor\" aria-hidden=\"true\"\u003e\u003c\/a\u003e\n      \u003ca id=\"g-slide-7\" class=\"gallery-anchor\" aria-hidden=\"true\"\u003e\u003c\/a\u003e\n      \u003ca id=\"g-slide-8\" class=\"gallery-anchor\" aria-hidden=\"true\"\u003e\u003c\/a\u003e\n      \u003cdiv class=\"gallery-carousel\"\u003e\n        \u003cdiv class=\"gallery-track\"\u003e\n          \u003cdiv class=\"gallery-slide\"\u003e\n            \u003cimg src=\"https:\/\/i.ebayimg.com\/00\/s\/MTYwMFgxNjAw\/z\/KsgAAeSwRHNqiN-4\/$_12.JPG?set_id=880000500F\" alt=\"Product Image\" loading=\"lazy\"\u003e\n          \u003ca href=\"#g-slide-8\" class=\"gallery-nav gallery-nav-prev\" aria-label=\"Previous image\"\u003e‹\u003c\/a\u003e\n          \u003ca href=\"#g-slide-2\" class=\"gallery-nav gallery-nav-next\" aria-label=\"Next image\"\u003e›\u003c\/a\u003e\n          \u003c\/div\u003e\n          \u003cdiv class=\"gallery-slide\"\u003e\n            \u003cimg src=\"https:\/\/i.ebayimg.com\/00\/s\/MTU1MVgxNTg3\/z\/N5cAAeSwIMRqiN-h\/$_12.JPG?set_id=880000500F\" alt=\"Product Image\" loading=\"lazy\"\u003e\n          \u003ca href=\"#g-slide-1\" class=\"gallery-nav gallery-nav-prev\" aria-label=\"Previous image\"\u003e‹\u003c\/a\u003e\n          \u003ca href=\"#g-slide-3\" class=\"gallery-nav gallery-nav-next\" aria-label=\"Next image\"\u003e›\u003c\/a\u003e\n          \u003c\/div\u003e\n          \u003cdiv class=\"gallery-slide\"\u003e\n            \u003cimg src=\"https:\/\/i.ebayimg.com\/00\/s\/NDkxWDUwMA==\/z\/P0oAAeSwvW9qiN-j\/$_1.JPG?set_id=8800005007\" alt=\"Product Image\" loading=\"lazy\"\u003e\n          \u003ca href=\"#g-slide-2\" class=\"gallery-nav gallery-nav-prev\" aria-label=\"Previous image\"\u003e‹\u003c\/a\u003e\n          \u003ca href=\"#g-slide-4\" class=\"gallery-nav gallery-nav-next\" aria-label=\"Next image\"\u003e›\u003c\/a\u003e\n          \u003c\/div\u003e\n          \u003cdiv class=\"gallery-slide\"\u003e\n            \u003cimg src=\"https:\/\/i.ebayimg.com\/00\/s\/MTYwMFgxNjAw\/z\/SyEAAeSwZPBqiN-m\/$_12.JPG?set_id=880000500F\" alt=\"Product Image\" loading=\"lazy\"\u003e\n          \u003ca href=\"#g-slide-3\" class=\"gallery-nav gallery-nav-prev\" aria-label=\"Previous image\"\u003e‹\u003c\/a\u003e\n          \u003ca href=\"#g-slide-5\" class=\"gallery-nav gallery-nav-next\" aria-label=\"Next image\"\u003e›\u003c\/a\u003e\n          \u003c\/div\u003e\n          \u003cdiv class=\"gallery-slide\"\u003e\n            \u003cimg src=\"https:\/\/i.ebayimg.com\/00\/s\/NTAwWDUwMA==\/z\/RXkAAeSwBO5qiN-n\/$_1.JPG?set_id=8800005007\" alt=\"Product Image\" loading=\"lazy\"\u003e\n          \u003ca href=\"#g-slide-4\" class=\"gallery-nav gallery-nav-prev\" aria-label=\"Previous image\"\u003e‹\u003c\/a\u003e\n          \u003ca href=\"#g-slide-6\" class=\"gallery-nav gallery-nav-next\" aria-label=\"Next image\"\u003e›\u003c\/a\u003e\n          \u003c\/div\u003e\n          \u003cdiv class=\"gallery-slide\"\u003e\n            \u003cimg src=\"https:\/\/i.ebayimg.com\/00\/s\/MTYwMFgxNjAw\/z\/Qn8AAeSwE~FqiN-r\/$_12.JPG?set_id=880000500F\" alt=\"Product Image\" loading=\"lazy\"\u003e\n          \u003ca href=\"#g-slide-5\" class=\"gallery-nav gallery-nav-prev\" aria-label=\"Previous image\"\u003e‹\u003c\/a\u003e\n          \u003ca href=\"#g-slide-7\" class=\"gallery-nav gallery-nav-next\" aria-label=\"Next image\"\u003e›\u003c\/a\u003e\n          \u003c\/div\u003e\n          \u003cdiv class=\"gallery-slide\"\u003e\n            \u003cimg src=\"https:\/\/i.ebayimg.com\/00\/s\/NTAwWDUwMA==\/z\/RR0AAeSwWhdqiN-r\/$_1.JPG?set_id=8800005007\" alt=\"Product Image\" loading=\"lazy\"\u003e\n          \u003ca href=\"#g-slide-6\" class=\"gallery-nav gallery-nav-prev\" aria-label=\"Previous image\"\u003e‹\u003c\/a\u003e\n          \u003ca href=\"#g-slide-8\" class=\"gallery-nav gallery-nav-next\" aria-label=\"Next image\"\u003e›\u003c\/a\u003e\n          \u003c\/div\u003e\n          \u003cdiv class=\"gallery-slide\"\u003e\n            \u003cimg src=\"https:\/\/i.ebayimg.com\/00\/s\/MTYwMFgxNjAw\/z\/KRIAAeSwkAlqiN-v\/$_12.JPG?set_id=880000500F\" alt=\"Product Image\" loading=\"lazy\"\u003e\n          \u003ca href=\"#g-slide-7\" class=\"gallery-nav gallery-nav-prev\" aria-label=\"Previous image\"\u003e‹\u003c\/a\u003e\n          \u003ca href=\"#g-slide-1\" class=\"gallery-nav gallery-nav-next\" aria-label=\"Next image\"\u003e›\u003c\/a\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003ctable class=\"trust-badges\" role=\"presentation\"\u003e\n    \u003ctbody\u003e\n      \u003ctr\u003e\n        \u003ctd\u003e\n          \u003cdiv class=\"trust-badge-inner\"\u003e\n            \u003cdiv class=\"trust-badge-icon\"\u003e\u003csvg viewbox=\"0 0 60 32\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" role=\"img\" aria-label=\"USA flag\"\u003e\n  \u003crect width=\"60\" height=\"32\" fill=\"#B22234\"\u003e\u003c\/rect\u003e\n  \u003crect y=\"3.2\" width=\"60\" height=\"3.2\" fill=\"#FFFFFF\"\u003e\u003c\/rect\u003e\n  \u003crect y=\"9.6\" width=\"60\" height=\"3.2\" fill=\"#FFFFFF\"\u003e\u003c\/rect\u003e\n  \u003crect y=\"16\" width=\"60\" height=\"3.2\" fill=\"#FFFFFF\"\u003e\u003c\/rect\u003e\n  \u003crect y=\"22.4\" width=\"60\" height=\"3.2\" fill=\"#FFFFFF\"\u003e\u003c\/rect\u003e\n  \u003crect y=\"28.8\" width=\"60\" height=\"3.2\" fill=\"#FFFFFF\"\u003e\u003c\/rect\u003e\n  \u003crect width=\"24\" height=\"17.2\" fill=\"#3C3B6E\"\u003e\u003c\/rect\u003e\n  \u003cg fill=\"#FFFFFF\"\u003e\n    \u003ccircle cx=\"4\" cy=\"3\" r=\"1.1\"\u003e\u003c\/circle\u003e\n    \u003ccircle cx=\"10\" cy=\"3\" r=\"1.1\"\u003e\u003c\/circle\u003e\n    \u003ccircle cx=\"16\" cy=\"3\" r=\"1.1\"\u003e\u003c\/circle\u003e\n    \u003ccircle cx=\"7\" cy=\"6.5\" r=\"1.1\"\u003e\u003c\/circle\u003e\n    \u003ccircle cx=\"13\" cy=\"6.5\" r=\"1.1\"\u003e\u003c\/circle\u003e\n    \u003ccircle cx=\"19\" cy=\"6.5\" r=\"1.1\"\u003e\u003c\/circle\u003e\n    \u003ccircle cx=\"4\" cy=\"10\" r=\"1.1\"\u003e\u003c\/circle\u003e\n    \u003ccircle cx=\"10\" cy=\"10\" r=\"1.1\"\u003e\u003c\/circle\u003e\n    \u003ccircle cx=\"16\" cy=\"10\" r=\"1.1\"\u003e\u003c\/circle\u003e\n    \u003ccircle cx=\"7\" cy=\"13.5\" r=\"1.1\"\u003e\u003c\/circle\u003e\n    \u003ccircle cx=\"13\" cy=\"13.5\" r=\"1.1\"\u003e\u003c\/circle\u003e\n    \u003ccircle cx=\"19\" cy=\"13.5\" r=\"1.1\"\u003e\u003c\/circle\u003e\n  \u003c\/g\u003e\n\u003c\/svg\u003e\u003c\/div\u003e\n            \u003cdiv class=\"trust-badge-text\"\u003e\n              \u003cp class=\"trust-badge-title\"\u003eShips from USA\u003c\/p\u003e\n              \u003cp class=\"trust-badge-sub\"\u003eFast US shipping\u003c\/p\u003e\n            \u003c\/div\u003e\n          \u003c\/div\u003e\n        \u003c\/td\u003e\n        \u003ctd\u003e\n          \u003cdiv class=\"trust-badge-inner\"\u003e\n            \u003cdiv class=\"trust-badge-icon\"\u003e\u003csvg viewbox=\"0 0 64 40\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" role=\"img\" aria-label=\"Free delivery truck\"\u003e\n  \u003crect x=\"2\" y=\"10\" width=\"34\" height=\"20\" rx=\"2\" fill=\"#1E3A8A\"\u003e\u003c\/rect\u003e\n  \u003cpath d=\"M36 14 L52 14 L60 22 L60 30 L36 30 Z\" fill=\"#3B82F6\"\u003e\u003c\/path\u003e\n  \u003crect x=\"40\" y=\"16\" width=\"10\" height=\"8\" fill=\"#BFDBFE\"\u003e\u003c\/rect\u003e\n  \u003ccircle cx=\"14\" cy=\"32\" r=\"4.5\" fill=\"#1F2937\"\u003e\u003c\/circle\u003e\n  \u003ccircle cx=\"14\" cy=\"32\" r=\"1.6\" fill=\"#9CA3AF\"\u003e\u003c\/circle\u003e\n  \u003ccircle cx=\"50\" cy=\"32\" r=\"4.5\" fill=\"#1F2937\"\u003e\u003c\/circle\u003e\n  \u003ccircle cx=\"50\" cy=\"32\" r=\"1.6\" fill=\"#9CA3AF\"\u003e\u003c\/circle\u003e\n  \u003cline x1=\"0\" y1=\"16\" x2=\"6\" y2=\"16\" stroke=\"#3B82F6\" stroke-width=\"1.5\" stroke-linecap=\"round\"\u003e\u003c\/line\u003e\n  \u003cline x1=\"0\" y1=\"20\" x2=\"4\" y2=\"20\" stroke=\"#3B82F6\" stroke-width=\"1.5\" stroke-linecap=\"round\"\u003e\u003c\/line\u003e\n  \u003cline x1=\"0\" y1=\"24\" x2=\"6\" y2=\"24\" stroke=\"#3B82F6\" stroke-width=\"1.5\" stroke-linecap=\"round\"\u003e\u003c\/line\u003e\n\u003c\/svg\u003e\u003c\/div\u003e\n            \u003cdiv class=\"trust-badge-text\"\u003e\n              \u003cp class=\"trust-badge-title\"\u003eFree Delivery\u003c\/p\u003e\n              \u003cp class=\"trust-badge-sub\"\u003eTracking number provided\u003c\/p\u003e\n            \u003c\/div\u003e\n          \u003c\/div\u003e\n        \u003c\/td\u003e\n      \u003c\/tr\u003e\n    \u003c\/tbody\u003e\n  \u003c\/table\u003e\n\n  \u003cdiv class=\"section\"\u003e\n    \u003ch2 class=\"section-title\"\u003eKey Features\u003c\/h2\u003e\n    \u003cul class=\"features-list\"\u003e\n    \u003cli\u003eCOMPLETE SCRAPBOOK SUPPLIES KIT: Each set includes an A6 grid notebook plus a curated assortment of scrapbook papers, PET and washi stickers, note papers, pockets, photo frames, cards, and washi tape. This all-in-one collection offers a versatile starting point for scrapbooking, junk journaling, bullet journaling, collaging, and DIY paper crafts\u003c\/li\u003e\n    \u003cli\u003eA6 GRID NOTEBOOK WITH 200+ PAGES: The included 5.8 x 4.1 inch notebook features more than 200 grid pages for writing, planning, sketching, and creative layouts. Its compact A6 format fits easily into a tote, backpack, or purse, making it convenient for journaling at home, while traveling, or whenever inspiration strikes\u003c\/li\u003e\n    \u003cli\u003eCOORDINATED AESTHETIC THEME: Every themed set pairs matching colors, patterns, and decorative elements across its papers, stickers, cards, and accessories. The cohesive design helps you create polished scrapbook pages and journal spreads while leaving plenty of room to mix, layer, and express your own style\u003c\/li\u003e\n    \u003cli\u003eEASY TO CREATE AND CUSTOMIZE: Clearly printed designs, varied paper textures, and easy-to-use embellishments make cutting, tearing, layering, and decorating simple. Beginners can start with confidence, while experienced journal makers can combine the materials in new ways for planners, collages, pen-pal letters, and handmade projects\u003c\/li\u003e\n    \u003cli\u003eTHOUGHTFUL GIFT FOR JOURNAL LOVERS: A creative gift for women, teens, scrapbookers, journal lovers, students, and craft enthusiasts. Ideal for birthdays, Christmas, holidays, care packages, or personal creative time, this coordinated kit encourages hands-on creativity and makes every project feel more personal\u003c\/li\u003e\n    \u003c\/ul\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"section\"\u003e\n    \u003ch2 class=\"section-title\"\u003eShipping \u0026amp; Returns\u003c\/h2\u003e\n    \u003cdiv class=\"policies\"\u003e\n      \n      \u003cdiv class=\"policy-box\"\u003e\n        \u003ch4\u003e📦 Shipping\u003c\/h4\u003e\n        \u003cp\u003eFast, secure shipping. Items are carefully packaged and shipped within 1-2 business days. Tracking number provided.\u003c\/p\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"policy-box\"\u003e\n        \u003ch4\u003e↩️ Returns\u003c\/h4\u003e\n        \u003cp\u003e30-day hassle-free returns. If you're not satisfied, return the item in original condition for a full refund.\u003c\/p\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e","brand":"Unbranded","offers":[{"title":"Default Title","offer_id":55621435588899,"sku":"318765378970","price":51.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0859\/3103\/2867\/files\/s-l1600_945c8c12-25ff-413f-8379-39b434a176b8.jpg?v=1789927532","url":"https:\/\/bestgiftyy.com\/products\/travel-scrapbooking-supplies-kit-with-a6-notebook-and-vintage-paper-crafts","provider":"BestGiftyy","version":"1.0","type":"link"}