{"title":"Static Nails Treatment","description":"\u003cstyle\u003e\n  :root {\n    --blush: #faf5f3;\n    --rose: #d4736a;\n    --rose-light: #f5e0dc;\n    --rose-dark: #a04e47;\n    --ink: #1e1a19;\n    --ink-muted: #4a4340;\n    --ink-subtle: #8a7f7c;\n    --border: #e8deda;\n  }\n\n  .bp-collection-header *,\n  .bp-collection-header *::before,\n  .bp-collection-header *::after { box-sizing: border-box; }\n\n  .bp-collection-header {\n    max-width: none;\n    margin: 0 auto;\n    background: #fff;\n    padding: 12px 0 16px;\n    color: var(--ink);\n  }\n\n  .bp-collection-header details { margin: 0; text-align: center; }\n\n  .bp-about-row {\n    display: inline-flex;\n    align-items: center;\n    gap: 10px;\n    list-style: none;\n    cursor: pointer;\n    padding: 0;\n  }\n\n  .bp-about-row::-webkit-details-marker { display: none; }\n  .bp-about-row::marker { display: none; }\n\n  .bp-about-label {\n    font-size: 11px;\n    font-weight: 500;\n    letter-spacing: 0.08em;\n    text-transform: uppercase;\n    color: var(--ink-subtle);\n    white-space: nowrap;\n    flex-shrink: 0;\n  }\n\n  .bp-about-pill {\n    display: inline-flex;\n    align-items: center;\n    gap: 6px;\n    padding: 7px 14px;\n    border: 1px solid var(--border);\n    border-radius: 20px;\n    background: #fff;\n    font-size: 11px;\n    font-weight: 500;\n    color: var(--ink-muted);\n    white-space: nowrap;\n    line-height: 1;\n    text-transform: uppercase;\n    letter-spacing: 0.05em;\n    transition: background 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s;\n  }\n\n  .bp-about-row:hover .bp-about-pill {\n    border-color: var(--ink);\n    color: #fff;\n    background: var(--ink);\n  }\n\n  details[open] .bp-about-pill {\n    background: var(--ink);\n    border-color: var(--ink);\n    color: #fff;\n    box-shadow: 0 2px 8px rgba(30,26,25,0.2);\n  }\n\n  .bp-about-pill__icon {\n    display: inline-flex;\n    align-items: center;\n    justify-content: center;\n    width: 14px;\n    height: 14px;\n    border-radius: 50%;\n    border: 1px solid currentColor;\n    font-size: 11px;\n    line-height: 1;\n    flex-shrink: 0;\n    opacity: 0.7;\n    transition: transform 0.2s;\n    font-style: normal;\n  }\n\n  details[open] .bp-about-pill__icon {\n    transform: rotate(45deg);\n    opacity: 1;\n  }\n\n  .bp-about-panel {\n    border: 1px solid var(--border);\n    border-top: 2px solid var(--rose);\n    padding: 14px 18px 13px;\n    margin-top: 10px;\n    background: var(--blush);\n    text-align: center;\n  }\n\n  .bp-about-panel__desc {\n    font-size: 13px;\n    font-weight: 300;\n    color: var(--ink-muted);\n    line-height: 1.6;\n    margin: 0;\n  }\n\n  .bp-subnav {\n    position: relative;\n    padding: 12px 16px 0;\n    margin-top: 12px;\n    border-top: 1px solid var(--border);\n  }\n\n  .bp-subnav.bp-subnav--standalone {\n    padding: 0 16px;\n    margin-top: 0;\n    border-top: 0;\n  }\n\n  .bp-subnav.bp-subnav--standalone::before,\n  .bp-subnav.bp-subnav--standalone::after {\n    top: 0;\n  }\n\n  \/* Fade gradients only appear in mobile (overflow-scroll) mode — see media query below. *\/\n  .bp-subnav::before,\n  .bp-subnav::after {\n    content: '';\n    position: absolute;\n    top: 12px;\n    bottom: 6px;\n    width: 32px;\n    pointer-events: none;\n    z-index: 1;\n    display: none;\n  }\n  .bp-subnav::before { left: 0; background: linear-gradient(to right, #fff, transparent); }\n  .bp-subnav::after { right: 0; background: linear-gradient(to left, #fff, transparent); }\n\n  .bp-subnav__track {\n    display: flex;\n    align-items: center;\n    gap: 10px;\n    overflow-x: auto;\n    scroll-behavior: smooth;\n    -webkit-overflow-scrolling: touch;\n    scrollbar-width: none;\n    padding: 4px 8px 6px;\n    flex-wrap: wrap;\n    justify-content: center;\n    row-gap: 6px;\n  }\n\n  .bp-subnav__track::-webkit-scrollbar { display: none; }\n\n  .bp-subnav__label {\n    font-size: 11px;\n    font-weight: 500;\n    letter-spacing: 0.08em;\n    text-transform: uppercase;\n    color: var(--ink-subtle);\n    white-space: nowrap;\n    flex-shrink: 0;\n    margin-right: 2px;\n  }\n\n  .bp-subnav__link {\n    display: inline-block;\n    font-size: 11px;\n    font-weight: 500;\n    letter-spacing: 0.05em;\n    text-transform: uppercase;\n    color: var(--ink-muted);\n    text-decoration: none;\n    padding: 5px 14px;\n    border: 1px solid var(--border);\n    border-radius: 20px;\n    background: #fff;\n    white-space: nowrap;\n    flex-shrink: 0;\n    transition: background 0.15s, color 0.15s, border-color 0.15s;\n  }\n\n  .bp-subnav__link:hover,\n  .bp-subnav__link.is-active {\n    background: var(--ink);\n    color: #fff;\n    border-color: var(--ink);\n  }\n\n  @media (max-width: 600px) {\n    .bp-subnav__label { display: none; }\n    .bp-subnav__track {\n      gap: 6px;\n      flex-wrap: nowrap;\n      \/* \"safe center\" centers when content fits, falls back to left-align\n         when overflowing so the first pill is always visible. *\/\n      justify-content: safe center;\n    }\n    .bp-subnav::before,\n    .bp-subnav::after { display: block; }\n    .bp-about-panel__desc { font-size: 12.5px; }\n  }\n\u003c\/style\u003e\n\n\u003cdiv class=\"bp-collection-header\"\u003e\n  \u003cdetails\u003e\n    \u003csummary class=\"bp-about-row\"\u003e\n      \u003cspan class=\"bp-about-label\"\u003eAbout\u003c\/span\u003e\n      \u003cspan class=\"bp-about-pill\"\u003e\n        Static Nails Treatment\n        \u003ci class=\"bp-about-pill__icon\" aria-hidden=\"true\"\u003e+\u003c\/i\u003e\n      \u003c\/span\u003e\n    \u003c\/summary\u003e\n    \u003cdiv class=\"bp-about-panel\"\u003e\n      \u003cp class=\"bp-about-panel__desc\"\u003e\u003cem\u003eShop Static Nails nail treatments designed to strengthen, repair, and improve overall nail health. From growth treatments to strengthening formulas, these products help support stronger, healthier-looking nails.\u003c\/em\u003e\u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/details\u003e\n  \u003cnav class=\"bp-subnav\" aria-label=\"Static Nails Treatment sub-collections\"\u003e\n    \u003cdiv class=\"bp-subnav__track\"\u003e\n      \u003cspan class=\"bp-subnav__label\"\u003eBrowse\u003c\/span\u003e\n      \u003ca class=\"bp-subnav__link\" href=\"\/collections\/static-nails\"\u003eAll Static Nails\u003c\/a\u003e\n      \u003ca class=\"bp-subnav__link\" href=\"\/collections\/static-nails-reusable-pop-on-manicures\"\u003ePress-On Nails\u003c\/a\u003e\n      \u003ca class=\"bp-subnav__link\" href=\"\/collections\/static-nails-nail-tips\"\u003eNail Tips\u003c\/a\u003e\n      \u003ca class=\"bp-subnav__link\" href=\"\/collections\/static-nails-5-in-1-rapid-growth-treatment\"\u003eNail Growth Treatment\u003c\/a\u003e\n    \u003c\/div\u003e\n  \u003c\/nav\u003e\n\u003c\/div\u003e","products":[{"product_id":"static-nails-brush-on-nail-glue","title":"Static Nails - Brush-On Nail Glue","description":"\u003cp\u003eStatic Nails Brush-On Nail Glue delivers a strong, flexible bond that holds press-on nails securely for up to 18 days, then dissolves gradually for damage-free removal. The precision brush applicator gives you complete control over placement and coverage, ensuring an air-tight seal without mess or excess. Fast-drying and waterproof, this professional-grade formula adjusts to your schedule: apply more glue for extended wear, or use a thin layer for short-term manicures that last just a few days.\u003c\/p\u003e\u003cp\u003eThe screw-on cap keeps the glue fresh between uses, and the generous 7g bottle contains over three times the amount found in standard applicator sticks. Non-damaging and gentle on natural nails, this glue bonds like acrylic but removes cleanly when paired with Static's remover solution.\u003c\/p\u003e\u003cp style=\"font-family:sans-serif;font-size:10.5px;font-weight:600;letter-spacing:0.1em;text-transform:uppercase;color:#a04e47;margin-bottom:10px;\"\u003eHow to Use\u003c\/p\u003e\u003cdiv style=\"background:#faf5f3;border-left:3px solid #d4736a;border-radius:0 8px 8px 0;padding:14px 18px;\"\u003e\u003col style=\"padding-left:20px;\"\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eApply an even layer of glue to both the press-on nail and your natural nail.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003ePlace the nail slightly under your cuticle and press firmly for 30 seconds.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003ePress out any air pockets before the glue sets.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eTo remove, use Static remover solution to gently dissolve the bond.\u003c\/li\u003e\n\u003c\/ol\u003e\u003c\/div\u003e\u003cp style=\"font-family:sans-serif;font-size:10.5px;font-weight:600;letter-spacing:0.1em;text-transform:uppercase;color:#a04e47;margin-top:16px;margin-bottom:8px;\"\u003eProduct Details\u003c\/p\u003e\u003cul style=\"padding-left:20px;\"\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003e\n\u003cstrong\u003eFormula:\u003c\/strong\u003e Vegan, Cruelty-Free, Non-Toxic\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003e\n\u003cstrong\u003eSize:\u003c\/strong\u003e 7g \/ 0.25 fl oz\u003c\/li\u003e\n\u003c\/ul\u003e","brand":"Static Nails","offers":[{"title":"Default Title","offer_id":41249022574643,"sku":"STNS-TRT-GLUE7G","price":8.0,"currency_code":"USD","in_stock":false}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/Static-Nails-Brush-On-Nail-Glue-Manicure-Pedicure-Tools-at-Beyond-Polish.jpg?v=1743658938"},{"product_id":"static-nails-rapid-repair-nail-cuticle-oil","title":"Static Nails - Rapid Repair Nail \u0026 Cuticle Oil","description":"\u003cp\u003eStatic Nails Rapid Repair Nail and Cuticle Oil delivers visible restoration with a fast-absorbing formula that works overnight. This non-greasy treatment combines apricot, jojoba, and glycerin to deeply nourish cuticles and rehydrate natural nails. The lightweight texture sinks in quickly, making it ideal for daily use or as an intensive nail mask between manicures.\u003c\/p\u003e\u003cp\u003eUse after cleansing to replenish moisture and promote healthier nail growth. The formula is vegan, cruelty-free, and made in the USA with clean, non-toxic ingredients that support long-term nail and cuticle health.\u003c\/p\u003e\u003cp style=\"font-family:sans-serif;font-size:10.5px;font-weight:600;letter-spacing:0.1em;text-transform:uppercase;color:#a04e47;margin-bottom:10px;\"\u003eHow to Apply\u003c\/p\u003e\u003cdiv style=\"background:#faf5f3;border-left:3px solid #d4736a;border-radius:0 8px 8px 0;padding:14px 18px;\"\u003e\u003col style=\"padding-left:20px;\"\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eMassage oil into clean cuticles and nails as needed.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eApply once in the afternoon and again before bed for best results.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eUse as a nail mask after polish removal, then wash off before reapplying color.\u003c\/li\u003e\n\u003c\/ol\u003e\u003c\/div\u003e\u003cp style=\"font-family:sans-serif;font-size:10.5px;font-weight:600;letter-spacing:0.1em;text-transform:uppercase;color:#a04e47;margin-top:16px;margin-bottom:8px;\"\u003eProduct Details\u003c\/p\u003e\u003cul style=\"padding-left:20px;\"\u003e\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003e\n\u003cstrong\u003eFormula:\u003c\/strong\u003e Vegan, Cruelty-Free, Non-Toxic\u003c\/li\u003e\u003c\/ul\u003e","brand":"Static Nails","offers":[{"title":"Default Title","offer_id":41249022607411,"sku":"STNS-TRTL12 RAPID REPAIR OIL","price":22.0,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/Static-Nails-Rapid-Repair-Nail-Cuticle-Oil-Nail-Treatment-at-Beyond-Polish.jpg?v=1715009809"},{"product_id":"static-nails-100-non-toxic-odorless-polish-pop-on-remover-clear","title":"Static Nails - 100% Non-Toxic, Odorless Polish \u0026 Pop-On Remover (Clear)","description":"\u003cp\u003eStatic Nails Polish and Pop-On Remover offers a completely odorless, non-toxic alternative to traditional nail polish removers. This award-winning formula works gently yet effectively on lacquer, non-UV gel polish, glitter, press-on nails, and nail glue without stripping natural oils or leaving nails dry. Instead, it conditions and hydrates as it removes, making it safe for frequent use and sensitive skin.\u003c\/p\u003e\u003cp\u003eThe clear formula dissolves color and adhesive quickly while leaving nails feeling soft and moisturized. Perfect for anyone seeking a cleaner, healthier approach to nail care without harsh solvents or chemical odors.\u003c\/p\u003e\u003cp style=\"font-family:sans-serif;font-size:10.5px;font-weight:600;letter-spacing:0.1em;text-transform:uppercase;color:#a04e47;margin-bottom:10px;\"\u003eHow to Apply\u003c\/p\u003e\u003cdiv style=\"background:#faf5f3;border-left:3px solid #d4736a;border-radius:0 8px 8px 0;padding:14px 18px;\"\u003e\u003col style=\"padding-left:20px;\"\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eApply a few drops to each nail and wait 30 to 60 seconds.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eSaturate a cotton round and press firmly against nail for 10 to 30 seconds.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eBuff nail with saturated cotton until no color remains.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eWash hands immediately after use.\u003c\/li\u003e\n\u003c\/ol\u003e\u003c\/div\u003e\u003cp style=\"font-family:sans-serif;font-size:10.5px;font-weight:600;letter-spacing:0.1em;text-transform:uppercase;color:#a04e47;margin-top:16px;margin-bottom:8px;\"\u003eProduct Details\u003c\/p\u003e\u003cul style=\"padding-left:20px;\"\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003e\n\u003cstrong\u003eFormula:\u003c\/strong\u003e Vegan, Cruelty-Free, Non-Toxic\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003e\n\u003cstrong\u003eSize:\u003c\/strong\u003e 64 ml \/ 2.16 fl oz\u003c\/li\u003e\n\u003c\/ul\u003e","brand":"Static Nails","offers":[{"title":"Default Title","offer_id":41249022705715,"sku":"STNS-TRTREMOVER NO CLEAR","price":24.0,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/Static-Nails-100-Non-Toxic-Odorless-Polish-Pop-On-Remover-Clear-Cleansers-Removers-at-Beyond-Polish.jpg?v=1743714240"}],"url":"https:\/\/www.beyondpolish.com\/collections\/static-nails-treatment.oembed","provider":"Beyond Polish","version":"1.0","type":"link"}