{"title":"CND Nail Polish","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  \u003cnav class=\"bp-subnav bp-subnav--standalone\" aria-label=\"CND Nail Polish 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=\"\/pages\/cnd\"\u003eDiscover CND\u003c\/a\u003e\n      \u003ca class=\"bp-subnav__link\" href=\"\/collections\/cnd\"\u003eAll CND\u003c\/a\u003e\n      \u003ca class=\"bp-subnav__link\" href=\"\/collections\/cnd-nail-lacquer\"\u003eNail Lacquer\u003c\/a\u003e\n      \u003ca class=\"bp-subnav__link\" href=\"\/collections\/cnd-gel-polish\"\u003eGel Polish\u003c\/a\u003e\n      \u003ca class=\"bp-subnav__link\" href=\"\/collections\/cnd-nudes-collection\"\u003eNude Polish\u003c\/a\u003e\n    \u003c\/div\u003e\n  \u003c\/nav\u003e\n\u003c\/div\u003e","products":[{"product_id":"cnd-vinylux-asphalt-0-5-oz-101","title":"CND - Vinylux Asphalt 0.5 oz - #101","description":"\u003cp\u003eCND Vinylux in Asphalt delivers a rich, sophisticated grey with a smooth creme finish. This cool-toned neutral feels modern and refined, effortless for any season. The hybrid gel-like formula offers longwear performance without the need for a base coat, strengthening resistance to chips over time.\u003c\/p\u003e\u003cp\u003eThis 0.5 oz bottle provides professional-grade color that dries naturally to a flawless finish. The patent-pending technology works with natural light to ensure lasting durability and shine. Pair with Vinylux Weekly Top Coat for extended wear.\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 two thin coats of Vinylux Weekly Polish directly to clean nails.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eFinish with one coat of Vinylux Weekly Top Coat for durability.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eAllow to dry naturally for a flawless finish.\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 Longwear, Hybrid Gel-Like\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003e\n\u003cstrong\u003eSize:\u003c\/strong\u003e 0.5 oz\u003c\/li\u003e\n\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":1739554563,"sku":"V-101","price":8.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Vinylux-Asphalt-0_5-oz-101-Nail-Lacquer-at-Beyond-Polish_d03bd65a.jpg?v=1763766581"},{"product_id":"cnd-vinylux-beau-0-5-oz-103","title":"CND - Vinylux Beau 0.5 oz - #103","description":"\u003cp\u003eCND Vinylux in Beau is a sheer pink with a luminous, soft finish that flatters every skin tone. This semi-sheer lacquer builds beautifully for a barely-there wash of color or layers to a polished pink that feels effortless and refined. The longwear formula strengthens its chip resistance over time, delivering up to seven days of flawless color without a base coat.\u003c\/p\u003e\u003cp\u003eVinylux works with natural light to cure and harden, creating a durable finish that outlasts traditional polish. The self-adhering color coat eliminates the need for primer, streamlining your manicure routine. Pair with CND Vinylux Weekly Top Coat for maximum shine and durability.\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 two thin coats of Vinylux polish directly to clean, dry nails.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eFinish with one coat of Vinylux Weekly Top Coat for extended wear.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eAllow to air dry, no lamp required.\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\u003eSize:\u003c\/strong\u003e 0.5 oz\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003e\n\u003cstrong\u003eFinish:\u003c\/strong\u003e Semi-sheer\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003e\n\u003cstrong\u003eFormula:\u003c\/strong\u003e Longwear\u003c\/li\u003e\n\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":1739554115,"sku":"V-103","price":8.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Vinylux-Beau-0_5-oz-103-Nail-Lacquer-at-Beyond-Polish_713f9c1a.jpg?v=1743634952"},{"product_id":"cnd-vinylux-beckoning-begonia-0-5-oz-189","title":"CND - Vinylux Beckoning Begonia 0.5 oz - #189","description":"\u003cp\u003eCND Vinylux Beckoning Begonia is a luminous purple shimmer that shifts with every movement, catching light like spring petals after rain. The hybrid gel-like formula delivers seven days of chip-resistant wear without a base coat, strengthening over time as it bonds to natural light.\u003c\/p\u003e\u003cp\u003eThis 0.5 oz bottle offers buildable, opaque coverage that dries to a flawless finish. The longwear technology works with natural light to resist chips and maintain vibrancy through a full week.\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 two thin coats of Vinylux polish directly to clean nails.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eFinish with one coat of Vinylux Weekly Top Coat.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eAllow to dry naturally for a flawless finish.\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 Longwear, Hybrid Gel-Like\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003e\n\u003cstrong\u003eCoverage:\u003c\/strong\u003e Opaque\u003c\/li\u003e\n\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":1739497155,"sku":"V-189","price":8.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Vinylux-Beckoning-Begonia-0_5-oz-189-Nail-Lacquer-at-Beyond-Polish_bbfcd76b.jpg?v=1763854685"},{"product_id":"cnd-vinylux-black-pool-0-5-oz-105","title":"CND - Vinylux Black Pool 0.5 oz - #105","description":"\u003cp\u003eCND Vinylux in Black Pool is a pure, opaque black with a smooth creme finish. This professional-grade lacquer delivers rich, saturated color that strengthens over time. The hybrid gel-like formula wears for up to seven days without chipping, responding to natural light to deepen its resistance with every passing hour.\u003c\/p\u003e\u003cp\u003eAt 0.5 oz, this longwear polish requires no base coat. The adhesives are built into the color coat itself, creating a flawless bond that only grows stronger. Pair with CND Vinylux Weekly Top Coat for a chip-resistant, high-gloss manicure that lasts.\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 two thin coats of Vinylux Black Pool directly to clean, dry nails.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eAllow each coat to dry naturally before applying the next.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eFinish with one coat of Vinylux Weekly Top Coat for lasting shine.\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 Longwear, Professional\u003c\/li\u003e\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":1739553667,"sku":"V-105","price":8.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Vinylux-Black-Pool-0_5-oz-105-Nail-Lacquer-at-Beyond-Polish_42f81bd6.jpg?v=1743634967"},{"product_id":"cnd-vinylux-bloodline-0-5-oz-106","title":"CND - Vinylux Bloodline 0.5 oz - #106","description":"\u003cp\u003eCND Vinylux in Bloodline delivers a rich, opaque red with a smooth creme finish. This deep crimson shade carries the intensity of heritage and celebration, polished to a high-gloss shine. The longwear formula strengthens over time with exposure to natural light, resisting chips for up to seven days.\u003c\/p\u003e\u003cp\u003eBloodline is 0.5 oz and works without a base coat. The self-adhering color coat bonds directly to the nail, creating a resilient wear that improves as the days go on. No UV lamp needed.\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 two thin coats of Vinylux polish directly to clean, dry nails.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eFinish with one coat of Vinylux Weekly Top Coat.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eAllow to air dry in natural light for optimal wear.\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 Longwear\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003e\n\u003cstrong\u003eSize:\u003c\/strong\u003e 0.5 oz\u003c\/li\u003e\n\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":1739547331,"sku":"V-106","price":8.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Vinylux-Bloodline-0_5-oz-106-Nail-Lacquer-at-Beyond-Polish_f5e361ba.jpg?v=1743634981"},{"product_id":"cnd-vinylux-blush-teddy-0-5-oz-182","title":"CND - Vinylux Blush Teddy 0.5 oz - #182","description":"\u003cp\u003eCND Vinylux in Blush Teddy is a soft pink with a delicate shimmer that catches the light with every gesture. This sheer-to-opaque formula builds effortlessly, letting you layer for subtle dimension or full coverage. The longwear polish strengthens its chip resistance over time, delivering up to seven days of flawless wear without a base coat.\u003c\/p\u003e\u003cp\u003ePart of the CND Bridal Collection, Blush Teddy offers a refined, romantic finish ideal for weddings and special occasions. The Vinylux formula works with natural light to cure and harden, creating a durable, high-shine finish that improves with wear. 0.5 oz.\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 two thin coats directly to clean, dry nails.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eSeal with CND Vinylux Weekly Top Coat for extended wear.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eAllow natural light exposure to strengthen the finish.\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\u003eFinish:\u003c\/strong\u003e Sheer to Opaque with Shimmer\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003e\n\u003cstrong\u003eWear:\u003c\/strong\u003e Longwear, up to 7 days\u003c\/li\u003e\n\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":1739498819,"sku":"V-182","price":8.99,"currency_code":"USD","in_stock":false}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Vinylux-Blush-Teddy-0_5-oz-182-Nail-Lacquer-at-Beyond-Polish_d0c74072.jpg?v=1763770218"},{"product_id":"cnd-vinylux-cake-pop-0-5-oz-135","title":"CND - Vinylux Cake Pop 0.5 oz - #135","description":"\u003cp\u003eCND Vinylux in Cake Pop delivers a sweet pink creme finish with opaque coverage in two coats. This hybrid gel-like formula strengthens its chip resistance over time, lasting up to seven days without a base coat. The patented technology works with natural light to create a flawless, long-lasting finish that outperforms traditional polish.\u003c\/p\u003e\u003cp\u003eCake Pop is part of CND's professional longwear system, designed to deliver salon-quality results at home. The 0.5 oz bottle pairs seamlessly with Vinylux Weekly Top Coat for maximum durability and shine.\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 two thin coats of Vinylux Weekly Polish to clean, dry nails.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eAllow each coat to dry naturally for a flawless finish.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eFinish with one coat of Vinylux Weekly Top Coat for extra durability.\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 Longwear, Hybrid Gel-Like\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003e\n\u003cstrong\u003eCoverage:\u003c\/strong\u003e Opaque\u003c\/li\u003e\n\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":1739518595,"sku":"V-135","price":8.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Vinylux-Cake-Pop-0_5-oz-135-Nail-Lacquer-at-Beyond-Polish_f1537913.jpg?v=1763595897"},{"product_id":"cnd-vinylux-cityscape-0-5-oz-107","title":"CND - Vinylux Cityscape 0.5 oz - #107","description":"\u003cp\u003eCND Vinylux in Cityscape is a cool, neutral grey with a smooth creme finish. This modern urban hue reads as refined and understated, bringing a professional polish to any look. The hybrid gel-like formula delivers up to seven days of longwear without the need for a base coat, and strengthens its resistance to chips over time.\u003c\/p\u003e\u003cp\u003eVinylux's patent-pending technology works with natural light to cure naturally to a flawless finish. Apply two thin coats for buildable opacity and follow with Vinylux Weekly Top Coat for extended wear and high-gloss shine. 0.5 oz.\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 two thin coats of Vinylux directly to clean, dry nails.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eAllow each coat to dry naturally before applying the next.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eSeal with one coat of Vinylux Weekly Top Coat for extended wear.\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\u003eWear:\u003c\/strong\u003e Longwear, up to 7 days\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003e\n\u003cstrong\u003eFinish:\u003c\/strong\u003e Hybrid gel-like formula\u003c\/li\u003e\n\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":1739547075,"sku":"V-107","price":8.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Vinylux-Cityscape-0_5-oz-107-Nail-Lacquer-at-Beyond-Polish_fc436c29.jpg?v=1763595544"},{"product_id":"cnd-vinylux-cream-puff-0-5-oz-108","title":"CND - Vinylux Cream Puff 0.5 oz - #108","description":"\u003cp\u003eCND Vinylux Cream Puff is a clean, opaque white creme that has earned its place as a Vinylux staple. The smooth, milky finish reads pure and polished, equally at home in classic French manicures, ombré gradients, sponging techniques, and nail art base layers. Identified by shade #108, it is one of the most-used whites in the CND Vinylux library.\u003c\/p\u003e\u003cp\u003eCND Vinylux is a long-wear polish system designed to deliver up to seven days of chip-resistant color without a base coat. The patent-pending technology relies on natural light to build resistance over time, drying to a flawless creme finish that strengthens against wear rather than degrading. The result is professional-grade longwear in a system built around nail health and clinical formula science.\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-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\u003eSize:\u003c\/strong\u003e 0.5 oz\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003e\n\u003cstrong\u003eShade Number:\u003c\/strong\u003e 108\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003e\n\u003cstrong\u003eFinish:\u003c\/strong\u003e Opaque white creme\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003e\n\u003cstrong\u003eWear:\u003c\/strong\u003e Up to 7+ days, no base coat needed\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003e\n\u003cstrong\u003eLongwear:\u003c\/strong\u003e Hybrid gel-like finish\u003c\/li\u003e\n\u003c\/ul\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;\"\u003ePre-treat dry nails with CND Solar Oil cuticle treatment.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eApply two thin coats of Vinylux Weekly Polish in Cream Puff.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eFinish with one coat of Vinylux Weekly Top Coat.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eAllow to dry naturally for full longevity.\u003c\/li\u003e\n\u003c\/ol\u003e\u003c\/div\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":1739546883,"sku":"V-108","price":8.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Vinylux-Cream-Puff-0_5-oz-108-Nail-Lacquer-at-Beyond-Polish_128d9108.jpg?v=1763581102"},{"product_id":"cnd-vinylux-creekside-0-5-oz-183","title":"CND - Vinylux Creekside 0.5 oz - #183","description":"\u003cp\u003eCND Vinylux Creekside is a soft, washed denim blue with a smooth creme finish. This professional-grade formula delivers consistent color in two coats and bonds directly to the natural nail without a base coat.\u003c\/p\u003e\u003cp\u003eThe Vinylux system uses natural light exposure to strengthen the polish over time, building chip resistance with wear. Expect up to seven days of flawless color with a high-gloss finish when paired with Vinylux Weekly Top Coat.\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 two thin coats of Vinylux Creekside directly to clean, dry nails.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eFinish with one coat of Vinylux Weekly Top Coat.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eAllow to air dry for a durable, high-gloss finish.\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\u003eWear:\u003c\/strong\u003e Longwear, up to 7 days\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003e\n\u003cstrong\u003eSize:\u003c\/strong\u003e 0.5 oz\u003c\/li\u003e\n\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":1739498627,"sku":"V-183","price":8.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Vinylux-Creekside-0_5-oz-183-Nail-Lacquer-at-Beyond-Polish_20723dbf.jpg?v=1763768022"},{"product_id":"cnd-vinylux-dark-dahlia-0-5-oz-159","title":"CND - Vinylux Dark Dahlia 0.5 oz - #159","description":"\u003cp\u003eCND Vinylux in Dark Dahlia delivers deep, saturated purple in a smooth creme finish. The self-adhering formula requires no base coat and strengthens its chip resistance over time. Natural light exposure activates the patent-pending technology for up to seven days of glossy, flawless color. Dark Dahlia is ideal for fall looks that call for rich, moody tones with professional staying power.\u003c\/p\u003e\u003cp\u003eThis 0.5 oz bottle features CND's ProWide Brush for even application in fewer strokes. The hybrid gel-like formula dries naturally without UV light while maintaining the durability of gel polish. Pair with CND Vinylux Weekly Top Coat for maximum wear and high-gloss shine.\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 two thin coats of Vinylux Weekly Polish directly to clean, dry nails.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eAllow each coat to dry naturally without UV light.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eFinish with one coat of Vinylux Weekly Top Coat for extended wear.\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 Longwear, Hybrid Gel-Like\u003c\/li\u003e\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":1739506115,"sku":"V-159","price":8.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Vinylux-Dark-Dahlia-0_5-oz-159-Nail-Lacquer-at-Beyond-Polish_d6982f30.jpg?v=1743635019"},{"product_id":"cnd-vinylux-fedora-0-5-oz-114","title":"CND - Vinylux Fedora 0.5 oz - #114","description":"\u003cp\u003eCND Vinylux in Fedora is a rich, earthy brown with a smooth creme finish. This warm neutral works across seasons, grounding bold looks or anchoring minimalist polish rotations with quiet confidence. The hybrid gel-like formula delivers longwear without a base coat, strengthening resistance to chips as it cures naturally in ambient light.\u003c\/p\u003e\u003cp\u003eVinylux's patent-pending technology means fewer touch-ups and a flawless finish that holds through wear. At 0.5 oz, this professional-grade lacquer brings salon durability to your at-home routine.\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 two thin coats of Vinylux polish directly to clean, dry nails.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eFinish with one coat of Vinylux Weekly Top Coat for durability and shine.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eAllow to dry naturally in ambient light.\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 Longwear, Hybrid Gel-Like\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003e\n\u003cstrong\u003eSize:\u003c\/strong\u003e 0.5 oz\u003c\/li\u003e\n\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":1739531651,"sku":"V-114","price":8.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Vinylux-Fedora-0_5-oz-114-Nail-Lacquer-at-Beyond-Polish_62bbf990.jpg?v=1743709776"},{"product_id":"cnd-vinylux-field-fox-0-5-oz-185","title":"CND - Vinylux Field Fox 0.5 oz - #185","description":"\u003cp\u003eCND Vinylux in Field Fox is a soft, warm nude with a smooth creme finish. This understated neutral brings warmth to the skin without leaning too pink or too beige, making it a versatile choice for everyday wear or bridal looks. The formula delivers rich, even color in two coats and strengthens its chip resistance over time.\u003c\/p\u003e\u003cp\u003eVinylux's patent-pending technology works with natural light to cure and harden the polish, creating a durable, high-shine finish that lasts up to seven days. No base coat needed. The color coat contains adhesion technology that bonds directly to the nail. Field Fox is 0.5 oz.\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 two thin coats of Vinylux Weekly Polish directly to clean, dry nails.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eFinish with one coat of Vinylux Weekly Top Coat for extended wear.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eAllow polish to dry naturally in ambient light.\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\u003eWear:\u003c\/strong\u003e Longwear, up to 7 days\u003c\/li\u003e\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":1739498179,"sku":"V-185","price":8.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Vinylux-Field-Fox-0_5-oz-185-Nail-Lacquer-at-Beyond-Polish_660be774.jpg?v=1743635031"},{"product_id":"cnd-vinylux-grapefruit-sparkle-0-5-oz-118","title":"CND - Vinylux Grapefruit Sparkle 0.5 oz - #118","description":"\u003cp\u003eCND Vinylux Grapefruit Sparkle is a luminous pink shimmer that catches the light with every gesture. Delicate shimmer particles suspended in a semi-sheer base create a soft, romantic glow that builds from barely-there to polished perfection. The self-adhering formula requires no base coat and strengthens its chip resistance over time, delivering up to seven days of flawless wear.\u003c\/p\u003e\u003cp\u003eThis longwear lacquer dries naturally to a smooth finish and works with natural light to enhance durability. Pair with CND Vinylux Weekly Top Coat for extended shine and protection. Each 0.5 oz bottle delivers professional results at home.\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 two thin coats directly to clean, dry nails.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eFinish with one coat of CND Vinylux Weekly Top Coat.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eAllow to dry naturally for a flawless finish.\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 Longwear, Semi-sheer\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003e\n\u003cstrong\u003eSize:\u003c\/strong\u003e 0.5 oz\u003c\/li\u003e\n\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":1739530819,"sku":"V-118","price":8.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Vinylux-Grapefruit-Sparkle-0_5-oz-118-Nail-Lacquer-at-Beyond-Polish_d143bd99.jpg?v=1763408372"},{"product_id":"cnd-vinylux-hollywood-0-5-oz-119","title":"CND - Vinylux Hollywood 0.5 oz - #119","description":"\u003cp\u003eCND Vinylux Hollywood is a rich, opaque red with a creme finish. Deep and timeless, this shade carries a classic confidence that works for every occasion. The Vinylux formula delivers seven-day wear that strengthens over time, exposed to natural light.\u003c\/p\u003e\u003cp\u003eNo base coat needed. The adhesive is built into the color coat, and the polish becomes more chip-resistant with each passing day. Includes 0.5 oz of professional-grade lacquer.\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 two thin coats of Vinylux Weekly Polish directly to clean, bare nails.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eFinish with one coat of Vinylux Weekly Top Coat for extra durability and shine.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eAllow to dry naturally without curing under a lamp.\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 Longwear\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003e\n\u003cstrong\u003eSize:\u003c\/strong\u003e 0.5 oz\u003c\/li\u003e\n\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":1739530627,"sku":"V-119","price":8.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Vinylux-Hollywood-0_5-oz-119-Nail-Lacquer-at-Beyond-Polish.webp?v=1763632859"},{"product_id":"cnd-vinylux-indigo-frock-0-5-oz-176","title":"CND - Vinylux Indigo Frock 0.5 oz #176","description":"\u003cp\u003eCND Vinylux in Indigo Frock is a moody grey-blue with a smooth creme finish. This professional-grade lacquer delivers rich, even color with a hybrid gel-like shine that lasts up to seven days. The formula strengthens its resistance to chips over time, working with natural light to create an enduring, glossy finish.\u003c\/p\u003e\u003cp\u003eVinylux's self-adhering technology eliminates the need for a base coat. The 0.5 oz bottle includes a precision brush for flawless application in two thin coats. Pair with CND Vinylux Weekly Top Coat for maximum durability and high-gloss results.\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 two thin coats directly to clean, dry nails.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eAllow each coat to dry naturally.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eFinish with CND Vinylux Weekly Top Coat for extended wear.\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\u003eWear Time:\u003c\/strong\u003e Longwear\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003e\n\u003cstrong\u003eFormula:\u003c\/strong\u003e Professional, Hybrid Gel-Like\u003c\/li\u003e\n\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":1739500291,"sku":"V-176","price":8.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Vinylux-Indigo-Frock-0_5-oz-176-Nail-Lacquer-at-Beyond-Polish_9518c561.jpg?v=1763593630"},{"product_id":"cnd-vinylux-lilac-longing-0-5-oz-125","title":"CND - Vinylux Lilac Longing 0.5 oz - #125","description":"\u003cp\u003eCND Vinylux in Lilac Longing is a soft purple creme polish with a smooth, opaque finish and classic glossy shine. This delicate lilac shade brings a fresh, airy quality to your nails, perfect for spring and summer wear. The hybrid gel-like formula delivers up to seven days of chip-resistant color without a base coat, thanks to built-in adhesives that strengthen over time. Vinylux works with natural light to cure and harden, creating a flawless finish that resists wear and maintains its luminous shine.\u003c\/p\u003e\u003cp\u003eAt 0.5 oz, this bottle offers professional-grade color that applies evenly in two thin coats. The longwear formula is designed to perform beautifully on natural nails, providing salon-quality results at home.\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 two thin coats of Vinylux Weekly Polish directly to clean, dry nails.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eAllow each coat to dry naturally before applying the next.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eFinish with one coat of Vinylux Weekly Top Coat for extra durability and shine.\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 Longwear, Hybrid Gel-Like\u003c\/li\u003e\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":1739529347,"sku":"V-125","price":8.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Vinylux-Lilac-Longing-0_5-oz-125-Nail-Lacquer-at-Beyond-Polish_d896d6d4.jpg?v=1743635079"},{"product_id":"cnd-vinylux-lobster-roll-0-5-oz-122","title":"CND - Vinylux Lobster Roll 0.5 oz - #122","description":"\u003cp\u003eCND Vinylux Lobster Roll is a bold, true red creme polish with a lush, opaque finish. Delivered in a glossy, saturated coat, this iconic shade brings warmth and confidence to every look. The Vinylux formula strengthens its chip resistance over time, working with natural light to lock in color for up to seven days of flawless wear.\u003c\/p\u003e\u003cp\u003eThis hybrid gel-like system requires no base coat. The adhesives are built into the color, creating a smooth, professional finish that dries naturally and only gets stronger with exposure to light. Pair with CND Vinylux Weekly Top Coat for maximum durability and shine. Available in 0.5 oz.\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 two thin coats of Vinylux polish directly to clean, dry nails.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eFinish with one coat of Vinylux Weekly Top Coat.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eAllow to dry naturally for best results.\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 Longwear, Hybrid Gel-Like\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003e\n\u003cstrong\u003eFinish:\u003c\/strong\u003e Creme\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003e\n\u003cstrong\u003eCoverage:\u003c\/strong\u003e Opaque\u003c\/li\u003e\n\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":1739529923,"sku":"V-122","price":8.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Vinylux-Lobster-Roll-0_5-oz-122-Nail-Lacquer-at-Beyond-Polish_de392ac4.jpg?v=1743635092"},{"product_id":"cnd-vinylux-married-to-mauve-0-5-oz-129","title":"CND - Vinylux Married To Mauve 0.5 oz - #129","description":"\u003cp\u003eCND Vinylux in Married To Mauve delivers a soft, sophisticated purple in a smooth creme finish. This dusty mauve strikes the perfect balance between cool and warm, creating a polished, understated look that works for any occasion. The hybrid gel-like formula provides seven-day wear without a base coat, strengthening chip resistance over time as it's exposed to natural light.\u003c\/p\u003e\u003cp\u003eThis 0.5 oz bottle features CND's professional-grade Vinylux system, designed to simplify your manicure routine while delivering flawless, long-lasting color. The formula dries naturally to a smooth finish and pairs perfectly with Vinylux Weekly Top Coat for added durability and shine.\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 two thin coats directly to clean, dry nails without base coat.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eAllow each coat to dry naturally.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eSeal with CND Vinylux Weekly Top Coat for extended wear.\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 Longwear, Professional\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003e\n\u003cstrong\u003eSize:\u003c\/strong\u003e 0.5 oz\u003c\/li\u003e\n\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":1739527939,"sku":"V-129","price":8.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Vinylux-Married-To-Mauve-0_5-oz-129-Nail-Lacquer-at-Beyond-Polish_df38b13d.jpg?v=1743635105"},{"product_id":"cnd-vinylux-masquerade-0-5-oz-130","title":"CND - Vinylux Masquerade 0.5 oz - #130","description":"\u003cp\u003eCND Vinylux in Masquerade delivers a rich, red shimmer finish that catches light with every gesture. The luminous particles shift and sparkle without sacrificing the depth of color beneath. This professional-grade polish is formulated with Keratin Hardener and Jojoba Oil for healthier nails with every wear.\u003c\/p\u003e\u003cp\u003eVinylux's longwear technology strengthens its chip resistance over time, working with natural light to lock in color for up to seven days. The self-adhering formula eliminates the need for a base coat. Masquerade offers buildable opacity in two coats and a refined glossy finish when paired with Vinylux Weekly Top Coat. Available in 0.5 oz.\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 two thin coats directly to clean, dry nails.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eAllow each coat to dry naturally.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eFinish with one coat of Vinylux Weekly Top Coat for extended wear and shine.\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 Longwear\u003c\/li\u003e\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":1739527619,"sku":"V-130","price":8.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Vinylux-Masquerade-0_5-oz-130-Nail-Lacquer-at-Beyond-Polish_cb2cc839.jpg?v=1743635128"},{"product_id":"cnd-vinylux-midnight-swim-0-5-oz-131","title":"CND - Vinylux Midnight Swim 0.5 oz - #131","description":"\u003cp\u003eCND Vinylux in Midnight Swim is a deep, saturated blue polish with shimmer that catches the light like moonlight on water. The hybrid gel-like formula delivers a luminous finish that strengthens with wear, creating a chip-resistant manicure that lasts up to seven days. No base coat needed.\u003c\/p\u003e\u003cp\u003eVinylux's patent-pending technology works with natural light to build durability over time. The 0.5 oz bottle includes CND's precision brush for smooth, even application. Designed for professionals and enthusiasts alike, this long-lasting formula dries to a flawless finish without UV curing.\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 two thin coats of Vinylux directly to clean, dry nails.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eFinish with one coat of Vinylux Weekly Top Coat for added durability.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eAllow polish to dry naturally without UV light.\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 Longwear\u003c\/li\u003e\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":1739527427,"sku":"V-131","price":8.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Vinylux-Midnight-Swim-0_5-oz-131-Nail-Lacquer-at-Beyond-Polish_4f6bcbdf.jpg?v=1743881173"},{"product_id":"cnd-vinylux-negligee-0-5-oz-132","title":"CND - Vinylux Negligee 0.5 oz - #132","description":"\u003cp\u003eCND Vinylux Negligee is a soft, milky nude with a sheer, buildable finish that delivers a natural, effortless look. The barely-there wash of color enhances your natural nail with a polished, timeless elegance. This professional-grade formula strengthens its chip resistance over time and lasts up to seven days without a base coat.\u003c\/p\u003e\u003cp\u003ePart of the CND Bridal Collection, Negligee offers a refined, luminous finish that works with natural light to maintain flawless wear. The hybrid gel-like formula dries naturally and builds beautifully in two coats for your ideal opacity. Available in a 0.5 oz bottle.\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 two thin coats directly to clean, prepped nails.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eFollow with CND Vinylux Weekly Top Coat for extended wear.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eAllow formula to dry naturally between coats.\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 Longwear, Sheer\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003e\n\u003cstrong\u003eSize:\u003c\/strong\u003e 0.5 oz\u003c\/li\u003e\n\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":1739527171,"sku":"V-132","price":8.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Vinylux-Negligee-0_5-oz-132-Nail-Lacquer-at-Beyond-Polish_bb759ba1.jpg?v=1743635142"},{"product_id":"cnd-vinylux-pink-bikini-0-5-oz-134","title":"CND - Vinylux Pink Bikini 0.5 oz - #134","description":"\u003cp\u003eCND Vinylux in Pink Bikini is a vivid neon pink that delivers an electric pop of color with a smooth, opaque creme finish. This high-impact shade captures the energy of summer with bold, saturated pigment that builds to full coverage in two coats. The breakthrough Vinylux formula lasts up to seven days and strengthens its chip resistance over time, powered by patent-pending technology that works with natural light.\u003c\/p\u003e\u003cp\u003ePink Bikini arrives in a 0.5 oz bottle and features a longwear formula designed to be applied without a base coat. The adhesives are built into the color, so you can skip the primer and get straight to color. Pair with CND Vinylux Weekly Top Coat for a flawless, glossy finish that lasts through your week.\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 two thin coats of CND Vinylux directly to clean, dry nails.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eAllow each coat to dry naturally before applying the next.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eFinish with one coat of CND Vinylux Weekly Top Coat for extended wear.\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 Longwear\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003e\n\u003cstrong\u003eSize:\u003c\/strong\u003e 0.5 oz\u003c\/li\u003e\n\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":1739518915,"sku":"V-134","price":8.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Vinylux-Pink-Bikini-0_5-oz-134-Nail-Lacquer-at-Beyond-Polish_3589d917.jpg?v=1763594782"},{"product_id":"cnd-vinylux-red-baroness-0-5-oz-139","title":"CND - Vinylux Red Baroness 0.5 oz - #139","description":"\u003cp\u003eCND Vinylux Red Baroness delivers a deep, saturated red with a smooth creme finish. This rich, classic shade offers full opacity in two coats, capturing the timeless elegance of a true red with a modern, long-lasting formula. The hybrid gel-like system strengthens its chip resistance over time, working with natural light to maintain a flawless glossy finish for up to seven days.\u003c\/p\u003e\u003cp\u003eThis 0.5 oz bottle features CND's breakthrough weekly polish technology. No base coat needed, the adhesives are built into the color coat for seamless application and professional results at home.\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 two thin coats directly to clean, dry nails.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eFinish with CND Vinylux Weekly Top Coat for enhanced durability.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eAllow to dry naturally for a flawless, chip-resistant finish.\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 Longwear\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003e\n\u003cstrong\u003eSize:\u003c\/strong\u003e 0.5 oz\u003c\/li\u003e\n\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":1739517699,"sku":"V-139","price":8.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Vinylux-Red-Baroness-0_5-oz-139-Nail-Lacquer-at-Beyond-Polish_75286685.jpg?v=1743635181"},{"product_id":"cnd-vinylux-romantique-0-5-oz-142","title":"CND - Vinylux Romantique 0.5 oz - #142","description":"\u003cp\u003eCND Vinylux in Romantique is a soft, semi-sheer nude with a milky creme finish that diffuses light across the nail. This versatile shade layers beautifully for buildable coverage, from a whisper of color to a polished, opaque finish. The hybrid gel-like formula delivers chip-resistant wear for up to seven days without a base coat, strengthening over time as it's exposed to natural light.\u003c\/p\u003e\u003cp\u003eRomantique is part of the longwear Vinylux system, designed for flawless application and extended durability. The 0.5 oz bottle features CND's precision brush for smooth, even color in two thin coats. Pair with Vinylux Weekly Top Coat for a glossy, professional finish that lasts.\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 two thin coats of Vinylux Romantique directly to clean, dry nails.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eAllow each coat to dry naturally between applications.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eFinish with one coat of Vinylux Weekly Top Coat for extended wear.\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 Longwear, Semi-sheer\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003e\n\u003cstrong\u003eSize:\u003c\/strong\u003e 0.5 oz\u003c\/li\u003e\n\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":1739517059,"sku":"V-142","price":8.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Vinylux-Romantique-0_5-oz-142-Nail-Lacquer-at-Beyond-Polish_204abe16.jpg?v=1763406688"},{"product_id":"cnd-vinylux-rubble-0-5-oz-144","title":"CND - Vinylux Rubble 0.5 oz - #144","description":"\u003cp\u003eCND Vinylux in Rubble delivers a refined greige with a smooth creme finish. This cool-toned neutral balances sophistication with understated elegance, making it a timeless choice for any season. The hybrid gel-like formula applies flawlessly in two coats and strengthens over time, offering professional-grade wear without a base coat.\u003c\/p\u003e\u003cp\u003eVinylux's patent-pending technology works with natural light to resist chips and extend color for up to seven days. The self-adhering formula bonds directly to the nail, while the high-gloss finish maintains its luminous sheen from first application to final day. Rubble is part of CND's longwear collection, designed for clients who demand performance without compromise.\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 two thin coats of Vinylux polish directly to bare nails.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eSeal with one coat of Vinylux Weekly Top Coat for extended wear.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eAllow polish to dry naturally for a flawless finish.\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\u003eSize:\u003c\/strong\u003e 0.5 oz\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003e\n\u003cstrong\u003eWear:\u003c\/strong\u003e Longwear, up to 7 days\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003e\n\u003cstrong\u003eFinish:\u003c\/strong\u003e Creme\u003c\/li\u003e\n\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":1739515843,"sku":"V-144","price":8.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Vinylux-Rubble-0_5-oz-144-Nail-Lacquer-at-Beyond-Polish_2ab8c16d.jpg?v=1743794562"},{"product_id":"cnd-vinylux-scarlet-letter-0-5-oz-145","title":"CND - Vinylux Scarlet Letter 0.5 oz - #145","description":"\u003cp\u003eCND Vinylux Scarlet Letter is a rich, dark red creme that captures the depth and romance of classic crimson with a modern glossy finish. From the Magical Botany Holiday 2023 Collection, this shade carries the warmth of winter celebrations and the boldness of timeless red. The 0.5 oz bottle delivers smooth, even color that builds to full opacity in two coats.\u003c\/p\u003e\u003cp\u003eVinylux's hybrid gel-like formula works with natural light to strengthen resistance to chips over time. The patent-pending technology creates a durable, high-shine finish that lasts up to seven days without a base coat. Each application dries naturally to a flawless, salon-quality result.\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 two thin coats of Vinylux color directly to clean, dry nails.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eFinish with one coat of Vinylux Weekly Top Coat for durability and shine.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eAllow to dry naturally under ambient light.\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\u003eWear:\u003c\/strong\u003e Longwear, up to 7 days\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003e\n\u003cstrong\u003eFormula:\u003c\/strong\u003e Hybrid gel-like polish\u003c\/li\u003e\n\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":1739515139,"sku":"V-145","price":8.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Vinylux-Scarlet-Letter-0_5-oz-145-Nail-Lacquer-at-Beyond-Polish.jpg?v=1743635198"},{"product_id":"cnd-vinylux-strawberry-smoothie-0-5-oz-150","title":"CND - Vinylux Strawberry Smoothie 0.5 oz - #150","description":"\u003cp\u003eCND Vinylux in Strawberry Smoothie is a soft pink creme with a smooth, opaque finish. This shade captures the sweetness of early spring with a milky, diffused warmth that feels effortless and polished. The longwear formula strengthens over time, resisting chips while maintaining a flawless glossy surface. No base coat required.\u003c\/p\u003e\u003cp\u003eVinylux uses light-activated technology to build durability naturally. Each 0.5 oz bottle delivers professional-grade color that lasts up to seven days with minimal effort. The hybrid gel-like finish offers salon-quality shine without UV curing.\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 two thin coats of Vinylux directly to clean, dry nails.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eSeal with Vinylux Weekly Top Coat for extended wear.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eAllow polish to dry naturally in ambient light.\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 Longwear, Professional\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003e\n\u003cstrong\u003eSize:\u003c\/strong\u003e 0.5 oz\u003c\/li\u003e\n\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":1739512195,"sku":"V-150","price":8.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Vinylux-Strawberry-Smoothie-0_5-oz-150-Nail-Lacquer-at-Beyond-Polish.webp?v=1763769633"},{"product_id":"cnd-vinylux-studio-white-0-5-oz-151","title":"CND - Vinylux Studio White 0.5 oz - #151","description":"\u003cp\u003eCND Vinylux Studio White is a semi-sheer creme lacquer that delivers a clean, milky white finish with buildable coverage. The hybrid gel-like formula strengthens over time, offering up to seven days of chip-resistant wear without a base coat. Natural light activates the patent-pending technology, creating a durable, high-gloss finish that only gets stronger as days pass.\u003c\/p\u003e\u003cp\u003eStudio White works beautifully alone for a modern minimalist look or as a canvas for nail art. The self-adhering formula applies smoothly in two thin coats, drying to a flawless finish that resists chips and fading. At 0.5 oz, this longwear lacquer is a timeless essential for any nail collection.\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 two thin coats of Vinylux Studio White directly to clean nails.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eSeal with one coat of Vinylux Weekly Top Coat for durability and shine.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eAllow natural light exposure to activate the strengthening technology.\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 Longwear, Semi-sheer\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003e\n\u003cstrong\u003eSize:\u003c\/strong\u003e 0.5 oz\u003c\/li\u003e\n\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":1739511939,"sku":"V-151","price":8.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Vinylux-Studio-White-0_5-oz-151-Nail-Lacquer-at-Beyond-Polish.webp?v=1763769594"},{"product_id":"cnd-vinylux-tinted-love-0-5-oz-153","title":"CND - Vinylux Tinted Love 0.5 oz - #153","description":"\u003cp\u003eCND Vinylux Tinted Love is a rich, opaque purple creme that delivers seven days of color in a single system. This hybrid gel-like formula strengthens its resistance to chipping over time, drying naturally to a flawless finish without the need for a separate base coat.\u003c\/p\u003e\u003cp\u003ePart of the CND Vinylux system, Tinted Love offers professional-grade longwear with a simple two-step application. The patent-pending technology works with natural light to create an enduring polish that only gets more resilient as it wears. Available in a 0.5 oz bottle.\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 two thin coats of Vinylux polish directly to clean nails.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eFinish with one coat of Vinylux Weekly Top Coat.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eAllow to dry naturally for best results.\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 Longwear, Professional\u003c\/li\u003e\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":1739510595,"sku":"V-153","price":8.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Vinylux-Tinted-Love-0_5-oz-153-Nail-Lacquer-at-Beyond-Polish_ecb2d639.jpg?v=1763593496"},{"product_id":"cnd-vinylux-tropix-0-5-oz-154","title":"CND - Vinylux Tropix 0.5 oz - #154","description":"\u003cp\u003eCND Vinylux in Tropix is a vibrant coral-pink with a warm undertone and a smooth, opaque creme finish. The hybrid gel-like formula delivers up to seven days of high-gloss color that resists chipping and strengthens over time. Tropix brings radiant energy to any manicure, balancing playful warmth with a polished, professional look.\u003c\/p\u003e\u003cp\u003eThis longwear lacquer requires no base coat and works with natural light to enhance durability. The result is a flawless finish that improves with wear. Available in 0.5 oz.\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 two thin coats of Vinylux Weekly Polish directly to clean nails.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eAllow each coat to dry naturally before applying the next.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eFinish with one coat of Vinylux Weekly Top Coat for added shine and durability.\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 Longwear, Hybrid Gel-Like\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003e\n\u003cstrong\u003eFinish:\u003c\/strong\u003e Opaque Creme\u003c\/li\u003e\n\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":1739509635,"sku":"V-154","price":8.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Vinylux-Tropix-0_5-oz-154-Nail-Lacquer-at-Beyond-Polish_b0df5cc1.jpg?v=1743635220"},{"product_id":"cnd-vinylux-tutti-frutti-0-5-oz-155","title":"CND - Vinylux Tutti Frutti 0.5 oz - #155","description":"\u003cp\u003eCND Vinylux in Tutti Frutti is a radiant pink shimmer that catches the light with playful warmth. Delicate shimmer particles shift across the nail, creating a flirty, luminous finish that feels equally at home poolside or at dinner. The advanced formula strengthens over time, delivering up to seven days of chip-resistant wear without a base coat.\u003c\/p\u003e\u003cp\u003ePart of the innovative Vinylux system, this 0.5 oz polish works with natural light to enhance durability as it wears. The formula dries to a smooth, glossy finish that builds resistance with exposure. Pair with CND Vinylux Weekly Top Coat for extended wear and extra shine.\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 two thin coats of Vinylux polish directly to bare nails.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eFinish with one coat of Vinylux Weekly Top Coat.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eAllow natural light exposure for optimal wear.\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 Longwear\u003c\/li\u003e\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":1739508611,"sku":"V-155","price":8.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Vinylux-Tutti-Frutti-0_5-oz-155-Nail-Lacquer-at-Beyond-Polish_162eb4ca.jpg?v=1763767496"},{"product_id":"cnd-vinylux-wildfire-0-5-oz-158","title":"CND - Vinylux Wildfire 0.5 oz - #158","description":"\u003cp\u003eCND Vinylux Wildfire is a luminous, true red with a smooth creme finish. Rich and saturated, this iconic shade delivers opaque coverage in two coats and a flawless, high-gloss result that resists chipping for up to seven days.\u003c\/p\u003e\u003cp\u003eVinylux features a hybrid gel-like formula that strengthens over time when paired with Vinylux Weekly Top Coat. No base coat required. The patent-pending technology works with natural light to build durability, while the self-adhering color coat streamlines your application. 0.5 oz.\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 two thin coats of Vinylux polish directly to clean, dry nails.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eSeal with one coat of Vinylux Weekly Top Coat.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eAllow to dry naturally for lasting shine and chip resistance.\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 Longwear, Hybrid Gel-Like\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003e\n\u003cstrong\u003eCoverage:\u003c\/strong\u003e Opaque\u003c\/li\u003e\n\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":1739507203,"sku":"V-158","price":8.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Vinylux-Wildfire-0_5-oz-158-Nail-Lacquer-at-Beyond-Polish.webp?v=1763593882"},{"product_id":"cnd-vinylux-weekly-top-coat-0-5-oz","title":"CND - Vinylux Weekly Long Wear Top Coat 0.5 oz","description":"\u003cp\u003eCND Vinylux Weekly Top Coat delivers a high-gloss finish that strengthens over time, sealing your polish for up to seven days of chip-resistant wear. This professional-grade top coat is powered by natural light technology, creating a durable layer that actually improves with exposure to daylight. Formulated exclusively for the CND Vinylux system, it air-dries without the need for a lamp and requires no base coat when used with CND Vinylux polishes.\u003c\/p\u003e\u003cp\u003eThe fast-drying formula provides a smooth, salon-quality shine that protects your color from daily wear. Its patent-pending technology bonds with the Vinylux color coat to create a resilient finish that lasts through your week.\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 two thin coats of CND Vinylux Weekly Polish.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eFinish with one coat of CND Vinylux Weekly Top Coat.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eAllow to air dry.\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 Longwear\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003e\n\u003cstrong\u003eSize:\u003c\/strong\u003e 0.5 oz\u003c\/li\u003e\n\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":1739489347,"sku":"V-TC","price":8.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Vinylux-Weekly-Long-Wear-Top-Coat-0_5-oz-Top-Base-Coats-at-Beyond-Polish_64e8bf5b.jpg?v=1743635245"},{"product_id":"cnd-vinylux-peacock-plume-0-5-oz-199","title":"CND - Vinylux Peacock Plume 0.5 oz - #199","description":"\u003cp\u003eCND Vinylux in Peacock Plume delivers rich, saturated teal with a smooth creme finish. This showstopping shade from the Dynasty Fantasy Comeback Collection combines oceanic depth with jewel-tone intensity, creating a polished look that commands attention.\u003c\/p\u003e\u003cp\u003eThe breakthrough Vinylux formula applies seamlessly in two coats, no base coat needed. Natural light exposure strengthens chip resistance over time, delivering up to seven days of flawless wear. The color coat contains adhesives that bond directly to the nail, while the gel-like finish provides superior durability and shine.\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 two thin coats of Vinylux Weekly Polish directly to clean, dry nails.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eFinish with one coat of Vinylux Weekly Top Coat for extended wear.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eAllow to dry naturally for a flawless, chip-resistant finish.\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 Longwear, Hybrid Gel-Like\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003e\n\u003cstrong\u003eSize:\u003c\/strong\u003e 0.5 oz\u003c\/li\u003e\n\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":1739491651,"sku":"V-199","price":8.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Vinylux-Peacock-Plume-0_5-oz-199-Nail-Lacquer-at-Beyond-Polish_4542ffad.jpg?v=1743636106"},{"product_id":"cnd-vinylux-rouge-rite-0-5-oz-197","title":"CND - Vinylux Rouge Rite 0.5 oz - #197","description":"\u003cp\u003eCND Vinylux Rouge Rite delivers a rich, opaque red with a glossy creme finish. This iconic shade radiates confidence and polish, perfect for when you want a statement lip-red nail that lasts. The patent-pending Vinylux formula strengthens its resistance to chips over time, working with natural light to maintain a flawless finish for up to seven days.\u003c\/p\u003e\u003cp\u003eAt 0.5 oz, Rouge Rite applies smoothly in two coats and dries naturally without a base coat. The self-adhering color system simplifies your routine while delivering professional-grade, long-lasting results.\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 two thin coats of Vinylux Weekly Polish directly to bare nails.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eFinish with one coat of Vinylux Weekly Top Coat for added durability.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eAllow to dry naturally for a chip-resistant, high-gloss finish.\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 Longwear\u003c\/li\u003e\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":1739493251,"sku":"V-197","price":8.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Vinylux-Rouge-Rite-0_5-oz-197-Nail-Lacquer-at-Beyond-Polish_369cbbb0.jpg?v=1743636119"},{"product_id":"cnd-vinylux-naked-naivete-0-5-oz-195","title":"CND - Vinylux Naked Naivete 0.5 oz - #195","description":"\u003cp\u003eCND Vinylux Naked Naivete is a soft pastel nude with a luminous creme finish. This hybrid gel-like lacquer delivers opaque coverage in two coats, with a milky warmth that flatters every skin tone. The longwear formula strengthens over time, resisting chips for up to seven days without a base coat.\u003c\/p\u003e\u003cp\u003eVinylux uses patent-pending technology that works with natural light to enhance durability as it wears. The adhesive layer is already in the color coat, so you skip the base and get straight to flawless color. Pair with Vinylux Weekly Top Coat for extra shine and extended wear.\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 two thin coats of Vinylux Naked Naivete directly to clean, dry nails.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eFinish with one coat of Vinylux Weekly Top Coat.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eAllow to air dry naturally for a chip-resistant, high-gloss finish.\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 Longwear, Hybrid Gel-Like\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003e\n\u003cstrong\u003eSize:\u003c\/strong\u003e 0.5 oz\u003c\/li\u003e\n\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":1739494915,"sku":"V-195","price":8.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Vinylux-Naked-Naivete-0_5-oz-195-Nail-Lacquer-at-Beyond-Polish_d96e1af1.jpg?v=1743636155"},{"product_id":"cnd-vinylux-decadence-0-5-oz-111","title":"CND - Vinylux Decadence 0.5 oz - #111","description":"\u003cp\u003eCND Vinylux in Decadence delivers a deep, saturated red with a smooth creme finish. This rich shade embodies timeless elegance, making it a versatile choice for special occasions or everyday polish. The hybrid gel-like formula dries naturally to a flawless finish and strengthens its resistance to chips over time, working with natural light to enhance durability.\u003c\/p\u003e\u003cp\u003eVinylux's patented technology eliminates the need for a base coat, as adhesives are built directly into the color. The result is a professional-grade, long-lasting manicure that lasts up to seven days. Available in a 0.5 oz bottle.\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 two thin coats of Vinylux polish directly to clean, dry nails.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eFinish with one coat of CND Vinylux Weekly Top Coat.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eAllow to dry naturally for best results.\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 Longwear, Hybrid Gel-Like\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003e\n\u003cstrong\u003eFinish:\u003c\/strong\u003e Opaque Creme\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003e\n\u003cstrong\u003eSize:\u003c\/strong\u003e 0.5 oz\u003c\/li\u003e\n\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":1739532803,"sku":"V-111","price":8.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Vinylux-Decadence-0_5-oz-111-Nail-Lacquer-at-Beyond-Polish_66b6eea1.jpg?v=1763406851"},{"product_id":"cnd-vinylux-winter-glow-0-5-oz-203","title":"CND - Vinylux Winter Glow 0.5 oz - #203","description":"\u003cp\u003eCND Vinylux in Winter Glow delivers a soft, luminous pink with a smooth creme finish. This hybrid gel-like formula strengthens over time, resisting chips for up to seven days without a base coat. The color deepens beautifully with natural light, creating a polished, long-lasting manicure that feels effortless. Ideal for everyday wear or special occasions, Winter Glow offers buildable coverage and a flawless, glossy shine.\u003c\/p\u003e\u003cp\u003eThis 0.5 oz bottle pairs perfectly with CND Vinylux Weekly Top Coat for extended wear and enhanced durability. The formula dries naturally to a chip-resistant finish, making it a professional-grade choice for those who value both performance and precision.\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 two thin coats directly to clean, dry nails.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eAllow each coat to dry before applying the next.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eFinish with CND Vinylux Weekly Top Coat for added shine and durability.\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 Longwear, Hybrid Gel-Like\u003c\/li\u003e\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":9907169539,"sku":"V-203","price":8.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Vinylux-Winter-Glow-0_5-oz-203-Nail-Lacquer-at-Beyond-Polish.webp?v=1763767428"},{"product_id":"cnd-vinylux-magenta-mischief-05-oz-209","title":"CND - Vinylux Magenta Mischief 0.5 oz - #209","description":"\u003cp\u003eCND Vinylux Magenta Mischief is a vibrant purple-toned magenta with a smooth creme finish. Rich and saturated, this bold shade delivers full coverage and a flawless glossy shine. The hybrid gel-like formula strengthens over time, resisting chips for up to seven days of polished wear.\u003c\/p\u003e\u003cp\u003ePart of the CND Spring Collection 2026, Magenta Mischief brings playful energy to any look. The professional-grade Vinylux system works with natural light to create long-lasting color that dries quickly and wears beautifully. No base coat needed. 0.5 oz.\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 two thin coats of Vinylux Weekly Polish to clean, dry nails.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eFinish with one coat of Vinylux Weekly Top Coat for added durability.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eAllow to dry naturally. Color strengthens and resists chips over time.\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\u003eWear:\u003c\/strong\u003e Longwear, Hybrid Gel-Like\u003c\/li\u003e\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":15458887555,"sku":"v-209","price":8.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Vinylux-Magenta-Mischief-0_5-oz-209-Nail-Lacquer-at-Beyond-Polish_9efae719.jpg?v=1743636524"},{"product_id":"cnd-vinylux-untitled-bronze-05-oz-212","title":"CND - Vinylux Untitled Bronze 0.5 oz - #212","description":"\u003cp\u003eCND Vinylux Untitled Bronze is a burnished bronze shimmer with warm, light-catching depth. The hybrid gel-like formula delivers seven days of chip-resistant wear without a base coat, strengthening its bond over time through exposure to natural light. Rich and luminous, this shade builds effortlessly in two thin coats.\u003c\/p\u003e\u003cp\u003eThe longwear system relies on adhesives built directly into the color coat, creating a flawless finish that resists breakdown. Pair with CND Vinylux Weekly Top Coat for extended durability and professional-grade shine. 0.5 oz.\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;\"\u003ePrep nails and push back cuticles.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eApply two thin coats of Vinylux color.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eFinish with one coat of Vinylux Weekly Top Coat.\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\u003eFinish:\u003c\/strong\u003e Shimmer\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003e\n\u003cstrong\u003eWear:\u003c\/strong\u003e Longwear, up to 7 days\u003c\/li\u003e\n\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":15458893955,"sku":"v-212","price":8.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Vinylux-Untitled-Bronze-0_5-oz-212-Nail-Lacquer-at-Beyond-Polish_312f98ca.jpg?v=1743636537"},{"product_id":"cnd-vinylux-lavender-lace-05-oz-216","title":"CND - Vinylux Lavender Lace 0.5 oz - #216","description":"\u003cp\u003eCND Vinylux in Lavender Lace delivers a soft, romantic pink with a smooth creme finish. This professional-grade lacquer brings delicate color and a glossy shine that strengthens over time. The formula features patent-pending technology that works with natural light to resist chipping for up to seven days.\u003c\/p\u003e\u003cp\u003eVinylux requires no base coat. Adhesives built into the color coat bond directly to the nail, creating a flawless finish that actually becomes more durable with wear. Available in 0.5 oz.\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 two thin coats of Vinylux to clean, dry nails.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eFinish with one coat of Vinylux Weekly Top Coat.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eAllow to dry naturally for a chip-resistant finish.\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 Longwear\u003c\/li\u003e\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":15458902467,"sku":"v-216","price":8.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Vinylux-Lavender-Lace-0_5-oz-216-Nail-Lacquer-at-Beyond-Polish_2582f4fe.jpg?v=1743636549"},{"product_id":"cnd-shellac-vinylux-combo-untitled-bronze","title":"CND - Shellac \u0026 Vinylux Combo - Untitled Bronze","description":"\u003cp\u003eCND Shellac and Vinylux in Untitled Bronze is a warm, bronzed shimmer with rich autumnal depth. Light-catching particles bring subtle dimension to a color that feels both polished and effortless. This duo pairs professional-grade gel with a matching weekly lacquer, offering flexibility for at-home or salon application.\u003c\/p\u003e\u003cp\u003eShellac delivers up to two weeks of chip-resistant shine with professional results. Vinylux requires no UV lamp and provides long-lasting color with a high-gloss finish. Both formulas share the same luminous bronze tone, making it easy to transition between gel and lacquer wear.\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-top:16px;margin-bottom:8px;\"\u003eWhat's Included\u003c\/p\u003e\u003cul style=\"padding-left:20px;\"\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003eCND Shellac in Untitled Bronze\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003eCND Vinylux in Untitled Bronze\u003c\/li\u003e\n\u003c\/ul\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;\"\u003eFor Shellac: apply base coat, cure, apply two thin coats of color curing between each, finish with top coat and cure.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eFor Vinylux: apply two thin coats followed by Vinylux top coat, no lamp needed.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eAllow polish to dry fully before contact with water.\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, Professional, Longwear\u003c\/li\u003e\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":23498462147,"sku":"CNDSV-212-Untitled Bronze","price":23.62,"currency_code":"USD","in_stock":false}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Shellac-Vinylux-Combo-Untitled-Bronze-Gel-Lacquer-Polish-at-Beyond-Polish.jpg?v=1714806628"},{"product_id":"cnd-shellac-vinylux-combo-magenta-mischief","title":"CND - Shellac \u0026 Vinylux Combo - Magenta Mischief","description":"\u003cp\u003eThis CND duo brings together Shellac gel polish and Vinylux lacquer in Magenta Mischief, a vibrant purple-magenta with a smooth creme finish. Shellac delivers up to two weeks of flawless, high-shine wear with professional gel durability. Vinylux offers the same rich color in a traditional lacquer formula that dries naturally, no lamp required.\u003c\/p\u003e\u003cp\u003ePerfect for alternating between salon-level gel manicures and quick at-home touch-ups. Both formulas are vegan and engineered for lasting color.\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-top:16px;margin-bottom:8px;\"\u003eWhat's Included\u003c\/p\u003e\u003cul style=\"padding-left:20px;\"\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003eCND Shellac Gel Polish in Magenta Mischief\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003eCND Vinylux Lacquer in Magenta Mischief\u003c\/li\u003e\n\u003c\/ul\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;\"\u003eFor Shellac: apply base coat, cure, then apply color in thin layers, curing between coats.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eFinish with Shellac top coat and cure for lasting shine.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eFor Vinylux: apply two coats of color followed by Vinylux top coat, no lamp needed.\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, Professional, Longwear\u003c\/li\u003e\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":23498462531,"sku":"CNDSV-209-Magenta Mischief","price":23.62,"currency_code":"USD","in_stock":false}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Shellac-Vinylux-Combo-Magenta-Mischief-Gel-Lacquer-Polish-at-Beyond-Polish_3e029155.jpg?v=1743636908"},{"product_id":"cnd-shellac-vinylux-combo-winter-glow","title":"CND - Shellac \u0026 Vinylux Combo - Winter Glow","description":"\u003cp\u003eCND brings together the best of gel and lacquer in this Winter Glow duo. This soft, milky pink creme delivers a luminous, opaque finish that flatters every skin tone. The professional-grade Shellac gel polish offers up to two weeks of chip-resistant wear with a high-gloss shine, while the matching Vinylux lacquer provides the same beautiful color for traditional weekly wear without the need for a UV lamp.\u003c\/p\u003e\u003cp\u003ePerfect for creating a polished, understated look that works from desk to dinner. The velvety creme formula applies smoothly and builds to full coverage in two coats. Whether you choose the longwear gel system or the classic lacquer, Winter Glow delivers that effortless, put-together finish CND is known for.\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-top:16px;margin-bottom:8px;\"\u003eWhat's Included\u003c\/p\u003e\u003cul style=\"padding-left:20px;\"\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003eCND Shellac Gel Polish in Winter Glow\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003eCND Vinylux Lacquer in Winter Glow\u003c\/li\u003e\n\u003c\/ul\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;\"\u003ePrep nails with CND base coat or base gel.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eApply two thin coats, curing Shellac under UV or LED lamp.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eSeal with CND top coat or top gel.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eFor Vinylux, apply two coats and finish with Vinylux top coat.\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, Professional, Longwear\u003c\/li\u003e\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":23498463747,"sku":"CNDSV-203-Winter Glow","price":23.83,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Shellac-Vinylux-Combo-Winter-Glow-Gel-Lacquer-Polish-at-Beyond-Polish_5b67e056.jpg?v=1743636932"},{"product_id":"cnd-shellac-vinylux-combo-peacock-plume","title":"CND - Shellac \u0026 Vinylux Combo - Peacock Plume","description":"\u003cp\u003eCND delivers professional-grade polish in both gel and lacquer formulas with this Peacock Plume duo. The shade is a deep, saturated teal blue with a smooth creme finish. Rich and jewel-toned, it brings bold color with a refined, glossy shine.\u003c\/p\u003e\u003cp\u003eShellac offers up to 14 days of chip-resistant wear with a high-gloss finish that cures under LED or UV light. Vinylux provides a matching lacquer formula for quick application without the need for a lamp. Both formulas are designed for professional results, whether you want longwear gel or traditional polish.\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-top:16px;margin-bottom:8px;\"\u003eWhat's Included\u003c\/p\u003e\u003cul style=\"padding-left:20px;\"\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003ePeacock Plume Shellac Gel Polish\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003ePeacock Plume Vinylux Lacquer\u003c\/li\u003e\n\u003c\/ul\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;\"\u003ePrep nails with CND base coat, apply one thin coat of color.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eApply a second coat for full coverage and depth.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eFor Shellac, cure under LED or UV lamp between coats.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eSeal with CND top coat and cure or air dry as directed.\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, Professional, Longwear\u003c\/li\u003e\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":23498464131,"sku":"CNDSV-199-Peacock Plume","price":23.83,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Shellac-Vinylux-Combo-Peacock-Plume-Gel-Lacquer-Polish-at-Beyond-Polish_82a2fbd7.jpg?v=1743636944"},{"product_id":"cnd-shellac-vinylux-combo-wildfire","title":"CND - Shellac \u0026 Vinylux Combo - Wildfire","description":"\u003cp\u003eCND's Wildfire delivers rich, saturated red with a smooth creme finish in two professional formulas. This duo pairs Shellac gel polish for up to two weeks of chip-resistant wear with matching Vinylux lacquer for traditional application without a lamp. Both formulas offer buildable, opaque color that applies evenly in two coats.\u003c\/p\u003e\u003cp\u003eThe Shellac formula cures under LED or UV light for a flawless, long-lasting finish. Vinylux provides a weekly wear option with a self-adhering color coat and matching top coat system. Whether you prefer gel or lacquer, Wildfire brings timeless red to your manicure routine.\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-top:16px;margin-bottom:8px;\"\u003eWhat's Included\u003c\/p\u003e\u003cul style=\"padding-left:20px;\"\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003eCND Shellac Gel Polish in Wildfire\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003eCND Vinylux Lacquer in Wildfire\u003c\/li\u003e\n\u003c\/ul\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;\"\u003eFor Shellac: apply base coat, cure, apply two coats of color curing between each, finish with top coat and cure.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eFor Vinylux: apply two coats of color followed by Vinylux top coat, no base coat needed.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eAllow Vinylux to dry naturally, no lamp required.\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, Longwear, Professional\u003c\/li\u003e\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":23498464323,"sku":"CNDSV-158-Wildfire","price":23.62,"currency_code":"USD","in_stock":false}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Shellac-Vinylux-Combo-Wildfire-Gel-Lacquer-Polish-at-Beyond-Polish_9ff9a195.jpg?v=1763766837"},{"product_id":"cnd-shellac-vinylux-combo-tutti-frutti","title":"CND - Shellac \u0026 Vinylux Combo - Tutti Frutti","description":"\u003cp\u003eCND Shellac and Vinylux in Tutti Frutti. A playful pink shimmer that delivers light-catching dimension and a polished finish. This duo pairs Shellac's professional gel formula with a matching Vinylux lacquer, giving you the flexibility to choose between two-week gel wear or a traditional weekly manicure. Tutti Frutti offers rich color with a luminous shimmer that shifts in every light.\u003c\/p\u003e\u003cp\u003eThe Shellac formula cures under UV or LED for a chip-resistant, high-gloss finish that lasts up to 14 days. The Vinylux lacquer applies like traditional polish and dries naturally, no lamp required. Both formulas deliver the same saturated pink shimmer for seamless wear.\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-top:16px;margin-bottom:8px;\"\u003eWhat's Included\u003c\/p\u003e\u003cul style=\"padding-left:20px;\"\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003eCND Shellac Tutti Frutti\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003eCND Vinylux Tutti Frutti\u003c\/li\u003e\n\u003c\/ul\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;\"\u003ePrep nails with CND base coat for gel or lacquer.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eApply two thin coats of Tutti Frutti, curing gel between coats.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eSeal with CND top coat and cure or air dry.\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, Professional, Longwear\u003c\/li\u003e\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":23498465603,"sku":"CNDSV-155-Tutti Fruiti","price":24.07,"currency_code":"USD","in_stock":false}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Shellac-Vinylux-Combo-Tutti-Frutti-Gel-Lacquer-Polish-at-Beyond-Polish_6eacff31.jpg?v=1743636968"},{"product_id":"cnd-shellac-vinylux-combo-tropix","title":"CND - Shellac \u0026 Vinylux Combo - Tropix","description":"\u003cp\u003eThis duo brings together the vibrant, warm coral of Tropix in both CND Shellac gel and Vinylux lacquer. The opaque creme finish delivers a saturated, glossy color that captures the energy of summer. Shellac offers professional-grade wear with up to two weeks of chip-resistant shine, while Vinylux provides a classic lacquer option for weekly wear without UV curing.\u003c\/p\u003e\u003cp\u003ePerfect for clients who want the flexibility to switch between gel and traditional polish, this combo ensures color consistency across both formulas. Each product is vegan and formulated for long-lasting, flawless results.\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-top:16px;margin-bottom:8px;\"\u003eWhat's Included\u003c\/p\u003e\u003cul style=\"padding-left:20px;\"\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003eCND Shellac in Tropix\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003eCND Vinylux in Tropix\u003c\/li\u003e\n\u003c\/ul\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;\"\u003eFor Shellac: apply base coat, cure, then apply two thin color coats, curing between each.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eFinish with top coat and cure for long-lasting wear.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eFor Vinylux: apply two coats of color followed by Vinylux top coat, no UV lamp needed.\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, Professional, Longwear\u003c\/li\u003e\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":23498466627,"sku":"CNDSV-154-Tropix","price":23.83,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Shellac-Vinylux-Combo-Tropix-Gel-Lacquer-Polish-at-Beyond-Polish_eac07b49.jpg?v=1743636979"},{"product_id":"cnd-shellac-vinylux-combo-tinted-love","title":"CND - Shellac \u0026 Vinylux Combo - Tinted Love","description":"\u003cp\u003eCND Shellac and Vinylux in Tinted Love delivers a rich, warm red with a smooth creme finish. This professional duo gives you the choice of a gel manicure that lasts up to two weeks or a traditional lacquer that applies and removes like polish. The opaque formula builds to full coverage in two coats, with a high-gloss shine that stays vibrant through wear.\u003c\/p\u003e\u003cp\u003eThe Shellac formula cures under LED or UV light for a chip-resistant, mirror-like finish. The Vinylux lacquer features a self-adhering base and long-wear top coat built into the color for a salon-quality manicure without the lamp. Both formulas are vegan and designed for professional use.\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-top:16px;margin-bottom:8px;\"\u003eWhat's Included\u003c\/p\u003e\u003cul style=\"padding-left:20px;\"\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003eTinted Love Shellac Gel Polish\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:4px;\"\u003eTinted Love Vinylux Lacquer\u003c\/li\u003e\n\u003c\/ul\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;\"\u003eFor Shellac: Apply base coat, cure, then apply two coats of color, curing between each.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eFinish with Shellac top coat and cure for a high-gloss, long-lasting finish.\u003c\/li\u003e\n\u003cli style=\"font-size:12px;line-height:1.7;margin-bottom:6px;\"\u003eFor Vinylux: Apply two coats of color followed by Vinylux top coat. No base coat or lamp needed.\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, Professional, Longwear\u003c\/li\u003e\u003c\/ul\u003e","brand":"CND","offers":[{"title":"Default Title","offer_id":23498468547,"sku":"CNDSV-153-Tinted Love","price":23.83,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0870\/2574\/files\/CND-Shellac-Vinylux-Combo-Tinted-Love-Gel-Lacquer-Polish-at-Beyond-Polish_7ec66627.jpg?v=1743636991"}],"url":"https:\/\/www.beyondpolish.com\/collections\/cnd-nail-polish.oembed?page=16","provider":"Beyond Polish","version":"1.0","type":"link"}