{"product_id":"beauty-bomb-electric-makeup-brush-cleaner","title":"Beauty Bomb Electric Makeup Brush Cleaner","description":"\u003cstyle\u003e\n@import url('https:\/\/fonts.googleapis.com\/css2?family=DM+Sans:wght@400;500;600;700;800\u0026family=Playfair+Display:wght@500;600;700\u0026display=swap');\n\n.bb-product {\n  --pink: #ff4f9a;\n  --pink-light: #ff9bc7;\n  --pink-dark: #d92d78;\n  --black: #080808;\n  --dark: #111111;\n  --white: #ffffff;\n\n  font-family: 'DM Sans', sans-serif;\n  color: #f5f5f5;\n\n  background:\n    radial-gradient(\n      circle at 10% 10%,\n      rgba(255,79,154,.16),\n      transparent 30%\n    ),\n    radial-gradient(\n      circle at 90% 30%,\n      rgba(255,79,154,.12),\n      transparent 28%\n    ),\n    #080808;\n\n  overflow: hidden;\n  position: relative;\n}\n\n.bb-product * {\n  box-sizing: border-box;\n}\n\n\n\/* ==========================================\n   BACKGROUND PARTICLES\n========================================== *\/\n\n.bb-particle {\n  position: absolute;\n  width: 5px;\n  height: 5px;\n  background: var(--pink);\n  border-radius: 50%;\n  opacity: .35;\n  animation: bbFloat 8s infinite ease-in-out;\n}\n\n.bb-p1 {\n  top: 15%;\n  left: 8%;\n}\n\n.bb-p2 {\n  top: 65%;\n  left: 15%;\n  animation-delay: 2s;\n}\n\n.bb-p3 {\n  top: 25%;\n  right: 10%;\n  animation-delay: 4s;\n}\n\n.bb-p4 {\n  top: 75%;\n  right: 18%;\n  animation-delay: 1s;\n}\n\n.bb-p5 {\n  top: 45%;\n  left: 50%;\n  animation-delay: 3s;\n}\n\n@keyframes bbFloat {\n  0%,100% {\n    transform: translateY(0) scale(1);\n    opacity: .25;\n  }\n\n  50% {\n    transform: translateY(-30px) scale(1.5);\n    opacity: .7;\n  }\n}\n\n\n\/* ==========================================\n   HERO\n========================================== *\/\n\n.bb-hero {\n  max-width: 1250px;\n  margin: auto;\n\n  padding: 100px 30px 80px;\n\n  display: grid;\n  grid-template-columns: 1fr 1fr;\n\n  align-items: center;\n  gap: 70px;\n\n  position: relative;\n  z-index: 2;\n}\n\n\n\/* ==========================================\n   BEAUTY BOMB LABEL\n========================================== *\/\n\n.bb-eyebrow {\n  display: inline-flex;\n  align-items: center;\n  gap: 8px;\n\n  padding: 8px 15px;\n\n  border: 1px solid rgba(255,79,154,.4);\n\n  border-radius: 50px;\n\n  background: rgba(255,79,154,.08);\n\n  color: var(--pink-light);\n\n  font-size: 12px;\n  font-weight: 800;\n\n  letter-spacing: 1.8px;\n\n  text-transform: uppercase;\n\n  margin-bottom: 22px;\n\n  animation: bbFadeUp .8s ease both;\n}\n\n.bb-eyebrow span {\n  width: 7px;\n  height: 7px;\n\n  background: var(--pink);\n\n  border-radius: 50%;\n\n  box-shadow: 0 0 12px var(--pink);\n\n  animation: bbPulse 1.5s infinite;\n}\n\n@keyframes bbPulse {\n  0%,100% {\n    transform: scale(1);\n  }\n\n  50% {\n    transform: scale(1.6);\n  }\n}\n\n\n\/* ==========================================\n   MAIN TITLE\n========================================== *\/\n\n.bb-title {\n  font-family: 'Playfair Display', serif;\n\n  font-size: clamp(46px,6vw,78px);\n\n  line-height: .98;\n\n  margin: 0 0 25px;\n\n  font-weight: 600;\n\n  letter-spacing: -2px;\n\n  color: #ffffff;\n\n  animation: bbFadeUp .9s ease .1s both;\n}\n\n.bb-title em {\n  color: var(--pink);\n  font-style: normal;\n}\n\n\n\/* ==========================================\n   DESCRIPTION\n========================================== *\/\n\n.bb-subtitle {\n  color: #d6d6d6;\n\n  max-width: 580px;\n\n  font-size: 17px;\n\n  line-height: 1.75;\n\n  margin-bottom: 30px;\n\n  animation: bbFadeUp .9s ease .2s both;\n}\n\n\n\/* ==========================================\n   BUTTON\n========================================== *\/\n\n.bb-buttons {\n  display: flex;\n\n  animation: bbFadeUp .9s ease .3s both;\n}\n\n.bb-btn {\n  display: inline-flex;\n\n  align-items: center;\n  justify-content: center;\n\n  padding: 17px 30px;\n\n  border-radius: 50px;\n\n  text-decoration: none;\n\n  font-weight: 800;\n\n  font-size: 14px;\n\n  color: #ffffff;\n\n  transition: .3s ease;\n}\n\n.bb-btn-primary {\n  background:\n    linear-gradient(\n      135deg,\n      #ff4f9a,\n      #d92d78\n    );\n\n  box-shadow:\n    0 10px 35px rgba(255,79,154,.25);\n}\n\n.bb-btn-primary:hover {\n  transform: translateY(-4px);\n\n  box-shadow:\n    0 15px 45px rgba(255,79,154,.45);\n}\n\n\n\/* ==========================================\n   PRODUCT AREA\n========================================== *\/\n\n.bb-product-visual {\n  min-height: 520px;\n\n  position: relative;\n\n  display: flex;\n\n  align-items: center;\n\n  justify-content: center;\n}\n\n\n\/* ==========================================\n   PRODUCT GLOW\n========================================== *\/\n\n.bb-product-glow {\n  position: absolute;\n\n  width: 390px;\n  height: 390px;\n\n  border-radius: 50%;\n\n  background: var(--pink);\n\n  filter: blur(120px);\n\n  opacity: .22;\n\n  animation: bbGlow 5s ease-in-out infinite;\n}\n\n@keyframes bbGlow {\n  0%,100% {\n    transform: scale(.9);\n    opacity: .18;\n  }\n\n  50% {\n    transform: scale(1.1);\n    opacity: .32;\n  }\n}\n\n\n\/* ==========================================\n   PRODUCT IMAGE\n========================================== *\/\n\n.bb-product-image-wrap {\n  position: relative;\n\n  width: min(430px,90%);\n\n  padding: 25px;\n\n  border-radius: 35px;\n\n  background:\n    linear-gradient(\n      145deg,\n      rgba(255,255,255,.12),\n      rgba(255,255,255,.025)\n    );\n\n  border:\n    1px solid rgba(255,255,255,.15);\n\n  backdrop-filter: blur(12px);\n\n  box-shadow:\n    0 35px 90px rgba(0,0,0,.65);\n\n  animation:\n    bbImageFloat 5s ease-in-out infinite;\n\n  transition: .5s ease;\n}\n\n.bb-product-image-wrap:hover {\n  transform:\n    translateY(-10px)\n    scale(1.02);\n\n  border-color:\n    rgba(255,79,154,.4);\n\n  box-shadow:\n    0 45px 100px rgba(0,0,0,.75),\n    0 0 60px rgba(255,79,154,.15);\n}\n\n@keyframes bbImageFloat {\n  0%,100% {\n    transform: translateY(0);\n  }\n\n  50% {\n    transform: translateY(-14px);\n  }\n}\n\n.bb-product-image {\n  width: 100%;\n\n  height: auto;\n\n  display: block;\n\n  border-radius: 25px;\n\n  object-fit: contain;\n\n  filter:\n    drop-shadow(\n      0 20px 30px rgba(0,0,0,.5)\n    );\n}\n\n\n\/* ==========================================\n   PRODUCT LIGHT SWEEP\n========================================== *\/\n\n.bb-product-image-wrap:after {\n  content: '';\n\n  position: absolute;\n\n  top: 0;\n\n  left: -120%;\n\n  width: 70%;\n\n  height: 100%;\n\n  background:\n    linear-gradient(\n      90deg,\n      transparent,\n      rgba(255,255,255,.12),\n      transparent\n    );\n\n  transform: skewX(-20deg);\n\n  animation: bbShine 6s infinite;\n}\n\n@keyframes bbShine {\n  0% {\n    left: -120%;\n  }\n\n  35%,100% {\n    left: 150%;\n  }\n}\n\n\n\/* ==========================================\n   PRODUCT BADGES\n========================================== *\/\n\n.bb-badge {\n  position: absolute;\n\n  padding: 13px 18px;\n\n  border-radius: 16px;\n\n  background:\n    rgba(20,20,20,.88);\n\n  border:\n    1px solid rgba(255,255,255,.15);\n\n  backdrop-filter: blur(15px);\n\n  box-shadow:\n    0 15px 35px rgba(0,0,0,.4);\n\n  font-size: 12px;\n\n  font-weight: 700;\n\n  color: #eeeeee;\n\n  z-index: 5;\n}\n\n.bb-badge strong {\n  display: block;\n\n  color: var(--pink);\n\n  font-size: 17px;\n\n  margin-bottom: 3px;\n}\n\n.bb-badge-1 {\n  top: 12%;\n  right: 0;\n\n  animation:\n    bbBadge 3.5s infinite ease-in-out;\n}\n\n.bb-badge-2 {\n  bottom: 12%;\n  left: 0;\n\n  animation:\n    bbBadge 4s infinite ease-in-out reverse;\n}\n\n@keyframes bbBadge {\n  0%,100% {\n    transform: translateY(0);\n  }\n\n  50% {\n    transform: translateY(-12px);\n  }\n}\n\n\n\/* ==========================================\n   STATS\n========================================== *\/\n\n.bb-stats {\n  max-width: 1000px;\n\n  margin: 0 auto;\n\n  padding: 20px 30px 70px;\n\n  display: grid;\n\n  grid-template-columns:\n    repeat(3,1fr);\n\n  gap: 15px;\n\n  position: relative;\n\n  z-index: 2;\n}\n\n.bb-stat {\n  text-align: center;\n\n  padding: 25px;\n\n  border-right:\n    1px solid #333333;\n}\n\n.bb-stat:last-child {\n  border: none;\n}\n\n.bb-stat-number {\n  font-size: 30px;\n\n  font-weight: 800;\n\n  color: var(--pink);\n}\n\n.bb-stat-text {\n  color: #c2c2c2;\n\n  font-size: 13px;\n\n  margin-top: 5px;\n}\n\n\n\/* ==========================================\n   SECTIONS\n========================================== *\/\n\n.bb-section {\n  padding: 90px 25px;\n\n  position: relative;\n\n  z-index: 2;\n}\n\n.bb-section-inner {\n  max-width: 1150px;\n\n  margin: auto;\n}\n\n.bb-section-heading {\n  text-align: center;\n\n  margin-bottom: 50px;\n}\n\n.bb-section-heading span {\n  color: var(--pink);\n\n  font-size: 12px;\n\n  font-weight: 800;\n\n  text-transform: uppercase;\n\n  letter-spacing: 2px;\n}\n\n.bb-section-heading h2 {\n  font-family:\n    'Playfair Display',\n    serif;\n\n  font-size:\n    clamp(38px,5vw,60px);\n\n  margin:\n    12px 0;\n\n  color: #ffffff;\n}\n\n.bb-section-heading p {\n  color: #c5c5c5;\n\n  max-width: 650px;\n\n  margin: auto;\n\n  line-height: 1.7;\n}\n\n\n\/* ==========================================\n   FEATURE CARDS\n========================================== *\/\n\n.bb-features {\n  display: grid;\n\n  grid-template-columns:\n    repeat(3,1fr);\n\n  gap: 18px;\n}\n\n.bb-card {\n  padding: 30px;\n\n  min-height: 220px;\n\n  border-radius: 25px;\n\n  border:\n    1px solid rgba(255,255,255,.1);\n\n  background:\n    linear-gradient(\n      145deg,\n      rgba(255,255,255,.065),\n      rgba(255,255,255,.018)\n    );\n\n  transition: .4s ease;\n\n  position: relative;\n\n  overflow: hidden;\n}\n\n.bb-card:before {\n  content: '';\n\n  position: absolute;\n\n  width: 120px;\n  height: 120px;\n\n  background: var(--pink);\n\n  filter: blur(70px);\n\n  opacity: 0;\n\n  top: -50px;\n  right: -50px;\n\n  transition: .4s;\n}\n\n.bb-card:hover {\n  transform:\n    translateY(-8px);\n\n  border-color:\n    rgba(255,79,154,.4);\n\n  box-shadow:\n    0 20px 50px rgba(0,0,0,.35);\n}\n\n.bb-card:hover:before {\n  opacity: .3;\n}\n\n.bb-icon {\n  width: 50px;\n  height: 50px;\n\n  border-radius: 15px;\n\n  display: grid;\n\n  place-items: center;\n\n  background:\n    rgba(255,79,154,.1);\n\n  border:\n    1px solid rgba(255,79,154,.2);\n\n  font-size: 22px;\n\n  margin-bottom: 20px;\n}\n\n.bb-card h3 {\n  margin: 0 0 10px;\n\n  font-size: 19px;\n\n  color: #ffffff;\n}\n\n.bb-card p {\n  color: #c7c7c7;\n\n  font-size: 14px;\n\n  line-height: 1.7;\n\n  margin: 0;\n}\n\n\n\/* ==========================================\n   PERFECT FOR\n========================================== *\/\n\n.bb-perfect {\n  display: grid;\n\n  grid-template-columns:\n    1fr 1fr;\n\n  gap: 60px;\n\n  align-items: center;\n}\n\n.bb-perfect-box {\n  padding: 45px;\n\n  border-radius: 30px;\n\n  background:\n    linear-gradient(\n      145deg,\n      #161616,\n      #0c0c0c\n    );\n\n  border:\n    1px solid #2c2c2c;\n}\n\n.bb-perfect-box h2 {\n  font-family:\n    'Playfair Display',\n    serif;\n\n  font-size: 45px;\n\n  margin:\n    0 0 20px;\n\n  color: #ffffff;\n}\n\n.bb-perfect-box p {\n  color: #c5c5c5;\n\n  line-height: 1.8;\n}\n\n.bb-check {\n  display: flex;\n\n  gap: 12px;\n\n  align-items: center;\n\n  margin: 16px 0;\n\n  color: #e2e2e2;\n\n  font-size: 14px;\n}\n\n.bb-check span {\n  width: 25px;\n  height: 25px;\n\n  display: grid;\n\n  place-items: center;\n\n  border-radius: 50%;\n\n  background:\n    rgba(255,79,154,.12);\n\n  color:\n    var(--pink);\n}\n\n\n\/* ==========================================\n   WHAT'S INCLUDED\n========================================== *\/\n\n.bb-included {\n  display: grid;\n\n  grid-template-columns:\n    1fr 1fr;\n\n  gap: 18px;\n}\n\n.bb-item {\n  display: flex;\n\n  gap: 15px;\n\n  align-items: center;\n\n  padding: 20px;\n\n  border-radius: 18px;\n\n  background: #121212;\n\n  border:\n    1px solid #292929;\n\n  transition: .3s ease;\n}\n\n.bb-item:hover {\n  transform:\n    translateY(-4px);\n\n  border-color:\n    rgba(255,79,154,.35);\n}\n\n.bb-item-icon {\n  font-size: 28px;\n}\n\n.bb-item strong {\n  display: block;\n\n  margin-bottom: 4px;\n\n  color: #f4f4f4;\n}\n\n.bb-item small {\n  color: #bdbdbd;\n}\n\n\n\/* ==========================================\n   FINAL SECTION\n========================================== *\/\n\n.bb-final {\n  max-width: 1050px;\n\n  margin: 50px auto 100px;\n\n  padding: 75px 30px;\n\n  text-align: center;\n\n  border-radius: 35px;\n\n  position: relative;\n\n  overflow: hidden;\n\n  background:\n\n    radial-gradient(\n      circle at center,\n      rgba(255,79,154,.25),\n      transparent 60%\n    ),\n\n    linear-gradient(\n      145deg,\n      #171717,\n      #0d0d0d\n    );\n\n  border:\n    1px solid rgba(255,79,154,.25);\n}\n\n.bb-final:before {\n  content: '';\n\n  position: absolute;\n\n  inset: -2px;\n\n  border-radius: 35px;\n\n  border:\n    1px solid rgba(255,79,154,.2);\n\n  animation:\n    bbBorder 3s infinite;\n}\n\n@keyframes bbBorder {\n  0%,100% {\n    opacity: .2;\n  }\n\n  50% {\n    opacity: 1;\n  }\n}\n\n.bb-final h2 {\n  font-family:\n    'Playfair Display',\n    serif;\n\n  font-size:\n    clamp(38px,5vw,60px);\n\n  margin:\n    0 0 15px;\n\n  color: #ffffff;\n}\n\n.bb-final h2 em {\n  color: var(--pink);\n\n  font-style: normal;\n}\n\n.bb-final p {\n  color: #d0d0d0;\n\n  max-width: 600px;\n\n  margin:\n    0 auto 20px;\n\n  line-height: 1.7;\n}\n\n.bb-urgency {\n  color: var(--pink-light);\n\n  font-size: 12px;\n\n  font-weight: 800;\n\n  letter-spacing: 1.5px;\n\n  text-transform: uppercase;\n\n  margin-top: 18px;\n}\n\n\n\/* ==========================================\n   FADE ANIMATION\n========================================== *\/\n\n@keyframes bbFadeUp {\n\n  from {\n    opacity: 0;\n\n    transform:\n      translateY(25px);\n  }\n\n  to {\n    opacity: 1;\n\n    transform:\n      translateY(0);\n  }\n\n}\n\n\n\/* ==========================================\n   TABLET\n========================================== *\/\n\n@media(max-width:850px) {\n\n  .bb-hero {\n    grid-template-columns: 1fr;\n\n    text-align: center;\n\n    padding-top: 60px;\n\n    gap: 30px;\n  }\n\n  .bb-subtitle {\n    margin-left: auto;\n    margin-right: auto;\n  }\n\n  .bb-buttons {\n    justify-content: center;\n  }\n\n  .bb-product-visual {\n    min-height: 450px;\n  }\n\n  .bb-features {\n    grid-template-columns:\n      1fr 1fr;\n  }\n\n  .bb-perfect,\n  .bb-included {\n    grid-template-columns: 1fr;\n  }\n\n}\n\n\n\/* ==========================================\n   MOBILE\n========================================== *\/\n\n@media(max-width:550px) {\n\n  .bb-hero {\n    padding:\n      50px 18px;\n  }\n\n  .bb-title {\n    font-size: 48px;\n  }\n\n  .bb-subtitle {\n    font-size: 16px;\n  }\n\n  .bb-product-visual {\n    min-height: 400px;\n\n    margin:\n      -25px 0;\n  }\n\n  .bb-product-image-wrap {\n    width: 85%;\n\n    padding: 15px;\n  }\n\n  .bb-badge-1 {\n    right: -5px;\n  }\n\n  .bb-badge-2 {\n    left: -5px;\n  }\n\n  .bb-stats {\n    grid-template-columns: 1fr;\n\n    padding-bottom: 40px;\n  }\n\n  .bb-stat {\n    border-right: none;\n\n    border-bottom:\n      1px solid #333333;\n  }\n\n  .bb-features {\n    grid-template-columns: 1fr;\n  }\n\n  .bb-perfect-box {\n    padding: 30px;\n  }\n\n  .bb-section {\n    padding:\n      65px 18px;\n  }\n\n}\n\n\u003c\/style\u003e\n\n\n\u003cdiv class=\"bb-product\"\u003e\n\n\n  \u003c!-- BACKGROUND PARTICLES --\u003e\n\n  \u003cdiv class=\"bb-particle bb-p1\"\u003e\u003c\/div\u003e\n  \u003cdiv class=\"bb-particle bb-p2\"\u003e\u003c\/div\u003e\n  \u003cdiv class=\"bb-particle bb-p3\"\u003e\u003c\/div\u003e\n  \u003cdiv class=\"bb-particle bb-p4\"\u003e\u003c\/div\u003e\n  \u003cdiv class=\"bb-particle bb-p5\"\u003e\u003c\/div\u003e\n\n\n  \u003c!-- =========================================\n       HERO\n  ========================================= --\u003e\n\n  \u003csection class=\"bb-hero\"\u003e\n\n\n    \u003cdiv\u003e\n\n\n      \u003cdiv class=\"bb-eyebrow\"\u003e\n\n        \u003cspan\u003e\u003c\/span\u003e\n\n        BEAUTY BOMB\n\n      \u003c\/div\u003e\n\n\n      \u003ch1 class=\"bb-title\"\u003e\n\n        Clean Brushes.\u003cbr\u003e\n\n        \u003cem\u003eFlawless Skin.\u003c\/em\u003e\n\n      \u003c\/h1\u003e\n\n\n      \u003cp class=\"bb-subtitle\"\u003e\n\n        Meet the Beauty Bomb Electric Makeup Brush Cleaner —\n        the effortless way to deep-clean your makeup brushes\n        in seconds.\n\n        Because great makeup starts with clean brushes.\n\n      \u003c\/p\u003e\n\n\n      \u003c!-- ONLY CTA BUTTON --\u003e\n\n      \u003cdiv class=\"bb-buttons\"\u003e\n\n        \u003ca href=\"\/cart\" class=\"bb-btn bb-btn-primary\"\u003e\n\n          ✦ Get Yours Today\n\n        \u003c\/a\u003e\n\n      \u003c\/div\u003e\n\n\n    \u003c\/div\u003e\n\n\n    \u003c!-- =========================================\n         PRODUCT IMAGE\n    ========================================= --\u003e\n\n    \u003cdiv class=\"bb-product-visual\"\u003e\n\n\n      \u003cdiv class=\"bb-product-glow\"\u003e\u003c\/div\u003e\n\n\n      \u003cdiv class=\"bb-badge bb-badge-1\"\u003e\n\n        \u003cstrong\u003e\n          30 SEC\n        \u003c\/strong\u003e\n\n        Deep Clean\n\n      \u003c\/div\u003e\n\n\n      \u003cdiv class=\"bb-badge bb-badge-2\"\u003e\n\n        \u003cstrong\u003e\n          USB\n        \u003c\/strong\u003e\n\n        Rechargeable\n\n      \u003c\/div\u003e\n\n\n      \u003cdiv class=\"bb-product-image-wrap\"\u003e\n\n\n        \u003c!--\n        REPLACE THIS IMAGE URL\n        WITH YOUR ACTUAL BEAUTY BOMB IMAGE\n        --\u003e\n\n        \u003cimg class=\"bb-product-image\" src=\"https:\/\/placehold.co\/700x900\/111111\/ff4f9a?text=BEAUTY+BOMB\" alt=\"Beauty Bomb Electric Makeup Brush Cleaner\"\u003e\n\n\n      \u003c\/div\u003e\n\n\n    \u003c\/div\u003e\n\n\n  \u003c\/section\u003e\n\n\n  \u003c!-- =========================================\n       STATS\n  ========================================= --\u003e\n\n  \u003cdiv class=\"bb-stats\"\u003e\n\n\n    \u003cdiv class=\"bb-stat\"\u003e\n\n      \u003cdiv class=\"bb-stat-number\"\u003e\n        30s\n      \u003c\/div\u003e\n\n      \u003cdiv class=\"bb-stat-text\"\u003e\n        Fast deep cleaning\n      \u003c\/div\u003e\n\n    \u003c\/div\u003e\n\n\n    \u003cdiv class=\"bb-stat\"\u003e\n\n      \u003cdiv class=\"bb-stat-number\"\u003e\n        8+\n      \u003c\/div\u003e\n\n      \u003cdiv class=\"bb-stat-text\"\u003e\n        Brushes at once\n      \u003c\/div\u003e\n\n    \u003c\/div\u003e\n\n\n    \u003cdiv class=\"bb-stat\"\u003e\n\n      \u003cdiv class=\"bb-stat-number\"\u003e\n        USB\n      \u003c\/div\u003e\n\n      \u003cdiv class=\"bb-stat-text\"\u003e\n        Rechargeable power\n      \u003c\/div\u003e\n\n    \u003c\/div\u003e\n\n\n  \u003c\/div\u003e\n\n\n  \u003c!-- =========================================\n       FEATURES\n  ========================================= --\u003e\n\n  \u003csection class=\"bb-section\"\u003e\n\n\n    \u003cdiv class=\"bb-section-inner\"\u003e\n\n\n      \u003cdiv class=\"bb-section-heading\"\u003e\n\n        \u003cspan\u003e\n          WHY YOU'LL LOVE IT\n        \u003c\/span\u003e\n\n        \u003ch2\u003e\n          Your Brushes Deserve Better.\n        \u003c\/h2\u003e\n\n        \u003cp\u003e\n\n          Upgrade your beauty routine with a cleaner designed\n          to make brush hygiene effortless, quick and satisfying.\n\n        \u003c\/p\u003e\n\n      \u003c\/div\u003e\n\n\n      \u003cdiv class=\"bb-features\"\u003e\n\n\n        \u003cdiv class=\"bb-card\"\u003e\n\n          \u003cdiv class=\"bb-icon\"\u003e\n            💧\n          \u003c\/div\u003e\n\n          \u003ch3\u003e\n            Deep Clean\n          \u003c\/h3\u003e\n\n          \u003cp\u003e\n\n            Powerful spinning action helps lift makeup residue,\n            oils and buildup from your brushes.\n\n          \u003c\/p\u003e\n\n        \u003c\/div\u003e\n\n\n        \u003cdiv class=\"bb-card\"\u003e\n\n          \u003cdiv class=\"bb-icon\"\u003e\n            ⚡\n          \u003c\/div\u003e\n\n          \u003ch3\u003e\n            Under 30 Seconds\n          \u003c\/h3\u003e\n\n          \u003cp\u003e\n\n            Spend less time cleaning and more time creating\n            your perfect makeup look.\n\n          \u003c\/p\u003e\n\n        \u003c\/div\u003e\n\n\n        \u003cdiv class=\"bb-card\"\u003e\n\n          \u003cdiv class=\"bb-icon\"\u003e\n            ✨\n          \u003c\/div\u003e\n\n          \u003ch3\u003e\n            Gentle on Bristles\n          \u003c\/h3\u003e\n\n          \u003cp\u003e\n\n            Designed to clean effectively while being gentle\n            enough for your everyday makeup brushes.\n\n          \u003c\/p\u003e\n\n        \u003c\/div\u003e\n\n\n        \u003cdiv class=\"bb-card\"\u003e\n\n          \u003cdiv class=\"bb-icon\"\u003e\n            🔋\n          \u003c\/div\u003e\n\n          \u003ch3\u003e\n            USB Rechargeable\n          \u003c\/h3\u003e\n\n          \u003cp\u003e\n\n            No constant battery replacements.\n            Simply charge and you're ready for your next clean.\n\n          \u003c\/p\u003e\n\n        \u003c\/div\u003e\n\n\n        \u003cdiv class=\"bb-card\"\u003e\n\n          \u003cdiv class=\"bb-icon\"\u003e\n            🪞\n          \u003c\/div\u003e\n\n          \u003ch3\u003e\n            Vanity Friendly\n          \u003c\/h3\u003e\n\n          \u003cp\u003e\n\n            Compact 9cm × 15.8cm design fits beautifully\n            into your beauty space.\n\n          \u003c\/p\u003e\n\n        \u003c\/div\u003e\n\n\n        \u003cdiv class=\"bb-card\"\u003e\n\n          \u003cdiv class=\"bb-icon\"\u003e\n            💎\n          \u003c\/div\u003e\n\n          \u003ch3\u003e\n            Premium Design\n          \u003c\/h3\u003e\n\n          \u003cp\u003e\n\n            Transparent construction lets you watch the\n            cleaning process happen in real time.\n\n          \u003c\/p\u003e\n\n        \u003c\/div\u003e\n\n\n      \u003c\/div\u003e\n\n    \u003c\/div\u003e\n\n  \u003c\/section\u003e\n\n\n  \u003c!-- =========================================\n       PERFECT FOR\n  ========================================= --\u003e\n\n  \u003csection class=\"bb-section\"\u003e\n\n\n    \u003cdiv class=\"bb-section-inner\"\u003e\n\n\n      \u003cdiv class=\"bb-perfect\"\u003e\n\n\n        \u003cdiv class=\"bb-perfect-box\"\u003e\n\n\n          \u003cspan style=\"\n            color:#ff9bc7;\n            font-size:12px;\n            font-weight:800;\n            letter-spacing:2px;\n          \"\u003e\n\n            MADE FOR BEAUTY LOVERS\n\n          \u003c\/span\u003e\n\n\n          \u003ch2\u003e\n            Because Clean Brushes Matter.\n          \u003c\/h2\u003e\n\n\n          \u003cp\u003e\n\n            Whether you're a professional makeup artist\n            or someone who loves getting glammed up on\n            the weekend, Beauty Bomb makes keeping your\n            brushes clean simple.\n\n          \u003c\/p\u003e\n\n\n          \u003cdiv class=\"bb-check\"\u003e\n\n            \u003cspan\u003e✓\u003c\/span\u003e\n\n            Makeup artists\n\n          \u003c\/div\u003e\n\n\n          \u003cdiv class=\"bb-check\"\u003e\n\n            \u003cspan\u003e✓\u003c\/span\u003e\n\n            Everyday makeup lovers\n\n          \u003c\/div\u003e\n\n\n          \u003cdiv class=\"bb-check\"\u003e\n\n            \u003cspan\u003e✓\u003c\/span\u003e\n\n            Beauty enthusiasts\n\n          \u003c\/div\u003e\n\n\n          \u003cdiv class=\"bb-check\"\u003e\n\n            \u003cspan\u003e✓\u003c\/span\u003e\n\n            Your everyday vanity\n\n          \u003c\/div\u003e\n\n\n        \u003c\/div\u003e\n\n\n        \u003cdiv class=\"bb-perfect-box\"\u003e\n\n\n          \u003cspan style=\"\n            color:#ff9bc7;\n            font-size:12px;\n            font-weight:800;\n            letter-spacing:2px;\n          \"\u003e\n\n            SMALL DETAILS. BIG DIFFERENCE.\n\n          \u003c\/span\u003e\n\n\n          \u003ch2\u003e\n            Less Cleaning. More Glam.\n          \u003c\/h2\u003e\n\n\n          \u003cp\u003e\n\n            Stop letting dirty brushes become the forgotten\n            part of your beauty routine. Give your brushes\n            the refresh they deserve.\n\n          \u003c\/p\u003e\n\n\n          \u003cdiv class=\"bb-check\"\u003e\n\n            \u003cspan\u003e✦\u003c\/span\u003e\n\n            Compact 9cm × 15.8cm design\n\n          \u003c\/div\u003e\n\n\n          \u003cdiv class=\"bb-check\"\u003e\n\n            \u003cspan\u003e✦\u003c\/span\u003e\n\n            Fits multiple brush sizes\n\n          \u003c\/div\u003e\n\n\n          \u003cdiv class=\"bb-check\"\u003e\n\n            \u003cspan\u003e✦\u003c\/span\u003e\n\n            Transparent cleaning chamber\n\n          \u003c\/div\u003e\n\n\n        \u003c\/div\u003e\n\n\n      \u003c\/div\u003e\n\n    \u003c\/div\u003e\n\n  \u003c\/section\u003e\n\n\n  \u003c!-- =========================================\n       WHAT'S INCLUDED\n  ========================================= --\u003e\n\n  \u003csection class=\"bb-section\"\u003e\n\n\n    \u003cdiv class=\"bb-section-inner\"\u003e\n\n\n      \u003cdiv class=\"bb-section-heading\"\u003e\n\n        \u003cspan\u003e\n          WHAT'S INSIDE\n        \u003c\/span\u003e\n\n        \u003ch2\u003e\n          Everything You Need.\n        \u003c\/h2\u003e\n\n      \u003c\/div\u003e\n\n\n      \u003cdiv class=\"bb-included\"\u003e\n\n\n        \u003cdiv class=\"bb-item\"\u003e\n\n          \u003cdiv class=\"bb-item-icon\"\u003e\n            💎\n          \u003c\/div\u003e\n\n          \u003cdiv\u003e\n\n            \u003cstrong\u003e\n              Beauty Bomb Electric Cleaner\n            \u003c\/strong\u003e\n\n            \u003csmall\u003e\n              Your new beauty essential\n            \u003c\/small\u003e\n\n          \u003c\/div\u003e\n\n        \u003c\/div\u003e\n\n\n        \u003cdiv class=\"bb-item\"\u003e\n\n          \u003cdiv class=\"bb-item-icon\"\u003e\n            🔋\n          \u003c\/div\u003e\n\n          \u003cdiv\u003e\n\n            \u003cstrong\u003e\n              USB Charging Cable\n            \u003c\/strong\u003e\n\n            \u003csmall\u003e\n              Easy rechargeable power\n            \u003c\/small\u003e\n\n          \u003c\/div\u003e\n\n        \u003c\/div\u003e\n\n\n        \u003cdiv class=\"bb-item\"\u003e\n\n          \u003cdiv class=\"bb-item-icon\"\u003e\n            ⭕\n          \u003c\/div\u003e\n\n          \u003cdiv\u003e\n\n            \u003cstrong\u003e\n              Silicone Lid\n            \u003c\/strong\u003e\n\n            \u003csmall\u003e\n              Built-in brush holes\n            \u003c\/small\u003e\n\n          \u003c\/div\u003e\n\n        \u003c\/div\u003e\n\n\n        \u003cdiv class=\"bb-item\"\u003e\n\n          \u003cdiv class=\"bb-item-icon\"\u003e\n            ✨\n          \u003c\/div\u003e\n\n          \u003cdiv\u003e\n\n            \u003cstrong\u003e\n              Premium Cleaning Experience\n            \u003c\/strong\u003e\n\n            \u003csmall\u003e\n              Simple, fast \u0026amp; effortless\n            \u003c\/small\u003e\n\n          \u003c\/div\u003e\n\n        \u003c\/div\u003e\n\n\n      \u003c\/div\u003e\n\n    \u003c\/div\u003e\n\n  \u003c\/section\u003e\n\n\n  \u003c!-- =========================================\n       FINAL EMOTIONAL SECTION\n  ========================================= --\u003e\n\n  \u003csection class=\"bb-final\"\u003e\n\n\n    \u003ch2\u003e\n\n      Make Clean Brushes\u003cbr\u003e\n\n      \u003cem\u003eYour New Beauty Ritual.\u003c\/em\u003e\n\n    \u003c\/h2\u003e\n\n\n    \u003cp\u003e\n\n      Your makeup deserves a clean canvas.\n      Give your brushes the care they deserve\n      and make every makeup application feel better.\n\n    \u003c\/p\u003e\n\n\n    \u003cdiv class=\"bb-urgency\"\u003e\n\n      ✦ LIMITED STOCKS AVAILABLE — DON'T MISS OUT ✦\n\n    \u003c\/div\u003e\n\n\n  \u003c\/section\u003e\n\n\n\u003c\/div\u003e","brand":"Beauty Bomb ","offers":[{"title":"Default Title","offer_id":52753948672285,"sku":null,"price":530.0,"currency_code":"ZAR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/1003\/6337\/0781\/files\/beauty-bomb-brush-cleaner.png?v=1786471895","url":"https:\/\/beautybomb.co.za\/products\/beauty-bomb-electric-makeup-brush-cleaner","provider":"Beauty Bomb ","version":"1.0","type":"link"}