{"product_id":"lighted-tabletop-christmas-tree-pre-decorated-holiday-tree-with-ornaments-warm-lights","title":"🎄Lighted Tabletop Christmas Tree – Pre-Decorated Holiday Tree with Ornaments \u0026 Warm Lights","description":"\u003cstyle\u003e\n\/* =========================================================\n   GLOWFORU LIGHTED TABLETOP CHRISTMAS TREE\n   6 STYLES × 2 SIZES\n   WARM CHRISTMAS + HEAVY FALLING SNOW\n========================================================= *\/\n\n.gf-xmas-tree,\n.gf-xmas-tree * {\n  box-sizing:border-box;\n}\n\n.gf-xmas-tree {\n  --green:#31483c;\n  --green-dark:#24382f;\n  --green-light:#607367;\n\n  --red:#8e3947;\n  --red-dark:#6e2935;\n\n  --gold:#c69a55;\n  --gold-light:#edd7aa;\n\n  --cream:#fff9ef;\n  --beige:#eadbc7;\n  --beige-dark:#d8c1a3;\n\n  --text:#342d26;\n  --muted:#71675d;\n\n  position:relative;\n  isolation:isolate;\n\n  width:100%;\n  max-width:820px;\n\n  margin:0 auto;\n  padding:14px 14px 46px;\n\n  overflow:hidden;\n\n  border-radius:22px;\n  border:1px solid rgba(181,143,92,.34);\n\n  font-family:inherit;\n  color:var(--text);\n  line-height:1.55;\n\n  background:\n    radial-gradient(\n      circle at 7% 4%,\n      rgba(255,255,255,.72),\n      transparent 17%\n    ),\n    radial-gradient(\n      circle at 94% 8%,\n      rgba(198,154,85,.20),\n      transparent 21%\n    ),\n    radial-gradient(\n      circle at 8% 27%,\n      rgba(142,57,71,.10),\n      transparent 23%\n    ),\n    radial-gradient(\n      circle at 93% 46%,\n      rgba(198,154,85,.15),\n      transparent 25%\n    ),\n    radial-gradient(\n      circle at 10% 70%,\n      rgba(49,72,60,.09),\n      transparent 23%\n    ),\n    radial-gradient(\n      circle at 92% 88%,\n      rgba(142,57,71,.12),\n      transparent 26%\n    ),\n    linear-gradient(\n      180deg,\n      #dcc5a8 0%,\n      #efe0cd 9%,\n      #faf2e6 22%,\n      #ead9c3 39%,\n      #fff9ef 55%,\n      #e8d7c0 74%,\n      #f4e6d5 89%,\n      #d9c1a2 100%\n    );\n\n  box-shadow:\n    0 10px 34px rgba(78,55,32,.13);\n}\n\n\n\/* =========================================================\n   NORMAL CONTENT\n========================================================= *\/\n\n.gf-xmas-tree \u003e *:not(.gf-snow-layer) {\n  position:relative;\n  z-index:10;\n}\n\n.gf-xmas-tree img {\n  display:block;\n  width:100%;\n  height:auto;\n}\n\n\n\/* =========================================================\n   GLOBAL FALLING SNOW LAYER\n========================================================= *\/\n\n.gf-xmas-tree .gf-snow-layer {\n  position:absolute;\n\n  top:0;\n  left:0;\n\n  width:100%;\n  height:100%;\n\n  z-index:60;\n\n  overflow:hidden;\n  pointer-events:none;\n\n  border-radius:inherit;\n}\n\n\n\/* =========================================================\n   SNOW FLAKES\n========================================================= *\/\n\n.gf-xmas-tree .gf-snowflake {\n  position:absolute;\n\n  top:-90px;\n\n  display:block;\n\n  line-height:1;\n\n  pointer-events:none;\n  user-select:none;\n\n  color:rgba(255,255,255,.92);\n\n  text-shadow:\n    0 0 4px rgba(255,255,255,.90),\n    0 0 9px rgba(255,255,255,.54),\n    0 2px 3px rgba(70,48,30,.12);\n\n  filter:\n    drop-shadow(\n      0 2px 2px rgba(65,45,28,.12)\n    );\n\n  will-change:\n    transform,\n    margin-left,\n    opacity;\n\n  animation-name:\n    gfSnowFall,\n    gfSnowDrift;\n\n  animation-timing-function:\n    linear,\n    ease-in-out;\n\n  animation-iteration-count:\n    infinite,\n    infinite;\n}\n\n\n\/* Warm ivory snow *\/\n\n.gf-xmas-tree .gf-snowflake.gf-warm {\n  color:rgba(255,245,218,.96);\n\n  text-shadow:\n    0 0 5px rgba(255,245,220,.95),\n    0 0 11px rgba(225,193,136,.48);\n}\n\n\n\/* Softer background snow *\/\n\n.gf-xmas-tree .gf-snowflake.gf-soft {\n  filter:blur(.35px);\n\n  opacity:.55;\n}\n\n\n\/* Larger foreground snow *\/\n\n.gf-xmas-tree .gf-snowflake.gf-near {\n  text-shadow:\n    0 0 5px rgba(255,255,255,.95),\n    0 0 14px rgba(255,255,255,.65),\n    0 3px 4px rgba(55,40,25,.12);\n}\n\n\n\/* =========================================================\n   SNOW ANIMATION\n========================================================= *\/\n\n@keyframes gfSnowFall {\n\n  0% {\n    transform:\n      translateY(-110px)\n      rotate(0deg);\n\n    opacity:0;\n  }\n\n  4% {\n    opacity:var(--flake-opacity);\n  }\n\n  91% {\n    opacity:var(--flake-opacity);\n  }\n\n  100% {\n    transform:\n      translateY(var(--snow-distance))\n      rotate(var(--snow-rotate));\n\n    opacity:0;\n  }\n\n}\n\n\n@keyframes gfSnowDrift {\n\n  0% {\n    margin-left:0;\n  }\n\n  20% {\n    margin-left:var(--snow-drift);\n  }\n\n  43% {\n    margin-left:calc(\n      var(--snow-drift) * -.55\n    );\n  }\n\n  68% {\n    margin-left:calc(\n      var(--snow-drift) * .85\n    );\n  }\n\n  84% {\n    margin-left:calc(\n      var(--snow-drift) * -.25\n    );\n  }\n\n  100% {\n    margin-left:0;\n  }\n\n}\n\n\n\/* =========================================================\n   BASE SECTIONS\n========================================================= *\/\n\n.gf-xmas-tree .gf-section,\n.gf-xmas-tree .gf-hero,\n.gf-xmas-tree .gf-trust,\n.gf-xmas-tree .gf-final {\n  width:100%;\n\n  margin:20px auto 0;\n  padding:25px 20px;\n\n  border-radius:15px;\n\n  overflow:hidden;\n\n  border:\n    1px solid rgba(171,135,89,.30);\n\n  box-shadow:\n    0 6px 20px rgba(80,57,34,.08);\n}\n\n\n\/* =========================================================\n   DECORATIVE CHRISTMAS SYMBOLS\n========================================================= *\/\n\n.gf-xmas-tree .gf-static-snow:before {\n  content:\"❄   ✦   ❄   ✧   ❄\";\n\n  position:absolute;\n\n  top:8px;\n  left:0;\n  right:0;\n\n  z-index:0;\n\n  text-align:center;\n\n  color:rgba(255,249,232,.31);\n\n  font-size:17px;\n  letter-spacing:11px;\n\n  pointer-events:none;\n}\n\n.gf-xmas-tree .gf-static-snow \u003e * {\n  position:relative;\n  z-index:1;\n}\n\n\n\/* =========================================================\n   TRUST\n========================================================= *\/\n\n.gf-xmas-tree .gf-trust {\n  margin-top:0;\n\n  color:#fff;\n\n  background:\n    radial-gradient(\n      circle at 10% 15%,\n      rgba(238,215,170,.27),\n      transparent 30%\n    ),\n    radial-gradient(\n      circle at 89% 15%,\n      rgba(152,58,72,.44),\n      transparent 35%\n    ),\n    linear-gradient(\n      135deg,\n      #31473b 0%,\n      #44594b 48%,\n      #73313d 100%\n    );\n\n  border-color:\n    rgba(238,215,170,.54);\n}\n\n.gf-xmas-tree .gf-trust-title {\n  margin:0 0 14px;\n\n  text-align:center;\n\n  color:#fff8e9;\n\n  font-size:19px;\n  font-weight:850;\n}\n\n.gf-xmas-tree .gf-trust-grid {\n  display:grid;\n\n  grid-template-columns:\n    repeat(4,1fr);\n\n  gap:9px;\n}\n\n.gf-xmas-tree .gf-trust-card {\n  padding:14px 7px;\n\n  text-align:center;\n\n  background:\n    rgba(255,250,241,.97);\n\n  border:\n    1px solid rgba(232,207,163,.68);\n\n  border-radius:10px;\n}\n\n.gf-xmas-tree .gf-trust-card span {\n  display:block;\n\n  margin-bottom:5px;\n\n  font-size:23px;\n}\n\n.gf-xmas-tree .gf-trust-card strong {\n  display:block;\n\n  color:#342920;\n\n  font-size:13px;\n  line-height:1.3;\n}\n\n.gf-xmas-tree .gf-trust-card small {\n  display:block;\n\n  margin-top:4px;\n\n  color:#786d61;\n\n  font-size:11.5px;\n  line-height:1.35;\n}\n\n\n\/* =========================================================\n   LARGE SQUARE GIF UNDER TRUST CARDS\n========================================================= *\/\n\n.gf-xmas-tree .gf-trust-gif {\n  width:100%;\n  aspect-ratio:1 \/ 1;\n  margin-top:12px;\n  overflow:hidden;\n  border-radius:14px;\n  background:#fffaf1;\n  border:1px solid rgba(232,207,163,.72);\n  box-shadow:0 8px 22px rgba(44,30,18,.16);\n}\n\n.gf-xmas-tree .gf-trust-gif img {\n  display:block;\n  width:100%;\n  height:100%;\n  object-fit:cover;\n  object-position:center;\n}\n\n\n\/* =========================================================\n   HERO\n========================================================= *\/\n\n.gf-xmas-tree .gf-hero {\n  text-align:center;\n\n  background:\n    radial-gradient(\n      circle at 8% 13%,\n      rgba(237,212,162,.28),\n      transparent 29%\n    ),\n    radial-gradient(\n      circle at 91% 17%,\n      rgba(145,53,68,.40),\n      transparent 32%\n    ),\n    radial-gradient(\n      circle at 50% 100%,\n      rgba(255,247,230,.13),\n      transparent 42%\n    ),\n    linear-gradient(\n      135deg,\n      #394e42 0%,\n      #4d5e51 43%,\n      #71363f 100%\n    );\n\n  border-color:\n    rgba(233,207,159,.54);\n}\n\n.gf-xmas-tree .gf-eyebrow {\n  display:inline-block;\n\n  margin-bottom:10px;\n  padding:7px 13px;\n\n  color:#fff3d2;\n\n  background:\n    rgba(210,169,96,.18);\n\n  border:\n    1px solid rgba(236,213,169,.55);\n\n  border-radius:30px;\n\n  font-size:12px;\n  font-weight:850;\n  letter-spacing:.7px;\n}\n\n.gf-xmas-tree .gf-main-title {\n  max-width:730px;\n\n  margin:0 auto 11px;\n\n  color:#fff;\n\n  font-size:32px;\n  line-height:1.16;\n  font-weight:850;\n}\n\n.gf-xmas-tree .gf-main-title span {\n  color:#f0dab0;\n}\n\n.gf-xmas-tree .gf-hero-copy {\n  max-width:680px;\n\n  margin:0 auto;\n\n  color:#faf3e9;\n\n  font-size:16px;\n  line-height:1.62;\n}\n\n\n\/* =========================================================\n   HERO PILLS\n========================================================= *\/\n\n.gf-xmas-tree .gf-pills {\n  display:flex;\n\n  justify-content:center;\n  flex-wrap:wrap;\n\n  gap:8px;\n\n  margin:18px 0;\n}\n\n.gf-xmas-tree .gf-pill {\n  padding:8px 11px;\n\n  color:#392d23;\n\n  background:\n    rgba(255,249,238,.98);\n\n  border:\n    1px solid #ddc397;\n\n  border-radius:30px;\n\n  font-size:12.5px;\n  font-weight:800;\n}\n\n\n\/* =========================================================\n   GENERAL TYPOGRAPHY\n========================================================= *\/\n\n.gf-xmas-tree h2 {\n  max-width:710px;\n\n  margin:0 auto 10px;\n\n  text-align:center;\n\n  color:#3a332c;\n\n  font-size:27px;\n  line-height:1.2;\n  font-weight:850;\n}\n\n.gf-xmas-tree .gf-section \u003e p {\n  max-width:690px;\n\n  margin:0 auto 10px;\n\n  text-align:center;\n\n  color:#665d53;\n\n  font-size:15.5px;\n  line-height:1.62;\n}\n\n.gf-xmas-tree .gf-kicker {\n  margin-bottom:7px;\n\n  text-align:center;\n\n  color:#933747;\n\n  font-size:13px;\n  font-weight:850;\n  letter-spacing:.8px;\n}\n\n\n\/* =========================================================\n   PRODUCT IMAGES\n========================================================= *\/\n\n.gf-xmas-tree .gf-img {\n  width:100%;\n\n  margin-top:18px;\n\n  border-radius:12px;\n\n  border:\n    1px solid rgba(181,145,95,.35);\n\n  background:#fff;\n\n  box-shadow:\n    0 5px 16px rgba(96,68,40,.08);\n}\n\n\n\/* =========================================================\n   CREAM CHRISTMAS SECTION\n========================================================= *\/\n\n.gf-xmas-tree .gf-intro {\n  background:\n    radial-gradient(\n      circle at 95% 0%,\n      rgba(148,51,65,.09),\n      transparent 24%\n    ),\n    radial-gradient(\n      circle at 4% 100%,\n      rgba(198,154,85,.15),\n      transparent 25%\n    ),\n    linear-gradient(\n      135deg,\n      #fff8ee 0%,\n      #ead9c4 52%,\n      #f4e3dc 100%\n    );\n}\n\n\n\/* =========================================================\n   FEATURE GRID\n========================================================= *\/\n\n.gf-xmas-tree .gf-feature-grid {\n  display:grid;\n\n  grid-template-columns:\n    repeat(4,1fr);\n\n  gap:9px;\n\n  margin-top:19px;\n}\n\n.gf-xmas-tree .gf-feature {\n  padding:16px 9px;\n\n  text-align:center;\n\n  background:\n    rgba(255,252,246,.95);\n\n  border:\n    1px solid rgba(184,148,99,.35);\n\n  border-radius:11px;\n}\n\n.gf-xmas-tree .gf-feature span {\n  display:block;\n\n  margin-bottom:7px;\n\n  font-size:25px;\n}\n\n.gf-xmas-tree .gf-feature strong {\n  display:block;\n\n  color:#322a23;\n\n  font-size:13.5px;\n  line-height:1.3;\n}\n\n.gf-xmas-tree .gf-feature small {\n  display:block;\n\n  margin-top:5px;\n\n  color:#746a60;\n\n  font-size:12px;\n  line-height:1.4;\n}\n\n\n\/* =========================================================\n   SIX STYLES\n========================================================= *\/\n\n.gf-xmas-tree .gf-styles {\n  color:#fff;\n\n  background:\n    radial-gradient(\n      circle at 10% 15%,\n      rgba(234,209,159,.23),\n      transparent 29%\n    ),\n    radial-gradient(\n      circle at 92% 76%,\n      rgba(143,51,65,.43),\n      transparent 37%\n    ),\n    linear-gradient(\n      145deg,\n      #33493d 0%,\n      #46584b 47%,\n      #71353f 100%\n    );\n\n  border-color:\n    rgba(231,206,160,.50);\n}\n\n.gf-xmas-tree .gf-styles h2,\n.gf-xmas-tree .gf-styles \u003e p {\n  color:#fff !important;\n}\n\n.gf-xmas-tree .gf-style-grid {\n  display:grid;\n\n  grid-template-columns:\n    repeat(3,1fr);\n\n  gap:12px;\n\n  margin-top:20px;\n}\n\n.gf-xmas-tree .gf-style-card {\n  overflow:hidden;\n\n  background:#fffaf1;\n\n  border:\n    1px solid rgba(232,209,167,.68);\n\n  border-radius:12px;\n\n  box-shadow:\n    0 7px 18px rgba(44,30,18,.14);\n}\n\n.gf-xmas-tree .gf-style-card img {\n  width:100%;\n\n  aspect-ratio:1\/1;\n\n  object-fit:cover;\n}\n\n.gf-xmas-tree .gf-style-info {\n  padding:11px 8px 12px;\n\n  text-align:center;\n}\n\n.gf-xmas-tree .gf-style-info strong {\n  display:block;\n\n  color:#34291f;\n\n  font-size:13.5px;\n  line-height:1.3;\n}\n\n.gf-xmas-tree .gf-style-info small {\n  display:block;\n\n  margin-top:4px;\n\n  color:#786d61;\n\n  font-size:11.5px;\n}\n\n\n\/* =========================================================\n   SIZE SECTION\n========================================================= *\/\n\n.gf-xmas-tree .gf-sizes {\n  background:\n    radial-gradient(\n      circle at 93% 7%,\n      rgba(142,50,64,.09),\n      transparent 25%\n    ),\n    linear-gradient(\n      135deg,\n      #eddfce 0%,\n      #fff8ec 49%,\n      #e5d9ca 100%\n    );\n}\n\n.gf-xmas-tree .gf-size-grid {\n  display:grid;\n\n  grid-template-columns:\n    repeat(2,1fr);\n\n  gap:12px;\n\n  max-width:620px;\n\n  margin:20px auto 0;\n}\n\n.gf-xmas-tree .gf-size-card {\n  padding:22px 12px;\n\n  text-align:center;\n\n  background:\n    rgba(255,252,245,.97);\n\n  border:\n    1px solid rgba(160,116,71,.28);\n\n  border-radius:12px;\n\n  box-shadow:\n    0 5px 15px rgba(70,49,28,.06);\n}\n\n.gf-xmas-tree .gf-size-main {\n  display:block;\n\n  color:#923344;\n\n  font-size:29px;\n  line-height:1.1;\n  font-weight:850;\n}\n\n.gf-xmas-tree .gf-size-inch {\n  display:block;\n\n  margin-top:4px;\n\n  color:#786d62;\n\n  font-size:13px;\n}\n\n.gf-xmas-tree .gf-size-card strong {\n  display:block;\n\n  margin-top:10px;\n\n  color:#334b3e;\n\n  font-size:14px;\n}\n\n.gf-xmas-tree .gf-size-card small {\n  display:block;\n\n  margin-top:4px;\n\n  color:#71675d;\n\n  font-size:12px;\n  line-height:1.45;\n}\n\n.gf-xmas-tree .gf-combo-badge {\n  max-width:600px;\n\n  margin:17px auto 0;\n  padding:11px 13px;\n\n  text-align:center;\n\n  color:#fff9ed;\n\n  background:\n    linear-gradient(\n      90deg,\n      #445a4d 0%,\n      #8c3745 58%,\n      #b08549 100%\n    );\n\n  border:\n    1px solid rgba(225,197,145,.44);\n\n  border-radius:9px;\n\n  font-size:14px;\n  font-weight:800;\n}\n\n\n\/* =========================================================\n   LIGHT SECTION\n========================================================= *\/\n\n.gf-xmas-tree .gf-lights {\n  color:#fff;\n\n  background:\n    radial-gradient(\n      circle at 13% 25%,\n      rgba(255,218,143,.30),\n      transparent 29%\n    ),\n    radial-gradient(\n      circle at 88% 14%,\n      rgba(147,50,64,.38),\n      transparent 33%\n    ),\n    linear-gradient(\n      135deg,\n      #34493e 0%,\n      #4b5c4e 50%,\n      #73363f 100%\n    );\n\n  border-color:\n    rgba(226,197,141,.55);\n}\n\n.gf-xmas-tree .gf-lights h2,\n.gf-xmas-tree .gf-lights \u003e p {\n  color:#fff !important;\n}\n\n.gf-xmas-tree .gf-light-box {\n  max-width:680px;\n\n  margin:18px auto 0;\n  padding:17px;\n\n  color:#382e25;\n\n  background:\n    rgba(255,250,240,.97);\n\n  border:\n    1px solid #d5b77f;\n\n  border-radius:11px;\n}\n\n.gf-xmas-tree .gf-light-row {\n  position:relative;\n\n  padding:\n    6px 5px 6px 29px;\n\n  font-size:14px;\n  line-height:1.45;\n}\n\n.gf-xmas-tree .gf-light-row:before {\n  content:\"✦\";\n\n  position:absolute;\n\n  left:5px;\n  top:5px;\n\n  color:#bb8b38;\n\n  font-weight:900;\n}\n\n\n\/* =========================================================\n   PLACEMENT SECTION\n========================================================= *\/\n\n.gf-xmas-tree .gf-places {\n  background:\n    radial-gradient(\n      circle at 6% 5%,\n      rgba(197,154,87,.13),\n      transparent 25%\n    ),\n    linear-gradient(\n      135deg,\n      #e5d9ca 0%,\n      #fff7ea 50%,\n      #f0dfd9 100%\n    );\n}\n\n.gf-xmas-tree .gf-place-grid {\n  display:grid;\n\n  grid-template-columns:\n    repeat(4,1fr);\n\n  gap:9px;\n\n  margin-top:19px;\n}\n\n.gf-xmas-tree .gf-place {\n  padding:17px 7px;\n\n  text-align:center;\n\n  background:\n    rgba(255,252,245,.95);\n\n  border:\n    1px solid rgba(177,141,93,.31);\n\n  border-radius:10px;\n}\n\n.gf-xmas-tree .gf-place span {\n  display:block;\n\n  margin-bottom:5px;\n\n  font-size:24px;\n}\n\n.gf-xmas-tree .gf-place strong {\n  color:#352d26;\n\n  font-size:13px;\n}\n\n\n\/* =========================================================\n   PRODUCT INFO\n========================================================= *\/\n\n.gf-xmas-tree .gf-info {\n  background:\n    linear-gradient(\n      135deg,\n      #f0e2d0 0%,\n      #fff8ed 48%,\n      #e5d8c9 100%\n    );\n}\n\n.gf-xmas-tree .gf-spec {\n  width:100%;\n\n  margin-top:18px;\n\n  background:#fffdf8;\n\n  border:\n    1px solid #d8c19e;\n\n  border-spacing:0;\n  border-collapse:separate;\n\n  border-radius:11px;\n\n  overflow:hidden;\n\n  font-size:14px;\n}\n\n.gf-xmas-tree .gf-spec td {\n  padding:12px 11px;\n\n  border-bottom:\n    1px solid #eadfce;\n\n  vertical-align:top;\n}\n\n.gf-xmas-tree .gf-spec tr:last-child td {\n  border-bottom:0;\n}\n\n.gf-xmas-tree .gf-spec td:first-child {\n  width:34%;\n\n  color:#384a3e;\n\n  background:#f1e9dd;\n\n  font-weight:800;\n}\n\n.gf-xmas-tree .gf-note {\n  max-width:680px;\n\n  margin:13px auto 0;\n\n  text-align:center;\n\n  color:#776c60;\n\n  font-size:12px;\n  line-height:1.5;\n}\n\n\n\/* =========================================================\n   FAQ\n========================================================= *\/\n\n.gf-xmas-tree .gf-faq {\n  background:\n    radial-gradient(\n      circle at 95% 5%,\n      rgba(144,50,64,.10),\n      transparent 27%\n    ),\n    linear-gradient(\n      135deg,\n      #f0e1d9 0%,\n      #fff7ea 50%,\n      #e5d9cb 100%\n    );\n}\n\n.gf-xmas-tree details {\n  border-bottom:\n    1px solid rgba(112,93,71,.18);\n}\n\n.gf-xmas-tree details:last-child {\n  border-bottom:0;\n}\n\n.gf-xmas-tree summary {\n  position:relative;\n\n  padding:\n    16px 35px 16px 3px;\n\n  cursor:pointer;\n  list-style:none;\n\n  color:#332c25;\n\n  font-size:15px;\n  font-weight:800;\n}\n\n.gf-xmas-tree summary::-webkit-details-marker {\n  display:none;\n}\n\n.gf-xmas-tree summary:after {\n  content:\"+\";\n\n  position:absolute;\n\n  right:5px;\n  top:10px;\n\n  color:#903344;\n\n  font-size:25px;\n}\n\n.gf-xmas-tree details[open] summary:after {\n  content:\"−\";\n}\n\n.gf-xmas-tree .gf-answer {\n  padding:\n    0 7px 16px 3px;\n\n  color:#685e54;\n\n  font-size:14px;\n  line-height:1.6;\n}\n\n\n\/* =========================================================\n   FINAL CTA\n========================================================= *\/\n\n.gf-xmas-tree .gf-final {\n  text-align:center;\n\n  color:#fff;\n\n  background:\n    radial-gradient(\n      circle at 10% 10%,\n      rgba(234,207,158,.30),\n      transparent 28%\n    ),\n    radial-gradient(\n      circle at 90% 17%,\n      rgba(147,48,63,.46),\n      transparent 33%\n    ),\n    linear-gradient(\n      135deg,\n      #32483d 0%,\n      #4b5b4e 48%,\n      #79333f 100%\n    );\n\n  border-color:\n    rgba(234,211,169,.54);\n}\n\n.gf-xmas-tree .gf-final h2,\n.gf-xmas-tree .gf-final p {\n  color:#fff !important;\n}\n\n.gf-xmas-tree .gf-final-highlight {\n  margin-top:16px;\n\n  color:#f0d8ac;\n\n  font-size:18px;\n  font-weight:850;\n}\n\n\n\/* =========================================================\n   CTA\n========================================================= *\/\n\n.gf-xmas-tree .gf-cta {\n  display:block;\n\n  width:100%;\n  max-width:365px;\n\n  margin:20px auto 0;\n  padding:14px 18px;\n\n  border:0;\n  border-radius:9px;\n\n  cursor:pointer;\n\n  color:#fff;\n\n  background:\n    linear-gradient(\n      90deg,\n      #853040 0%,\n      #ad4552 50%,\n      #bd8f49 100%\n    );\n\n  box-shadow:\n    0 8px 20px rgba(80,39,39,.22);\n\n  font-family:inherit;\n\n  font-size:15px;\n  font-weight:850;\n}\n\n\n\/* =========================================================\n   MOBILE\n========================================================= *\/\n\n@media screen and (max-width:749px) {\n\n  .gf-xmas-tree {\n    padding:9px 9px 32px;\n\n    border-radius:16px;\n  }\n\n  .gf-xmas-tree .gf-section,\n  .gf-xmas-tree .gf-hero,\n  .gf-xmas-tree .gf-trust,\n  .gf-xmas-tree .gf-final {\n    margin-top:16px;\n\n    padding:19px 13px;\n\n    border-radius:11px;\n  }\n\n  .gf-xmas-tree .gf-trust {\n    margin-top:0;\n  }\n\n  .gf-xmas-tree .gf-main-title {\n    font-size:27px;\n  }\n\n  .gf-xmas-tree h2 {\n    font-size:23px;\n  }\n\n  .gf-xmas-tree .gf-section \u003e p,\n  .gf-xmas-tree .gf-hero-copy {\n    font-size:14.5px;\n  }\n\n  .gf-xmas-tree .gf-trust-grid {\n    grid-template-columns:\n      repeat(2,1fr);\n  }\n\n\n  .gf-xmas-tree .gf-trust-gif {\n    width:100%;\n    aspect-ratio:1 \/ 1;\n    margin-top:10px;\n    border-radius:12px;\n  }\n\n  .gf-xmas-tree .gf-feature-grid,\n  .gf-xmas-tree .gf-place-grid {\n    grid-template-columns:\n      repeat(2,1fr);\n  }\n\n  .gf-xmas-tree .gf-style-grid {\n    grid-template-columns:\n      repeat(2,1fr);\n\n    gap:9px;\n  }\n\n  .gf-xmas-tree .gf-size-grid {\n    grid-template-columns:\n      repeat(2,1fr);\n\n    gap:8px;\n  }\n\n  .gf-xmas-tree .gf-size-card {\n    padding:18px 7px;\n  }\n\n  .gf-xmas-tree .gf-size-main {\n    font-size:25px;\n  }\n\n  .gf-xmas-tree .gf-spec {\n    font-size:13px;\n  }\n\n  .gf-xmas-tree .gf-spec td {\n    padding:10px 7px;\n  }\n\n  .gf-xmas-tree .gf-spec td:first-child {\n    width:38%;\n  }\n\n}\n\n\n\/* =========================================================\n   REDUCED MOTION\n========================================================= *\/\n\n@media (prefers-reduced-motion:reduce) {\n\n  .gf-xmas-tree .gf-snowflake {\n    display:none !important;\n    animation:none !important;\n  }\n\n}\n\u003c\/style\u003e\n\u003cdiv class=\"gf-xmas-tree\" id=\"gf-xmas-tree\"\u003e\n\u003c!-- =====================================================\n     GLOBAL SNOW\n===================================================== --\u003e\n\u003cdiv class=\"gf-snow-layer\" id=\"gf-snow-layer\"\u003e\u003c\/div\u003e\n\u003c!-- =====================================================\n     TRUST\n===================================================== --\u003e\n\u003cdiv class=\"gf-trust gf-static-snow\"\u003e\n\u003cdiv class=\"gf-trust-title\"\u003e🎄 Bring The Magic Of Christmas Home\u003c\/div\u003e\n\u003cdiv class=\"gf-trust-grid\"\u003e\n\u003cdiv class=\"gf-trust-card\"\u003e\n\u003cspan\u003e🚚\u003c\/span\u003e \u003cstrong\u003eFree Shipping\u003c\/strong\u003e \u003csmall\u003eOn orders over $49\u003c\/small\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"gf-trust-card\"\u003e\n\u003cspan\u003e🔒\u003c\/span\u003e \u003cstrong\u003eSecure Checkout\u003c\/strong\u003e \u003csmall\u003eProtected payment\u003c\/small\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"gf-trust-card\"\u003e\n\u003cspan\u003e📦\u003c\/span\u003e \u003cstrong\u003eTracked Shipping\u003c\/strong\u003e \u003csmall\u003eTrack your order\u003c\/small\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"gf-trust-card\"\u003e\n\u003cspan\u003e🎁\u003c\/span\u003e \u003cstrong\u003eHoliday Favorite\u003c\/strong\u003e \u003csmall\u003eCozy Christmas decor\u003c\/small\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\n\u003cdiv class=\"gf-trust-gif\"\u003e\n\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0735\/3634\/0061\/files\/9d505198bb7bd46e742fc973135de306.gif?v=1789025162\" alt=\"Lighted tabletop Christmas tree animation\"\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- =====================================================\n     HERO\n===================================================== --\u003e\n\u003cdiv class=\"gf-hero gf-static-snow\"\u003e\n\u003cdiv class=\"gf-eyebrow\"\u003e✨ CHRISTMAS 2026 COLLECTION\u003c\/div\u003e\n\u003ch1 class=\"gf-main-title\"\u003eLighted Tabletop Christmas Tree — \u003cspan\u003e 6 Festive Styles, 2 Perfect Sizes \u003c\/span\u003e\n\u003c\/h1\u003e\n\u003cp class=\"gf-hero-copy\"\u003eBring instant Christmas warmth to a table, bedroom, apartment, office or entryway with a beautifully decorated lighted tree — without needing space for a full-size Christmas tree.\u003c\/p\u003e\n\u003cdiv class=\"gf-pills\"\u003e\n\u003cspan class=\"gf-pill\"\u003e 🎄 45cm \/ 60cm \u003c\/span\u003e \u003cspan class=\"gf-pill\"\u003e 🎀 6 Festive Styles \u003c\/span\u003e \u003cspan class=\"gf-pill\"\u003e ✨ Lighted Design \u003c\/span\u003e \u003cspan class=\"gf-pill\"\u003e 🎁 Holiday Ready \u003c\/span\u003e\n\u003c\/div\u003e\n\u003cimg class=\"gf-img\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0735\/3634\/0061\/files\/7a2d2908-eebe-4e49-86c0-f19fdbf4a857.png?v=1788945097\" alt=\"Lighted tabletop Christmas tree\" loading=\"eager\"\u003e\n\u003c\/div\u003e\n\u003c!-- =====================================================\n     BENEFITS\n===================================================== --\u003e\n\u003cdiv class=\"gf-section gf-intro\"\u003e\n\u003cdiv class=\"gf-kicker\"\u003eSMALL TREE. BIG CHRISTMAS FEELING.\u003c\/div\u003e\n\u003ch2\u003e🎄 Christmas Magic Without A Full-Size Tree\u003c\/h2\u003e\n\u003cp\u003ePerfect for smaller homes, apartments, bedrooms and offices where you still want a warm, decorated Christmas centerpiece.\u003c\/p\u003e\n\u003cdiv class=\"gf-feature-grid\"\u003e\n\u003cdiv class=\"gf-feature\"\u003e\n\u003cspan\u003e🎀\u003c\/span\u003e \u003cstrong\u003e Festive Decoration \u003c\/strong\u003e \u003csmall\u003e Ribbons, ornaments and seasonal details. \u003c\/small\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"gf-feature\"\u003e\n\u003cspan\u003e✨\u003c\/span\u003e \u003cstrong\u003e Warm Glow \u003c\/strong\u003e \u003csmall\u003e Battery-powered decorative lights. \u003c\/small\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"gf-feature\"\u003e\n\u003cspan\u003e🏠\u003c\/span\u003e \u003cstrong\u003e Space Saving \u003c\/strong\u003e \u003csmall\u003e Christmas atmosphere without taking over the room. \u003c\/small\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"gf-feature\"\u003e\n\u003cspan\u003e🎁\u003c\/span\u003e \u003cstrong\u003e Easy Holiday Decor \u003c\/strong\u003e \u003csmall\u003e Simply place it where you want Christmas warmth. \u003c\/small\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- =====================================================\n     SIX STYLES\n===================================================== --\u003e\n\u003cdiv class=\"gf-section gf-styles gf-static-snow\"\u003e\n\u003cdiv class=\"gf-kicker\" style=\"color: #efd8ac;\"\u003eSIX CHRISTMAS LOOKS\u003c\/div\u003e\n\u003ch2\u003e🎀 Choose Your Favorite Holiday Style\u003c\/h2\u003e\n\u003cp\u003eEach design creates a different Christmas mood — from classic red to champagne gold, snowy silver and rustic woodland.\u003c\/p\u003e\n\u003cdiv class=\"gf-style-grid\"\u003e\n\u003c!-- STYLE 1 --\u003e\n\u003cdiv class=\"gf-style-card\"\u003e\n\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0735\/3634\/0061\/files\/O1CN01v4OZtg23s2Izv1Tfb__2218360087310-0-cib.jpg?v=1788945710\" alt=\"Classic Christmas Red\" loading=\"lazy\"\u003e\n\u003cdiv class=\"gf-style-info\"\u003e\n\u003cstrong\u003e ❤️ Classic Christmas Red \u003c\/strong\u003e \u003csmall\u003e Traditional red holiday accents \u003c\/small\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- STYLE 2 --\u003e\n\u003cdiv class=\"gf-style-card\"\u003e\n\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0735\/3634\/0061\/files\/O1CN01R0Rwh323s2IyDxaw2__2218360087310-0-cib.jpg?v=1788945711\" alt=\"Champagne Gold\" loading=\"lazy\"\u003e\n\u003cdiv class=\"gf-style-info\"\u003e\n\u003cstrong\u003e ✨ Champagne Gold \u003c\/strong\u003e \u003csmall\u003e Warm and elegant festive styling \u003c\/small\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- STYLE 3 --\u003e\n\u003cdiv class=\"gf-style-card\"\u003e\n\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0735\/3634\/0061\/files\/O1CN01oVU4q823s2IsSnESX__2218360087310-0-cib.jpg?v=1788945711\" alt=\"Burgundy Velvet\" loading=\"lazy\"\u003e\n\u003cdiv class=\"gf-style-info\"\u003e\n\u003cstrong\u003e 🍷 Burgundy Velvet \u003c\/strong\u003e \u003csmall\u003e Rich wine-red holiday details \u003c\/small\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- STYLE 4 --\u003e\n\u003cdiv class=\"gf-style-card\"\u003e\n\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0735\/3634\/0061\/files\/O1CN01jrBM6m23s2IyHmK0q__2218360087310-0-cib.jpg?v=1788945711\" alt=\"Snowy Silver\" loading=\"lazy\"\u003e\n\u003cdiv class=\"gf-style-info\"\u003e\n\u003cstrong\u003e ❄️ Snowy Silver \u003c\/strong\u003e \u003csmall\u003e Soft silver and winter-white look \u003c\/small\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- STYLE 5 --\u003e\n\u003cdiv class=\"gf-style-card\"\u003e\n\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0735\/3634\/0061\/files\/O1CN01gACJLb23s2IxJ4TVO__2218360087310-0-cib_8294ed0f-ffd7-4a8c-a867-165bf611821c.jpg?v=1788947975\" alt=\"Winter Angel\" loading=\"lazy\"\u003e\n\u003cdiv class=\"gf-style-info\"\u003e\n\u003cstrong\u003e 🤍 Winter Angel \u003c\/strong\u003e \u003csmall\u003e Bright snowy neutral styling \u003c\/small\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- STYLE 6 --\u003e\n\u003cdiv class=\"gf-style-card\"\u003e\n\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0735\/3634\/0061\/files\/O1CN010B6hqc23s2Iztkapf__2218360087310-0-cib.jpg?v=1788945710\" alt=\"Rustic Woodland\" loading=\"lazy\"\u003e\n\u003cdiv class=\"gf-style-info\"\u003e\n\u003cstrong\u003e 🌲 Rustic Woodland \u003c\/strong\u003e \u003csmall\u003e Natural textures and cozy warm tones \u003c\/small\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- =====================================================\n     SIZE\n===================================================== --\u003e\n\u003cdiv class=\"gf-section gf-sizes\"\u003e\n\u003cdiv class=\"gf-kicker\"\u003eTWO HEIGHTS. SIX DESIGNS.\u003c\/div\u003e\n\u003ch2\u003e📏 Choose 45cm Or 60cm\u003c\/h2\u003e\n\u003cp\u003eEvery one of the six Christmas styles is available in two practical tabletop heights.\u003c\/p\u003e\n\u003cdiv class=\"gf-size-grid\"\u003e\n\u003cdiv class=\"gf-size-card\"\u003e\n\u003cspan class=\"gf-size-main\"\u003e 45 cm \u003c\/span\u003e \u003cspan class=\"gf-size-inch\"\u003e Approx. 17.7 in \u003c\/span\u003e \u003cstrong\u003e 🎄 Compact Tabletop Size \u003c\/strong\u003e \u003csmall\u003e Great for desks, shelves, bedrooms and smaller holiday displays. \u003c\/small\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"gf-size-card\"\u003e\n\u003cspan class=\"gf-size-main\"\u003e 60 cm \u003c\/span\u003e \u003cspan class=\"gf-size-inch\"\u003e Approx. 23.6 in \u003c\/span\u003e \u003cstrong\u003e ⭐ More Statement \u003c\/strong\u003e \u003csmall\u003e Ideal for side tables, entryways and living spaces. \u003c\/small\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"gf-combo-badge\"\u003e🎁 6 Styles × 2 Heights = 12 Holiday Choices\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- =====================================================\n     ATMOSPHERE\n===================================================== --\u003e\n\u003cdiv class=\"gf-section gf-intro\" style=\"text-align: center;\"\u003e\n\u003cdiv class=\"gf-kicker\"\u003eCOZY CHRISTMAS IN SECONDS\u003c\/div\u003e\n\u003ch2\u003e✨ Turn Any Corner Into A Holiday Moment\u003c\/h2\u003e\n\u003cp\u003eWarm lights, festive ornaments and layered greenery instantly make an ordinary table or shelf feel ready for Christmas.\u003c\/p\u003e\n\u003cimg class=\"gf-img\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0735\/3634\/0061\/files\/4f9c77d4-4829-4e64-983d-336e6a089054.png?v=1788945097\" alt=\"Cozy Christmas tabletop tree\" loading=\"lazy\"\u003e\n\u003c\/div\u003e\n\u003c!-- =====================================================\n     LIGHTS\n===================================================== --\u003e\n\u003cdiv class=\"gf-section gf-lights gf-static-snow\"\u003e\n\u003cdiv class=\"gf-kicker\" style=\"color: #efd9ad;\"\u003eWARM CHRISTMAS GLOW\u003c\/div\u003e\n\u003ch2\u003e✨ Light Up The Holiday Mood\u003c\/h2\u003e\n\u003cp\u003eBattery-powered decorative lights create a warm glow without needing to place the tree directly beside a wall outlet.\u003c\/p\u003e\n\u003cdiv class=\"gf-light-box\"\u003e\n\u003cdiv class=\"gf-light-row\"\u003eDecorative light string included.\u003c\/div\u003e\n\u003cdiv class=\"gf-light-row\"\u003eBattery-powered for flexible placement.\u003c\/div\u003e\n\u003cdiv class=\"gf-light-row\"\u003eUses AA batteries.\u003c\/div\u003e\n\u003cdiv class=\"gf-light-row\"\u003eBatteries are not included.\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- =====================================================\n     PLACEMENT\n===================================================== --\u003e\n\u003cdiv class=\"gf-section gf-places\" style=\"text-align: center;\"\u003e\n\u003cdiv class=\"gf-kicker\"\u003eCHRISTMAS WHEREVER YOU WANT IT\u003c\/div\u003e\n\u003ch2\u003e🏠 Perfect For Smaller Holiday Spaces\u003c\/h2\u003e\n\u003cp\u003eAdd a festive centerpiece without rearranging your entire room.\u003c\/p\u003e\n\u003cdiv class=\"gf-place-grid\"\u003e\n\u003cdiv class=\"gf-place\"\u003e\n\u003cspan\u003e🛋️\u003c\/span\u003e \u003cstrong\u003e Living Room \u003c\/strong\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"gf-place\"\u003e\n\u003cspan\u003e🛏️\u003c\/span\u003e \u003cstrong\u003e Bedroom \u003c\/strong\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"gf-place\"\u003e\n\u003cspan\u003e💻\u003c\/span\u003e \u003cstrong\u003e Office \/ Desk \u003c\/strong\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"gf-place\"\u003e\n\u003cspan\u003e🏡\u003c\/span\u003e \u003cstrong\u003e Entryway \u003c\/strong\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cimg class=\"gf-img\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0735\/3634\/0061\/files\/4e4e7cfd-a833-4f0b-9f08-ec6e95c43f52.png?v=1788945097\" alt=\"Christmas tabletop tree home decor\" loading=\"lazy\"\u003e\n\u003c\/div\u003e\n\u003c!-- =====================================================\n     DECORATION DETAILS\n===================================================== --\u003e\n\u003cdiv class=\"gf-section gf-intro\" style=\"text-align: center;\"\u003e\n\u003cdiv class=\"gf-kicker\"\u003eBEAUTIFUL HOLIDAY DETAIL\u003c\/div\u003e\n\u003ch2\u003e🎀 Filled With Festive Character\u003c\/h2\u003e\n\u003cp\u003eDepending on the selected style, each tree features its own combination of ribbons, ornaments, pinecones, snowy greenery and seasonal accents.\u003c\/p\u003e\n\u003cimg class=\"gf-img\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0735\/3634\/0061\/files\/bc03ef1a-0483-4428-8b0d-b8fbe330407d.png?v=1788945097\" alt=\"Christmas tree decoration details\" loading=\"lazy\"\u003e\n\u003c\/div\u003e\n\u003c!-- =====================================================\n     PRODUCT INFORMATION\n===================================================== --\u003e\n\u003cdiv class=\"gf-section gf-info\"\u003e\n\u003cdiv class=\"gf-kicker\"\u003ePRODUCT DETAILS\u003c\/div\u003e\n\u003ch2\u003e📋 Product Information\u003c\/h2\u003e\n\u003cp\u003eQuick details before choosing your Christmas tree.\u003c\/p\u003e\n\u003ctable class=\"gf-spec\"\u003e\n\u003ctbody\u003e\n\u003ctr\u003e\n\u003ctd\u003eProduct\u003c\/td\u003e\n\u003ctd\u003eLighted Decorated Tabletop Christmas Tree\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003eAvailable Styles\u003c\/td\u003e\n\u003ctd\u003e6 Christmas Designs\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003eAvailable Heights\u003c\/td\u003e\n\u003ctd\u003e45 cm \/ 60 cm\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003eTotal Options\u003c\/td\u003e\n\u003ctd\u003e12 Style \u0026amp; Size Combinations\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003eMaterials\u003c\/td\u003e\n\u003ctd\u003ePVC \/ PE \/ Flocked Decorative Branches\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003eLighting\u003c\/td\u003e\n\u003ctd\u003eBattery-Powered Decorative String Lights\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003eBattery Type\u003c\/td\u003e\n\u003ctd\u003eAA Batteries\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003eBatteries Included\u003c\/td\u003e\n\u003ctd\u003eNo\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003eDecorative Details\u003c\/td\u003e\n\u003ctd\u003eVary by selected style and may include ribbons, ornaments, pinecones, faux snow and seasonal accents.\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003eRecommended For\u003c\/td\u003e\n\u003ctd\u003eLiving Rooms \/ Bedrooms \/ Offices \/ Desks \/ Entryways \/ Holiday Displays\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003c\/tbody\u003e\n\u003c\/table\u003e\n\u003cdiv class=\"gf-note\"\u003ePlease allow a small measurement difference due to manual measurement. Actual colors may vary slightly depending on lighting and screen settings. Decorative details vary by selected style.\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- =====================================================\n     FAQ\n===================================================== --\u003e\n\u003cdiv class=\"gf-section gf-faq\"\u003e\n\u003cdiv class=\"gf-kicker\"\u003eNEED TO KNOW\u003c\/div\u003e\n\u003ch2\u003e❓ Frequently Asked Questions\u003c\/h2\u003e\n\u003cdetails\u003e\n\u003csummary\u003eWhat sizes can I choose?\u003c\/summary\u003e\n\u003cdiv class=\"gf-answer\"\u003eThis listing is available in two heights: 45 cm and 60 cm.\u003c\/div\u003e\n\u003c\/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eAre all 6 designs available in both sizes?\u003c\/summary\u003e\n\u003cdiv class=\"gf-answer\"\u003eThis product is offered in six Christmas styles with 45 cm and 60 cm size options. Select your preferred style and height above.\u003c\/div\u003e\n\u003c\/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eDoes the tree come decorated?\u003c\/summary\u003e\n\u003cdiv class=\"gf-answer\"\u003eYes. It is designed as a decorated tabletop Christmas display. Decorative details vary depending on the selected style.\u003c\/div\u003e\n\u003c\/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eDoes it include lights?\u003c\/summary\u003e\n\u003cdiv class=\"gf-answer\"\u003eYes. A decorative battery-powered light string is included.\u003c\/div\u003e\n\u003c\/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eAre batteries included?\u003c\/summary\u003e\n\u003cdiv class=\"gf-answer\"\u003eNo. AA batteries are required and are not included.\u003c\/div\u003e\n\u003c\/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eWhich size should I choose?\u003c\/summary\u003e\n\u003cdiv class=\"gf-answer\"\u003eChoose 45 cm for a desk, shelf or smaller surface. Choose 60 cm when you want a more noticeable tabletop centerpiece.\u003c\/div\u003e\n\u003c\/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eWhere can I display it?\u003c\/summary\u003e\n\u003cdiv class=\"gf-answer\"\u003eIt works well on desks, side tables, shelves, dressers, counters, entryways and indoor holiday displays.\u003c\/div\u003e\n\u003c\/details\u003e\n\u003c\/div\u003e\n\u003c!-- =====================================================\n     FINAL CTA\n===================================================== --\u003e\n\u003cdiv class=\"gf-final gf-static-snow\"\u003e\n\u003cdiv class=\"gf-eyebrow\"\u003e🎄 CHRISTMAS IS COMING\u003c\/div\u003e\n\u003ch2\u003eChoose Your Tree. Light Up Christmas.\u003c\/h2\u003e\n\u003cp\u003ePick from 6 festive designs, choose 45 cm or 60 cm, and bring a warm Christmas glow into your favorite space.\u003c\/p\u003e\n\u003cdiv class=\"gf-final-highlight\"\u003e✨ 6 Styles • 2 Sizes • 12 Holiday Choices\u003c\/div\u003e\n\u003cbutton class=\"gf-cta\" type=\"button\"\u003e 🎁 Choose Your Christmas Tree ↑ \u003c\/button\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\n\u003cscript\u003e\n(function(){\n  function initGFChristmasTree(){\n    var tree=document.getElementById('gf-xmas-tree');\n    var snowLayer=document.getElementById('gf-snow-layer');\n    if(!tree||!snowLayer) return;\n\n    var mobile=window.innerWidth\u003c750;\n    var snowCount=mobile?60:95;\n    var symbols=['❄','❅','❆'];\n\n    function buildSnow(){\n      snowLayer.innerHTML='';\n      var pageHeight=tree.scrollHeight;\n\n      for(var i=0;i\u003csnowCount;i++){\n        var flake=document.createElement('span');\n        flake.className='gf-snowflake';\n\n        if(Math.random()\u003c0.26) flake.classList.add('gf-warm');\n        if(Math.random()\u003c0.22) flake.classList.add('gf-soft');\n\n        var near=Math.random()\u003c0.20;\n        if(near) flake.classList.add('gf-near');\n\n        flake.textContent=symbols[Math.floor(Math.random()*symbols.length)];\n\n        var size;\n        if(mobile){\n          size=near ? Math.floor(Math.random()*8)+22 : Math.floor(Math.random()*12)+13;\n        }else{\n          size=near ? Math.floor(Math.random()*10)+27 : Math.floor(Math.random()*16)+15;\n        }\n\n        var left=Math.random()*100;\n        var duration=near ? Math.random()*6+9 : Math.random()*10+12;\n        var delay=-(Math.random()*duration);\n        var drift=Math.floor(Math.random()*42)+12;\n        if(Math.random()\u003c0.5) drift*=-1;\n        var driftDuration=Math.random()*4+4;\n        var opacity=near ? Math.random()*.16+.74 : Math.random()*.28+.48;\n        var rotation=Math.floor(Math.random()*540)+320;\n        if(Math.random()\u003c0.5) rotation*=-1;\n\n        flake.style.left=left+'%';\n        flake.style.fontSize=size+'px';\n        flake.style.setProperty('--flake-opacity',opacity);\n        flake.style.setProperty('--snow-distance',(pageHeight+220)+'px');\n        flake.style.setProperty('--snow-drift',drift+'px');\n        flake.style.setProperty('--snow-rotate',rotation+'deg');\n        flake.style.animationDuration=duration+'s, '+driftDuration+'s';\n        flake.style.animationDelay=delay+'s, '+delay+'s';\n        snowLayer.appendChild(flake);\n      }\n    }\n\n    function updateSnowDistance(){\n      var height=tree.scrollHeight+220;\n      var flakes=snowLayer.querySelectorAll('.gf-snowflake');\n      flakes.forEach(function(flake){\n        flake.style.setProperty('--snow-distance',height+'px');\n      });\n    }\n\n    buildSnow();\n    window.addEventListener('load',updateSnowDistance);\n\n    if(typeof ResizeObserver!=='undefined'){\n      var observer=new ResizeObserver(function(){updateSnowDistance();});\n      observer.observe(tree);\n    }\n\n    var buttons=tree.querySelectorAll('.gf-cta');\n    buttons.forEach(function(button){\n      button.addEventListener('click',function(){\n        var target=document.querySelector('form[action*=\"\/cart\/add\"]')\n          ||document.querySelector('.product-form')\n          ||document.querySelector('.product__info-container');\n        if(target){\n          target.scrollIntoView({behavior:'smooth',block:'center'});\n        }else{\n          window.scrollTo({top:0,behavior:'smooth'});\n        }\n      });\n    });\n  }\n\n  if(document.readyState==='loading'){\n    document.addEventListener('DOMContentLoaded',initGFChristmasTree);\n  }else{\n    initGFChristmasTree();\n  }\n})();\n\u003c\/script\u003e\n\n\u003cp\u003e \u003c\/p\u003e","brand":"lk","offers":[{"title":"🌲 Rustic Woodland \/ 🎄 45cm \/ 17.7\" — Compact Tabletop","offer_id":45028226269277,"sku":"NC03322609096935-PE发光树【45cm咖色棉花套餐】","price":39.99,"currency_code":"USD","in_stock":true},{"title":"🌲 Rustic Woodland \/ ⭐ 60cm \/ 23.6\" — MOST POPULAR","offer_id":45028226302045,"sku":"NC03322609096935-PE发光树【60cm咖色棉花套餐】","price":46.99,"currency_code":"USD","in_stock":true},{"title":"❄️ Snowy Silver \/ 🎄 45cm \/ 17.7\" — Compact Tabletop","offer_id":45028226138205,"sku":"NC03322609096935-PE发光树【45cm冰雪宝贝套餐】","price":39.99,"currency_code":"USD","in_stock":true},{"title":"❄️ Snowy Silver \/ ⭐ 60cm \/ 23.6\" — MOST POPULAR","offer_id":45028226170973,"sku":"NC03322609096935- PE发光树【60cm冰雪宝贝套餐】","price":46.99,"currency_code":"USD","in_stock":true},{"title":"❤️ Classic Christmas Red \/ 🎄 45cm \/ 17.7\" — Compact Tabletop","offer_id":45028225941597,"sku":"NC03322609096935- PE带灯积雪圣诞树【45cm红白球套餐】","price":46.99,"currency_code":"USD","in_stock":true},{"title":"❤️ Classic Christmas Red \/ ⭐ 60cm \/ 23.6\" — MOST POPULAR","offer_id":45028225974365,"sku":"NC03322609096935-PE带灯积雪圣诞树【60cm红白球套餐】","price":65.99,"currency_code":"USD","in_stock":true},{"title":"✨ Champagne Gold \/ 🎄 45cm \/ 17.7\" — Compact Tabletop","offer_id":45028226007133,"sku":"NC03322609096935-PE带灯积雪圣诞树【45cm金色橡果套餐】","price":46.99,"currency_code":"USD","in_stock":true},{"title":"✨ Champagne Gold \/ ⭐ 60cm \/ 23.6\" — MOST POPULAR","offer_id":45028226039901,"sku":"NC03322609096935-PE带灯积雪圣诞树【60cm金色橡果套餐】","price":65.99,"currency_code":"USD","in_stock":true},{"title":"🍷 Burgundy Velvet \/ 🎄 45cm \/ 17.7\" — Compact Tabletop","offer_id":45028226072669,"sku":"NC03322609096935-PE积雪发光树【45cm红房子套餐】","price":46.99,"currency_code":"USD","in_stock":true},{"title":"🍷 Burgundy Velvet \/ ⭐ 60cm \/ 23.6\" — MOST POPULAR","offer_id":45028226105437,"sku":"NC03322609096935- PE积雪发光树【60cm红房子套餐】","price":65.99,"currency_code":"USD","in_stock":true},{"title":"🤍 Winter Angel \/ 🎄 45cm \/ 17.7\" — Compact Tabletop","offer_id":45028226203741,"sku":"NC03322609096935-PE积雪发光树【45cm白雪套餐】","price":46.99,"currency_code":"USD","in_stock":true},{"title":"🤍 Winter Angel \/ ⭐ 60cm \/ 23.6\" — MOST POPULAR","offer_id":45028226236509,"sku":"NC03322609096935-PE积雪发光树【60cm白雪套餐】","price":59.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0735\/3634\/0061\/files\/7a2d2908-eebe-4e49-86c0-f19fdbf4a857.png?v=1788945097","url":"https:\/\/glowforu.com\/products\/lighted-tabletop-christmas-tree-pre-decorated-holiday-tree-with-ornaments-warm-lights","provider":"glowforu","version":"1.0","type":"link"}