@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600&display=swap");.ring-builder-scope *{
    margin: 0;
    padding: 0;
    box-sizing: border-box
}.ring-builder-scope{--lux-black:var(--lux-black);--lux-white:var(--lux-white);--lux-offwhite:#f3f1ec;--lux-dark:#000000;--lux-accent:#b6aa8f;--dark-grey:var(--lux-dark);--light-green:var(--lux-accent);
    font-family: Arial,Helvetica,sans-serif;
    background: var(--lux-white);
    color: var(--lux-dark);
    line-height: 1.5;
    padding: 0px!important
}.ring-builder-scope img{
    display: block;
    max-width: 100%
}.ring-builder-scope .container{
    width: 100%;
    max-width: 1600px;
    margin: 0 auto
}.ring-builder-scope .wizard-container{
    width: 100%;
    background: var(--lux-white);
    border: 2px solid var(--lux-accent);
    border-radius: 10px;
    margin: 20px auto;
    overflow: hidden;
    padding: 5px 0
}.ring-builder-scope .wizard-steps{
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: stretch
}.ring-builder-scope .wizard-step{
    position: relative;
    flex: 1;
    text-align: center;
    background-color: var(--lux-offwhite);
    border: 2px solid var(--lux-accent);
    border-radius: 10px;
    margin: 0 5px;
    padding: 10px 5px;
    transition: background-color 0.3s;
    overflow: hidden
}.ring-builder-scope .wizard-step::before, .ring-builder-scope .wizard-step::after{
    content: "";
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--lux-white);
    border: 2px solid var(--lux-accent);
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 1
}.ring-builder-scope .wizard-step::before{
    left: -10px
}.ring-builder-scope .wizard-step::after{
    right: -10px
}.ring-builder-scope .wizard-step.active{
    background-color: var(--lux-white);
    border-color: var(--lux-black)
}.ring-builder-scope .wizard-step.done{
    background-color: var(--lux-accent);
    color: var(--lux-dark)
}.ring-builder-scope .wizard-content{
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}.ring-builder-scope .step-icon{
    margin: 5px 0
}.ring-builder-scope .step-number{
    display: inline-block;
    background-color: var(--lux-black);
    color: var(--lux-white);
    font-size: .85rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    line-height: 24px;
    text-align: center;
    margin-bottom: 4px;
    font-weight: 600
}.ring-builder-scope .step-label{
    font-size: .9rem;
    font-weight: 600;
    color: var(--lux-dark);
    line-height: 1.2
}.ring-builder-scope .step-label small{
    display: block;
    font-weight: 400;
    font-size: .75rem;
    color: var(--lux-dark)
}.ring-builder-scope .main-content{
    display: flex;
    margin-top: 20px
}.ring-builder-scope .filter-section{
    flex: 0 0 370px;
    border-right: 1px solid var(--lux-accent);
    padding-right: 20px;
    margin-right: 20px
}.ring-builder-scope .filter-block{
    padding: 16px 0;
    border-bottom: 1px solid var(--lux-accent)
}.ring-builder-scope .filter-block:last-child{
    border-bottom: none
}.ring-builder-scope .filter-block h3{
    font-size: 1rem;
    margin-bottom: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between
}.ring-builder-scope .filter-heading{
    cursor: pointer;
    position: relative
}.ring-builder-scope .button-group{
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}.ring-builder-scope .btn{
    flex: 0 0 auto;
    padding: 8px 16px;
    border: 1px solid var(--lux-black);
    background-color: var(--lux-white);
    color: var(--lux-black);
    border-radius: 24px;
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.25s ease,color 0.25s ease
}.ring-builder-scope .btn.active{
    background-color: var(--lux-black);
    color: var(--lux-white)
}.ring-builder-scope .btn:hover{
    background-color: var(--lux-accent)
}.ring-builder-scope .arrow-icon{
    width: 12px;
    height: 12px;
    display: inline-block;
    margin-left: 8px;
    background: url("data:image/svg+xml,%3Csvg fill='%23333' viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 3l6 6-6 6' /%3E%3C/svg%3E") center/contain no-repeat;
    transform: rotate(0deg);
    transition: transform 0.3s ease
}.ring-builder-scope .shapes-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(60px,1fr));
    /* gap:12px; */
    margin-top: 10px;
}.ring-builder-scope .shape-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.25s ease;
    padding: 5px;
    border-radius: 8px
}.ring-builder-scope .shape-item:hover{
    background-color: var(--lux-offwhite)
}.ring-builder-scope .shape-icon{
    width: 60px;
    height: 60px;
    background-color: var(--lux-white);
    border-radius: 50%;
    border: 1px solid var(--lux-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px
}.ring-builder-scope .shape-icon img{
    max-width: 32px;
    max-height: 32px;
}.ring-builder-scope .shape-item span{
    font-size: .85rem;
    color: var(--lux-dark)
}.ring-builder-scope .carat-filter, .ring-builder-scope .price-filter{
    margin-top: 8px
}.ring-builder-scope .range-inputs{
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px
}.ring-builder-scope .range-inputs input[type="text"]{
    width: 45%;
    padding: 6px;
    font-size: .9rem;
    border: 1px solid var(--lux-accent);
    border-radius: 4px
}.ring-builder-scope .filter-tags{
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}.ring-builder-scope .tag-btn{
    background-color: var(--lux-white);
    border: 1px solid var(--lux-black);
    color: var(--lux-black);
    padding: 6px 12px;
    border-radius: 24px;
    font-size: .8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.25s ease,color 0.25s ease
}.ring-builder-scope .tag-btn.active{
    background-color: var(--lux-black);
    color: var(--lux-white)
}.ring-builder-scope .tag-btn:hover{
    background-color: var(--lux-accent)
}.ring-builder-scope .multi-step-scale{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px
}.ring-builder-scope .multi-step-scale button{
    background-color: var(--lux-white);
    border: 1px solid var(--lux-black);
    color: var(--lux-black);
    padding: 6px 12px;
    border-radius: 24px;
    font-size: .8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.25s ease,color 0.25s ease
}.ring-builder-scope .multi-step-scale button:hover{
    background-color: var(--lux-accent)
}.ring-builder-scope .multi-step-scale button.active{
    background-color: var(--lux-black);
    color: var(--lux-white)
}.ring-builder-scope .diamond-list-section{
    flex: 1;
    padding-bottom: 20px
}.ring-builder-scope .diamond-list-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px
}.ring-builder-scope .left-header{
    display: flex;
    align-items: center;
    gap: 10px
}.ring-builder-scope .view-toggle{
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: var(--lux-dark);
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.2s ease
}.ring-builder-scope .view-toggle.active, .ring-builder-scope .view-toggle:hover{
    background-color: var(--lux-offwhite)
}.ring-builder-scope .sort-by{
    display: flex;
    align-items: center
}.ring-builder-scope .sort-by label{
    margin-right: 8px;
    font-size: .9rem
}.ring-builder-scope .sort-by select{
    padding: 6px;
    font-size: 14px;
    border: 1px solid var(--lux-accent);
    border-radius: 4px;
    outline: none
}.ring-builder-scope .diamond-grid{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 24px
}.ring-builder-scope .diamond-card{
    border: 1px solid var(--lux-accent);
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--lux-white);
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 16px var(--lux-black);
    transition: transform 0.22s ease,box-shadow 0.25s ease,border-color 0.2s ease
}.ring-builder-scope .diamond-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 16px 34px var(--lux-black);
    border-color: var(--lux-accent)
}.ring-builder-scope .diamond-media{
    width: 100%;
    height: 190px;
    background: radial-gradient(circle at 30% 20%, var(--lux-offwhite) 0%, var(--lux-offwhite) 55%, var(--lux-offwhite) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative
}.ring-builder-scope .diamond-photo, .ring-builder-scope .diamond-video-iframe{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.2s ease
}.ring-builder-scope .diamond-card.is-placeholder .diamond-photo{
    object-fit: contain;
    width: 72px;
    height: 72px;
    padding: 0;
    margin: 0 auto
}.ring-builder-scope .diamond-video-iframe{
    border: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0
}.ring-builder-scope .diamond-card.is-iframe-hover .diamond-photo{
    opacity: 0
}.ring-builder-scope .diamond-card.is-iframe-hover .diamond-video-iframe{
    opacity: 1
}.ring-builder-scope .diamond-info{
    padding: 16px 18px;
    flex: 1
}.ring-builder-scope .diamond-info h3{
    font-size: .95rem;
    margin-bottom: 8px;
    color: var(--lux-black);
    font-weight: 600;
    letter-spacing: .02em
}.ring-builder-scope .diamond-price{
    font-weight: 700;
    color: var(--lux-black);
    font-size: 1.05rem;
    letter-spacing: .01em
}.ring-builder-scope .diamond-actions{
    display: flex;
    justify-content: space-between;
    padding: 12px;
    background-color: var(--lux-offwhite);
    border-top: 1px solid var(--lux-accent)
}.ring-builder-scope .select-btn{
    background-color: var(--lux-black);
    border: 1px solid var(--lux-black);
    color: var(--lux-white);
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 999px;
    cursor: pointer;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 600;
    transition: transform 0.15s ease,box-shadow 0.2s ease,background-color 0.2s ease,color 0.2s ease
}.ring-builder-scope .select-btn:hover{
    background-color: transparent;
    color: var(--lux-black);
    transform: translateY(-2px);
    box-shadow: 0 10px 18px var(--lux-black)
}@media (max-width: 992px) {.ring-builder-scope .main-content{
        flex-direction:column
    }.ring-builder-scope .filter-section{
        flex: 100%;
        border-right: none;
        border-bottom: 1px solid var(--lux-accent);
        margin-bottom: 20px;
        padding-right: 0
    }.ring-builder-scope .diamond-list-section{
        flex: 100%
    }}@media (max-width: 600px) {.ring-builder-scope .site-header h1{
        font-size:1.5rem
    }.ring-builder-scope .diamond-grid{
        grid-template-columns: 1fr 1fr
    }}.ring-builder-scope .wizard2-steps-heading, .ring-builder-scope .wizard2-steps-heading h1, .ring-builder-scope .wizard2-steps-heading h2{
    font-family: inherit;
    margin: 0;
    color: inherit;
    font-size: 16px;
    text-align: center
}.ring-builder-scope .wizard2-steps-heading-full{
    font-family: 'ZapfHumanist601BT-Roman';
    color: inherit;
    text-align: center;
    font-size: 18px;
    text-transform: capitalize;
    background-color: var(--lux-offwhite);
    padding: 10px 10px 10px
}.ring-builder-scope .wizard2-steps{
    font-family: 'Avenir Medium';
    color: var(--dark-grey);
    ;margin: 20px 0 0 0;
    padding: 0;
    position: relative;
    clear: both;
    display: table;
    width: 100%;
    height: 80px;
    margin: 0 auto;
    border: 1px solid var(--lux-offwhite);
    border-collapse: separate;
    table-layout: fixed;
    line-height: 1.3;
    position: relative;
    background-color: var(--lux-offwhite)
}.ring-builder-scope .wizard2-steps a{
    color: inherit
}.ring-builder-scope .wizard2-steps a:hover{
    color: var(--light-green)
}.ring-builder-scope .wizard2-steps .step{
    position: relative;
    width: 33.3%;
    display: table-cell;
    vertical-align: top
}.ring-builder-scope .wizard2-steps .node{
    position: relative;
    display: block;
    width: auto;
    height: 80px;
    margin-right: 16px;
    background: var(--lux-white);
    text-decoration: none
}.ring-builder-scope .wizard2-steps .node:before{
    width: 0;
    height: 0;
    border-top: 40px solid var(--lux-white);
    border-bottom: 40px solid var(--lux-white);
    border-left: 15px solid transparent;
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    transform: translate(-100%,0)
}.ring-builder-scope .wizard2-steps .node:after{
    width: 0;
    height: 0;
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
    border-left: 15px solid var(--lux-white);
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    transform: translate(100%,0)
}.ring-builder-scope .wizard2-steps .node-skin{
    position: relative;
    z-index: 2;
    display: table;
    table-layout: fixed;
    width: 100%;
    height: inherit;
    vertical-align: middle
}.ring-builder-scope .wizard2-steps .node-skin>div{
    display: table-cell;
    vertical-align: middle
}@media (max-width: 1289px) {.ring-builder-scope .wizard2-steps .step-item.step1 .node:before{
        display:none
    }}.ring-builder-scope .wizard2-steps .num{
    font-size: 30px;
    font-family: 'EB Garamond';
    text-align: center;
    width: 70px;
    line-height: 80px
}.ring-builder-scope .wizard2-steps .heading{
    font-size: 14px;
    text-transform: capitalize
}.ring-builder-scope .wizard2-steps .data{
    text-transform: capitalize
}.ring-builder-scope .wizard2-steps .data, .ring-builder-scope .wizard2-steps .action{
    font-family: 'Avenir Book';
    font-size: 12px
}.ring-builder-scope .wizard2-steps .action a{
    margin-right: 10px
}.ring-builder-scope .wizard2-steps .action a:last-child{
    margin-right: 0
}.ring-builder-scope .wizard2-steps .pho{
    width: 70px;
    text-align: center
}.ring-builder-scope .wizard2-steps .pho>img, .ring-builder-scope .wizard2-steps .pho .modal-product-superposition{
    width: 70px;
    height: auto
}.ring-builder-scope .wizard2-steps .step:last-child .pho{
    width: 100px
}.ring-builder-scope .wizard2-steps .node-skin{
    background-color: inherit
}.ring-builder-scope .wizard2-steps .nostyle-heading{
    text-transform: none;
}.ring-builder-scope .wizard2-steps .step:first-child{
    width: 220px
}.ring-builder-scope .wizard2-steps .step:first-child .node{
    padding-left: 0;
    font-size: 14px
}.ring-builder-scope .wizard2-steps .step:last-child .node{
    margin-right: 0
}.ring-builder-scope .wizard2-steps .step:first-child .node:before, .ring-builder-scope .wizard2-steps .step:last-child .node:after{
    display: none
}.ring-builder-scope .wizard2-steps .active-step .node{
    background: var(--lux-offwhite)
}.ring-builder-scope .wizard2-steps .active-step .node:before{
    border-top-color: var(--lux-offwhite);
    border-bottom-color: var(--lux-offwhite)
}.ring-builder-scope .wizard2-steps .active-step .node:after{
    border-left-color: var(--lux-offwhite)
}.ring-builder-scope /invariant-color/ .wizard2-steps .step:not(.invariant-color):hover .node, .ring-builder-scope .wizard2-steps .active-step:not(.invariant-color):hover .node{
    background: var(--lux-offwhite)
}.ring-builder-scope .wizard2-steps .step:not(.invariant-color):hover .node:before{
    border-top-color: var(--lux-offwhite);
    border-bottom-color: var(--lux-offwhite)
}.ring-builder-scope .wizard2-steps .step:not(.invariant-color):hover .node:after{
    border-left-color: var(--lux-offwhite)
}@media (max-width: 1289px) {.ring-builder-scope .wizard2-steps .data .set{
        display:none
    }.ring-builder-scope .wizard2-steps .step:first-child{
        display: none
    }.ring-builder-scope .wizard2-steps .step:nth-child(2) .node:before{
        display: none
    }}.ring-builder-scope .wizard2-steps-heading-full{
    display: none
}@media (max-width: 1289px) {.ring-builder-scope .wizard2-steps-heading{
        display:none!important
    }}@media (max-width: 1023px) {.ring-builder-scope .wizard2-steps-heading-full{
        display:block
    }.ring-builder-scope .wizard2-steps, .ring-builder-scope .wizard2-steps .node{
        height: 72px;
        line-height: 1.2
    }.ring-builder-scope .wizard2-steps, .ring-builder-scope .wizard2-steps .heading{
        font-size: 13px
    }.ring-builder-scope .wizard2-steps-heading-full{
        font-size: 13px;
        text-transform: capitalize
    }.ring-builder-scope .wizard2-steps .num{
        width: 23px;
        line-height: 68px
    }.ring-builder-scope .wizard2-steps .cont{
        padding-right: 5px
    }.ring-builder-scope .wizard2-steps .action{
        font-size: 12px;
        white-space: nowrap
    }.ring-builder-scope .wizard2-steps .action a{
        margin-right: 3px
    }.ring-builder-scope .wizard2-steps .node:after, .ring-builder-scope .wizard2-steps .node:before{
        border-top-width: 36px;
        border-bottom-width: 36px
    }}@media (max-width: 767px) {.ring-builder-scope .wizard2-steps-heading-full, .ring-builder-scope .wizard2-steps .heading{
        font-size:12px
    }.ring-builder-scope .wizard2-steps .node-skin .pho, .ring-builder-scope .wizard2-steps .data, .ring-builder-scope .wizard2-steps .help-tips{
        display: none
    }.ring-builder-scope .wizard2-steps .action{
        padding-top: 3px
    }.ring-builder-scope .wizard2-steps, .ring-builder-scope .wizard2-steps .node{
        height: 64px
    }.ring-builder-scope .wizard2-steps .num{
        font-size: 24px;
        height: 64px;
        line-height: 64px
    }.ring-builder-scope .wizard2-steps .step:last-child{
        width: 27%
    }.ring-builder-scope .wizard2-steps .node-skin{
        width: auto;
        background: transparent
    }.ring-builder-scope .wizard2-steps .step:nth-child(2) .node-skin .heading{
        min-width: 50px
    }.ring-builder-scope /.wizard2-steps .step:nth-child(3) .cont{
        padding-left: 3px
    }.ring-builder-scope / .wizard2-steps .node:after, .ring-builder-scope .wizard2-steps .node:before{
        border-top-width: 32px;
        border-bottom-width: 32px
    }.ring-builder-scope .wizard2-steps-heading-full{
        padding: 12px 10px 10px
    }}@media (max-width: 374px) {.ring-builder-scope .wizard2-steps .action{
        font-size: 11px;
            }}@keyframes pulse {0%,100%{
        transform: scale(1);
        opacity: 1
    }50%{
        transform: scale(1.2);
        opacity: .7
    }}.ring-builder-scope #loading-spinner{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0
}.ring-builder-scope #loading-spinner img{
    width: 80px!important;
    animation: pulse 1.5s ease-in-out infinite!important;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform
}.ring-builder-scope .diamond-grid.list-view{
    display: block
}.ring-builder-scope .diamond-grid.list-view .diamond-card{
    display: flex;
    align-items: center;
    margin-bottom: 15px
}.ring-builder-scope .diamond-grid.list-view .diamond-image{
    width: 120px;
    height: 120px;
    flex: 0 0 120px
}.ring-builder-scope .diamond-grid.list-view .diamond-info{
    flex: 1;
    padding: 0 15px
}.ring-builder-scope .diamond-grid.list-view .diamond-actions{
    width: 160px;
    border-top: none;
    border-left: 1px solid var(--lux-accent)
}.ring-builder-scope .diamond-table{
    width: 100%;
    border-collapse: collapse
}.ring-builder-scope .diamond-table th, .ring-builder-scope .diamond-table td{
    padding: 8px 10px;
    text-align: left
}.ring-builder-scope .diamond-table tbody tr:nth-child(odd){
    background: var(--lux-offwhite)
}.ring-builder-scope .diamond-table th{
    cursor: pointer;
    user-select: none;
    position: relative
}.ring-builder-scope .diamond-table th.sort-asc::after{
    content: "▴";
    position: absolute;
    right: 6px
}.ring-builder-scope .diamond-table th.sort-desc::after{
    content: "▾";
    position: absolute;
    right: 6px
}.ring-builder-scope .diamond-table th::after{
    content: "▾";
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    font-size: 15px;
    color: var(--lux-black)
}.ring-builder-scope .diamond-table th.sort-asc::after{
    color: var(--lux-dark);
    transform: translateY(-50%) rotate(180deg)
}.ring-builder-scope .diamond-table th.sort-desc::after{
    color: var(--lux-dark);
    transform: translateY(-50%) rotate(0deg)
}.ring-builder-scope .view-toggle{
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 2px solid var(--lux-accent);
    background-color: var(--lux-white);
    color: var(--lux-black);
    font-weight: 600;
    font-size: .9rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.25s ease
}.ring-builder-scope .view-toggle:hover{
    border-color: var(--lux-black);
    background-color: var(--lux-offwhite)
}.ring-builder-scope .view-toggle.active{
    border-color: var(--lux-black);
    background-color: var(--lux-black);
    color: var(--lux-white)
}.ring-builder-scope .view-toggle.active .view-icon{
    filter: brightness(0) invert(1)
}.ring-builder-scope .view-icon{
    width: 18px;
    height: 18px;
    display: inline-block;
    object-fit: contain
}.ring-builder-scope .view-toggle svg rect{
    fill: var(--lux-black)
}.ring-builder-scope .view-toggle:hover svg rect{
    fill: var(--lux-black)
}.ring-builder-scope .view-toggle.active svg rect{
    fill: var(--lux-white)
}.ring-builder-scope .view-toggle:focus{
    outline: none;
    box-shadow: none
}.ring-builder-scope .view-toggle:focus-visible{
    outline: 2px solid var(--lux-black);
    outline-offset: 2px
}.ring-builder-scope .shape-item.active{
    background-color: var(--lux-offwhite);
    box-shadow: inset 0 0 0 1px var(--lux-black)
}.ring-builder-scope #carat-slider{
    margin-top: 10px;
    width: 100%
}.ring-builder-scope .filter-block .arrow-icon{
    display: inline-block;
    transition: transform 0.3s ease
}.ring-builder-scope .filter-block.open .arrow-icon{
    transform: rotate(90deg)
}.ring-builder-scope .filter-content{
    display: none
}.ring-builder-scope .filter-block.open .filter-content{
    display: block
}.ring-builder-scope .more-shapes-grid{
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}.ring-builder-scope .shape-btn{
    padding: 6px 10px;
    border: 1px solid var(--lux-accent);
    background: var(--lux-white);
    cursor: pointer;
    border-radius: 4px;
    font-size: 13px;
    transition: all 0.2s ease-in-out
}.ring-builder-scope .shape-btn:hover{
    background: var(--lux-offwhite)
}.ring-builder-scope .step-content{
    display: none;
    padding: 20px 0
}.ring-builder-scope .step-content.active{
    display: block
}.ring-builder-scope .ring-products-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 32px
}.ring-builder-scope .ring-products-wrapper{
    padding: 10px 0 30px
}.ring-builder-scope .ring-products-wrapper .step-heading{
    font-family: "Playfair Display", "Georgia", serif;
    font-weight: 600;
    font-size: 28px;
    letter-spacing: .01em;
    margin: 10px 0 8px
}.ring-builder-scope .ring-card{
    border: 1px solid var(--lux-accent);
    padding: 16px;
    text-align: center;
    background: linear-gradient(180deg,var(--lux-white) 0%,var(--lux-offwhite) 100%);
    border-radius: 12px;
    box-shadow: 0 10px 24px var(--lux-black);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease
}.ring-builder-scope .ring-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 16px 32px var(--lux-black);
    border-color: var(--lux-accent)
}.ring-builder-scope .ring-card img{
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
    background: var(--lux-offwhite)
}.ring-builder-scope .ring-card h4{
    margin: 14px 0 6px;
    font-family: "Playfair Display", "Georgia", serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--lux-black)
}.ring-builder-scope .ring-card p{
    margin: 0 0 14px;
    font-size: 14px;
    color: var(--lux-dark)
}.ring-builder-scope .ring-card .select-setting{
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--lux-black);
    background: var(--lux-black);
    color: var(--lux-white);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
    cursor: pointer;
    transition: all .2s ease
}.ring-builder-scope .ring-card .select-setting:hover{
    background: transparent;
    color: var(--lux-black)
}@media (max-width: 768px) {.ring-builder-scope .ring-products-wrapper .step-heading{
        font-size: 24px
    }.ring-builder-scope .ring-products-grid{
        gap: 16px
    }.ring-builder-scope .ring-card{
        padding: 14px
    }}.ring-builder-scope .ring-select-modal{
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999
}.ring-builder-scope .ring-select-modal.is-open{
    display: block
}.ring-builder-scope .ring-select-backdrop{
    position: absolute;
    inset: 0;
    background: var(--lux-black)
}.ring-builder-scope .ring-select-panel{
    position: relative;
    max-width: 820px;
    width: calc(100% - 32px);
    margin: 6vh auto;
    background: var(--lux-white);
    border-radius: 10px;
    box-shadow: 0 20px 40px var(--lux-black);
    padding: 24px
}.ring-builder-scope .ring-select-close{
    position: absolute;
    top: 14px;
    right: 14px;
    border: 0;
    background: transparent;
    font-size: 24px;
    cursor: pointer
}.ring-builder-scope .ring-select-body{
    display: flex;
    gap: 24px;
    align-items: flex-start
}.ring-builder-scope .ring-select-media{
    flex: 1
}.ring-builder-scope .ring-select-media img{
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid var(--lux-accent)
}.ring-builder-scope .ring-select-details{
    flex: 1
}.ring-builder-scope .ring-select-details h3{
    margin: 0 0 16px;
    font-size: 20px
}.ring-builder-scope .ring-select-field{
    margin-bottom: 16px
}.ring-builder-scope .ring-select-field label{
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
    color: var(--lux-dark)
}.ring-builder-scope .ring-select-field select{
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--lux-accent);
    border-radius: 6px
}.ring-builder-scope .ring-select-confirm{
    width: 100%;
    padding: 12px 16px;
    background: var(--lux-black);
    color: var(--lux-white);
    border: 1px solid var(--lux-black);
    cursor: pointer;
    transition: all .2s ease-in-out
}.ring-builder-scope .ring-select-confirm:hover{
    background: transparent;
    color: var(--lux-black)
}.ring-builder-scope.ring-modal-open{
    overflow: hidden
}@media (max-width: 768px) {.ring-builder-scope .ring-select-panel{
        margin: 4vh auto;
        padding: 18px
    }.ring-builder-scope .ring-select-body{
        flex-direction: column
    }}.ring-builder-scope .diamond-details{
    margin: 2px 0;
    font-size: 13px;
    color: var(--lux-dark);
    letter-spacing: .01em
}.ring-builder-scope .step-check{
    display: inline-block;
    vertical-align: middle;
    width: 35px!important
}.ring-builder-scope .step-3-summary{
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 40px 20px;
    border-top: 1px solid var(--lux-accent);
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif
}.ring-builder-scope .ring-summary-wrapper{
    display: flex;
    gap: 40px;
    max-width: 1200px;
    width: 100%
}.ring-builder-scope .ring-image-preview img{
    max-width: 400px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--lux-black)
}.ring-builder-scope .ring-summary-info{
    flex: 1
}.ring-builder-scope .ring-summary-info h3{
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 1px solid var(--lux-accent);
    padding-bottom: 10px
}.ring-builder-scope .summary-block{
    margin-bottom: 30px
}.ring-builder-scope .summary-block strong{
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600
}.ring-builder-scope .summary-block p{
    margin: 2px 0;
    color: var(--lux-dark);
    font-size: 15px
}.ring-builder-scope .summary-block .price{
    margin-top: 5px;
    font-weight: 700;
    font-size: 16px;
    color: var(--lux-black)
}.ring-builder-scope .summary-total{
    border-top: 1px solid var(--lux-accent);
    padding-top: 20px
}.ring-builder-scope .summary-total p{
    margin: 4px 0;
    font-size: 15px
}.ring-builder-scope .summary-total h3{
    font-size: 20px;
    font-weight: 700;
    margin-top: 10px;
    color: var(--lux-black)
}.ring-builder-scope a.change-step{
    font-size: 13px;
    color: var(--lux-accent);
    text-decoration: underline;
    cursor: pointer
}.ring-builder-scope{--lux-black:var(--lux-black);--lux-white:var(--lux-white);--lux-offwhite:#f3f1ec;--lux-dark:#000000;--lux-accent:#b6aa8f;--dark-grey:var(--lux-dark);--light-green:var(--lux-accent);
    font-family: 'Segoe UI',sans-serif;
    background-color: var(--lux-offwhite);
    padding: 20px;
    color: var(--lux-dark)
}.ring-builder-scope .filter-container{
    max-width: 360px;
    margin: auto;
    background: var(--lux-white);
    border: 1px solid var(--lux-accent);
    border-radius: 6px
}.ring-builder-scope .filter-item{
    border-top: 1px solid var(--lux-accent)
}.ring-builder-scope .filter-header{
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    cursor: pointer;
    position: relative
}.ring-builder-scope .filter-header span{
    font-weight: 500
}.ring-builder-scope .filter-header::after{
    content: "⌵";
    font-size: 12px;
    transition: transform 0.3s ease;
    position: absolute;
    right: 15px
}.ring-builder-scope .filter-item.active .filter-header::after{
    transform: rotate(180deg)
}.ring-builder-scope .filter-content{
    display: none;
    padding: 0 15px 15px;
    transition: all 0.3s ease
}.ring-builder-scope .filter-item.active .filter-content{
    display: block
}.ring-builder-scope .header-icons{
    display: flex;
    gap: 6px;
    align-items: center
}.ring-builder-scope .info-icon{
    width: 18px;
    height: 18px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50%;
    text-align: center;
    line-height: 18px;
    border: 1px solid var(--lux-accent);
    cursor: pointer
}.ring-builder-scope .info-popup{
    display: none;
    position: absolute;
    bottom: 28px;
    right: 10px;
    width: 200px;
    background: var(--lux-white);
    border: 1px solid var(--lux-accent);
    padding: 8px;
    font-size: 13px;
    z-index: 10;
    border-radius: 5px
}.ring-builder-scope .info-popup.show{
    display: block
}.ring-builder-scope .shapes-grid{
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
    margin-top: 10px;
}.ring-builder-scope .shape-item{
    width: 33%;
    text-align: center;
    font-size: 12px;
    cursor: pointer;
    transition: transform 0.15s ease,box-shadow 0.2s ease,background-color 0.2s ease
}.ring-builder-scope .shape-item:hover{
    background-color: var(--lux-offwhite);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px var(--lux-black)
}.ring-builder-scope .shape-item.active{
    background-color: var(--lux-black);
    color: var(--lux-white);
    box-shadow: inset 0 0 0 1px var(--lux-black),0 6px 14px var(--lux-black)
}.ring-builder-scope .shape-item.active span{
    color: var(--lux-white)
}.ring-builder-scope .shape-icon img{
    width: 100%;
    /* max-width: 100%; */
    object-fit: contain;
    height: 100%;
}.ring-builder-scope .slider-container{
    margin-top: 10px
}.ring-builder-scope .range{
    position: relative;
    height: 40px
}.ring-builder-scope .range input[type="range"]{
    position: absolute;
    width: 100%;
    height: 8px;
    margin: 0;
    appearance: none;
    background: transparent;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 5
}.ring-builder-scope .range input[type="range"]::-webkit-slider-runnable-track, .ring-builder-scope .range input[type="range"]::-moz-range-track, .ring-builder-scope .range input[type="range"]::-ms-track{
    background: transparent;
    border: none;
    color: transparent
}.ring-builder-scope .range input[type="range"]::-webkit-slider-thumb{
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--lux-black);
    border: none;
    margin-top: -3px;
    cursor: pointer;
    pointer-events: all;
    position: relative;
    z-index: 4
}.ring-builder-scope .range input[type="range"]::-moz-range-thumb{
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--lux-black);
    border: none;
    cursor: pointer;
    pointer-events: all;
    position: relative;
    top: -3px;
    z-index: 4
}.ring-builder-scope .range input[type="range"]::-webkit-slider-thumb:hover, .ring-builder-scope .range input[type="range"]::-moz-range-thumb:hover{
    box-shadow: 0 0 0 6px var(--lux-black)
}.ring-builder-scope .range-track{
    position: absolute;
    width: 100%;
    height: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--lux-offwhite);
    border-radius: 999px;
    z-index: 1
}.ring-builder-scope .range-fill{
    position: absolute;
    width: 100%;
    height: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--lux-black);
    border-radius: 999px;
    z-index: 2
}.ring-builder-scope .slider-container.stepped .range-track{
    background: var(--lux-offwhite);
}.ring-builder-scope .range-ticks{
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    pointer-events: none;
    transform: translateY(-50%);
    z-index: 4
}.ring-builder-scope .range-ticks span{
    display: none
}.ring-builder-scope .slider-container.stepped .range-ticks{
    background-image:
        linear-gradient(
            to right,
            var(--lux-white) 0 2px,
            transparent 2px
        ),
        repeating-linear-gradient(
            to right,
            transparent 0,
            transparent calc(100% / var(--step-count) - 2px),
            var(--lux-white) calc(100% / var(--step-count) - 2px),
            var(--lux-white) calc(100% / var(--step-count))
        );
}.ring-builder-scope .labels{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    margin-bottom: 10px;
    font-size: 11px;
    letter-spacing: .2px
}.ring-builder-scope .labels span{
    text-align: center;
    font-weight: 400;
    margin-top: 0;
    color: var(--lux-black);
    padding: 0;
    line-height: 1.1;
    white-space: normal
}.ring-builder-scope .labels span.active{
    color: var(--lux-black)!important;
    font-weight: bold!important
}.ring-builder-scope .filter-header{
    position: relative;
    cursor: pointer
}.ring-builder-scope .filter-header::after{
    content: "\25BC";
    position: absolute;
    right: 15px;
    font-size: 12px;
    transition: transform 0.3s ease
}.ring-builder-scope .filter-item.active .filter-header::after{
    transform: rotate(180deg)
}.ring-builder-scope .origin-buttons{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
    margin-top: 10px
}.ring-builder-scope .origin-button{
    padding: 8px 10px;
    background-color: var(--lux-offwhite);
    border: 1px solid var(--lux-accent);
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    transition: background-color 0.2s ease,border-color 0.2s ease,transform 0.15s ease,box-shadow 0.2s ease
}.ring-builder-scope .origin-button:hover{
    background-color: var(--lux-offwhite);
    border-color: var(--lux-black);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px var(--lux-black)
}.ring-builder-scope .origin-button.active{
    background-color: var(--lux-black);
    color: var(--lux-white);
    border-color: var(--lux-black)
}.ring-builder-scope .origin-button.active:hover{
    transform: translateY(-1px);
    box-shadow: 0 6px 14px var(--lux-black)
}.ring-builder-scope .certification-options{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px
}.ring-builder-scope .certification-item{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    position: relative
}.ring-builder-scope .certification-item input[type="checkbox"]{
    width: 16px;
    height: 16px;
    cursor: pointer
}.ring-builder-scope .info-icon{
    width: 16px;
    height: 16px;
    background: var(--lux-accent);
    color: var(--lux-dark);
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative
}.ring-builder-scope .info-icon:hover::after{
    content: attr(data-info);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lux-white);
    color: var(--lux-dark);
    padding: 6px 8px;
    font-size: 12px;
    border: 1px solid var(--lux-accent);
    border-radius: 4px;
    white-space: nowrap;
    z-index: 10;
    box-shadow: 0 2px 5px var(--lux-black)
}.ring-builder-scope .range-values{
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px
}.ring-builder-scope .range-values input[type="number"]{
    width: 80px;
    padding: 6px;
    font-size: 13px;
    border: 1px solid var(--lux-accent);
    border-radius: 4px;
    text-align: right
}.ring-builder-scope .range-values .info-icon{
    width: 16px;
    height: 16px;
    background: var(--lux-accent);
    color: var(--lux-dark);
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    margin-left: auto
}.ring-builder-scope .range-values .info-icon:hover::after{
    content: attr(data-info);
    position: absolute;
    top: -42px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lux-white);
    border: 1px solid var(--lux-accent);
    font-size: 12px;
    padding: 6px 8px;
    border-radius: 4px;
    white-space: nowrap;
    z-index: 10;
    box-shadow: 0 2px 5px var(--lux-black)
}.ring-builder-scope .input-wrapper.currency input[type="number"]{
    padding-left: 28px;
    text-align: right
}.ring-builder-scope .input-wrapper.currency::before{
    content: "$";
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--lux-dark);
    font-size: 14px;
    pointer-events: none
}.ring-builder-scope .input-wrapper input[type="number"]{
    padding-left: 26px;
    width: 110px;
    height: 30px;
    border: 1px solid var(--lux-accent);
    border-radius: 4px;
    font-size: 14px;
    text-align: right
}.ring-builder-scope .input-wrapper .unit{
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--lux-dark);
    font-size: 13px;
    pointer-events: none
}.ring-builder-scope .currency-symbol{
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--lux-dark);
    font-size: 14px;
    pointer-events: none
}.ring-builder-scope .input-wrapper.currency-right input[type="number"]{
    padding-left: 8px;
    padding-right: 26px;
    text-align: right
}.ring-builder-scope .input-wrapper.currency-right .currency-symbol{
    left: auto;
    right: 10px
}.ring-builder-scope .input-wrapper{
    position: relative;
    display: inline-block
}

/* 24Diamonds black/white builder skin */
.ring-builder-section {
    background: #fff;
}

.ring-builder-scope {
    --lux-black: #000;
    --lux-white: #fff;
    --lux-offwhite: #fff;
    --lux-dark: #000;
    --lux-accent: #111;
    --dark-grey: #000;
    --light-green: #000;
    background: #fff !important;
    color: #000;
    font-family: var(--body, "Manrope", Arial, sans-serif);
}

.ring-builder-scope .loose-diamond-hero {
    display: none;
}

.loose-diamond-mode .ring-builder-scope .loose-diamond-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: end;
    margin-bottom: 28px;
    padding: 32px 0 24px;
    border-bottom: 1px solid #d8d8d8;
}

.loose-diamond-mode .ring-builder-scope .loose-diamond-hero h1 {
    margin: 8px 0 10px;
    font-family: var(--heading, "Cormorant Garamond", serif);
    font-size: clamp(36px, 4vw, 64px);
    line-height: 0.95;
    font-weight: 600;
}

.loose-diamond-mode .ring-builder-scope .loose-diamond-hero p {
    max-width: 760px;
    margin: 0;
    color: #3f3f3f;
    font-size: 1rem;
    line-height: 1.7;
}

.loose-diamond-mode .ring-builder-scope .wizard2-steps,
.loose-diamond-mode .ring-builder-scope #step-2,
.loose-diamond-mode .ring-builder-scope #step-3,
.loose-diamond-mode .ring-builder-scope #ring-select-modal {
    display: none !important;
}

.loose-diamond-mode .ring-builder-scope .ring-builder-step-wrapper {
    margin-top: 0;
}

.ring-builder-scope .wizard2-steps {
    display: grid;
    grid-template-columns: 220px repeat(3, minmax(0, 1fr));
    height: auto;
    background: #fff;
    border: 1px solid #000;
    border-left: 0;
    border-right: 0;
}

.ring-builder-scope .wizard2-steps .step {
    display: block;
    width: auto;
    border-right: 1px solid #000;
}

.ring-builder-scope .wizard2-steps .step:first-child {
    width: auto;
}

.ring-builder-scope .wizard2-steps .node,
.ring-builder-scope .wizard2-steps .active-step .node,
.ring-builder-scope .wizard2-steps .step-complete .node {
    height: 88px;
    margin: 0;
    background: #fff;
}

.ring-builder-scope .wizard2-steps .node:before,
.ring-builder-scope .wizard2-steps .node:after {
    display: none;
}

.ring-builder-scope .wizard2-steps .active-step .node {
    background: #000;
    color: #fff;
}

.ring-builder-scope .wizard2-steps .active-step img,
.ring-builder-scope .wizard2-steps .step-complete img {
    filter: brightness(0) invert(1);
}

.ring-builder-scope .wizard2-steps .step-complete .node {
    background: #111;
    color: #fff;
}

.ring-builder-scope .wizard2-steps .num {
    width: 54px;
    line-height: 88px;
    font-family: inherit;
    font-size: 22px;
    font-weight: 800;
}

.ring-builder-scope .wizard2-steps .pho,
.ring-builder-scope .wizard2-steps .step:last-child .pho {
    width: 74px;
}

.ring-builder-scope .wizard2-steps .pho > img,
.ring-builder-scope .wizard2-steps .pho .modal-product-superposition {
    width: 42px;
    margin: 0 auto;
}

.ring-builder-scope .wizard2-steps .nostyle-heading {
    font-family: inherit;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.ring-builder-scope .main-content {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 28px;
    margin-top: 28px;
}

.ring-builder-scope .filter-section {
    position: sticky;
    top: 16px;
    align-self: start;
    flex: unset;
    margin: 0;
    padding: 0;
    border: 1px solid #000;
    background: #fff;
}

.ring-builder-scope .filter-item {
    border-bottom: 1px solid #dedede;
}

.ring-builder-scope .filter-item:last-child {
    border-bottom: 0;
}

.ring-builder-scope .filter-header {
    padding: 16px 18px;
    background: #fff;
    color: #000;
}

.ring-builder-scope .filter-header span {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ring-builder-scope .filter-content {
    padding: 0 18px 18px;
}

.ring-builder-scope .origin-buttons {
    display: grid;
    gap: 8px;
}

.ring-builder-scope .origin-button,
.ring-builder-scope .view-toggle,
.ring-builder-scope .select-btn,
.ring-builder-scope .ring-card .select-setting,
.ring-builder-scope .ring-select-confirm,
.ring-builder-scope .summary-total .button,
.ring-builder-scope .shape-btn {
    border-radius: 0;
}

.ring-builder-scope .origin-button,
.ring-builder-scope .shape-item,
.ring-builder-scope .view-toggle,
.ring-builder-scope .sort-by select,
.ring-builder-scope .range-values input,
.ring-builder-scope .input-wrapper input[type="number"],
.ring-builder-scope .input-wrapper input[type="text"] {
    border: 1px solid #000;
    background: #fff;
    color: #000;
}

.ring-builder-scope .origin-button.active,
.ring-builder-scope .origin-button:hover,
.ring-builder-scope .shape-item.active,
.ring-builder-scope .view-toggle.active,
.ring-builder-scope .view-toggle:hover {
    background: #000;
    color: #fff;
}

.ring-builder-scope .shape-item.active img,
.ring-builder-scope .view-toggle.active svg {
    filter: brightness(0) invert(1);
}

.ring-builder-scope .view-toggle svg rect {
    fill: #000;
}

.ring-builder-scope .shapes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.ring-builder-scope .shape-item {
    min-height: 112px;
    justify-content: center;
    border-radius: 0;
    padding: 12px 8px;
}

.ring-builder-scope .shape-icon {
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.ring-builder-scope .shape-icon img {
    max-width: 52px;
    max-height: 52px;
    object-fit: contain;
}

.ring-builder-scope .shape-item span {
    color: inherit;
    font-size: 12px;
    font-weight: 800;
    margin-top: 8px;
}

.ring-builder-scope .range-track,
.ring-builder-scope .slider-container.stepped .range-track {
    background: #e8e8e8;
}

.ring-builder-scope .range-fill,
.ring-builder-scope .range input[type="range"]::-webkit-slider-thumb,
.ring-builder-scope .range input[type="range"]::-moz-range-thumb {
    background: #000;
}

.ring-builder-scope .labels span.active {
    color: #000;
    font-weight: 900;
}

.ring-builder-scope .diamond-list-header {
    border: 1px solid #000;
    padding: 14px;
    background: #fff;
}

.ring-builder-scope .diamond-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.ring-builder-scope .diamond-card,
.ring-builder-scope .ring-card,
.ring-builder-scope .ring-select-panel,
.ring-builder-scope .step-3-summary {
    border: 1px solid #000;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
}

.ring-builder-scope .diamond-card:hover,
.ring-builder-scope .ring-card:hover {
    border-color: #000;
    box-shadow: none;
    transform: translateY(-2px);
}

.ring-builder-scope .diamond-media,
.ring-builder-scope .diamond-actions,
.ring-builder-scope .ring-card img,
.ring-builder-scope .diamond-table tbody tr:nth-child(odd) {
    background: #fff;
    border-color: #ddd;
}

.ring-builder-scope .select-btn,
.ring-builder-scope .ring-card .select-setting,
.ring-builder-scope .ring-select-confirm,
.ring-builder-scope #add-to-cart {
    background: #000;
    border: 1px solid #000;
    color: #fff;
}

.ring-builder-scope .select-btn:hover,
.ring-builder-scope .ring-card .select-setting:hover,
.ring-builder-scope .ring-select-confirm:hover,
.ring-builder-scope #add-to-cart:hover {
    background: #fff;
    color: #000;
    box-shadow: none;
}

.ring-builder-scope .diamond-table {
    border: 1px solid #000;
    border-collapse: collapse;
}

.ring-builder-scope .diamond-table th,
.ring-builder-scope .diamond-table td {
    border-bottom: 1px solid #ddd;
}

.ring-builder-scope .diamond-table th {
    background: #000;
    color: #fff;
}

.ring-builder-scope .ring-products-wrapper {
    background: #fff;
}

.ring-builder-scope .ring-products-wrapper .step-heading {
    font-family: var(--display, serif);
    color: #000;
}

.ring-builder-scope .ring-summary-info h3,
.ring-builder-scope .summary-total h3 {
    color: #000;
}

.ring-builder-scope .step-3-summary {
    padding: 28px;
}

@media (max-width: 1180px) {
    .ring-builder-scope .main-content {
        grid-template-columns: 1fr;
    }

    .ring-builder-scope .filter-section {
        position: static;
    }

    .ring-builder-scope .diamond-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .ring-builder-scope .wizard2-steps {
        grid-template-columns: 1fr;
    }

    .ring-builder-scope .wizard2-steps .step {
        border-right: 0;
        border-bottom: 1px solid #000;
    }

    .ring-builder-scope .wizard2-steps .node {
        height: 72px;
    }

    .ring-builder-scope .wizard2-steps .num {
        line-height: 72px;
    }

    .ring-builder-scope .diamond-grid {
        grid-template-columns: 1fr;
    }
}

/* Ring model product page flow */
.ring-builder-scope .ring-products-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 18px !important;
    align-items: stretch;
}

.ring-builder-scope .ring-card {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.ring-builder-scope .ring-card:focus-visible {
    outline: 3px solid rgba(0, 0, 0, .16);
    outline-offset: 3px;
}

.ring-builder-scope .ring-card img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.ring-builder-scope .ring-card h4 {
    flex: 1 1 auto;
}

.ring-builder-scope .ring-card .select-setting {
    margin-top: auto;
}

.ring-builder-scope .ring-product-detail[hidden] {
    display: none !important;
}

.ring-builder-scope .ring-detail-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    border: 1px solid #d8d8d8;
    background: #fff;
    color: #111;
    padding: 10px 14px;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.ring-builder-scope .ring-detail-back::before {
    content: "←";
    font-size: 16px;
}

.ring-builder-scope .ring-detail-back:hover {
    border-color: #111;
    background: #f7f7f7;
}

.ring-builder-scope .ring-detail-page {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    gap: 34px;
    border: 1px solid #e0e0e0;
    background: #fff;
    padding: 28px;
}

.ring-builder-scope .ring-detail-media {
    background: #f8f8f8;
    display: grid;
    place-items: center;
    min-height: 420px;
}

.ring-builder-scope .ring-detail-media img {
    width: 100%;
    max-height: 520px;
    object-fit: contain;
}

.ring-builder-scope .ring-detail-info {
    align-self: center;
}

.ring-builder-scope .ring-detail-eyebrow {
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: .09em;
    font-size: 12px;
    font-weight: 900;
    color: #666;
}

.ring-builder-scope .ring-detail-info h2 {
    margin: 0 0 12px;
    font-family: var(--display, "Cormorant Garamond", Georgia, serif);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.02;
}

.ring-builder-scope .ring-detail-price {
    margin: 0 0 18px;
    font-size: 18px;
    font-weight: 900;
}

.ring-builder-scope .ring-detail-description {
    margin: 0 0 20px;
    color: #333;
    line-height: 1.65;
}

.ring-builder-scope .ring-detail-specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 22px;
}

.ring-builder-scope .ring-detail-specs div {
    border: 1px solid #e6e6e6;
    padding: 10px 12px;
}

.ring-builder-scope .ring-detail-specs dt {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #666;
    font-weight: 900;
}

.ring-builder-scope .ring-detail-specs dd {
    margin: 4px 0 0;
    font-weight: 800;
}

.ring-builder-scope .ring-detail-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.ring-builder-scope .ring-detail-field span {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.ring-builder-scope .ring-detail-field select {
    width: 100%;
    min-height: 42px;
    border: 1px solid #d8d8d8;
    background: #fff;
    padding: 9px 10px;
    font: inherit;
}

.ring-builder-scope .ring-detail-field select:focus {
    border-color: #111;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .08);
}

.ring-builder-scope .ring-detail-select,
.ring-builder-scope .summary-add-to-cart {
    width: 100%;
    min-height: 48px;
    border: 1px solid #000;
    background: #000;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 900;
    cursor: pointer;
}

.ring-builder-scope .ring-detail-select:hover,
.ring-builder-scope .summary-add-to-cart:hover {
    background: #fff;
    color: #000;
}

.ring-builder-scope .summary-add-to-cart:disabled {
    opacity: .65;
    cursor: default;
}

.ring-builder-scope .ring-summary-gallery {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    width: min(420px, 100%);
}

.ring-builder-scope .ring-summary-gallery .ring-image-preview {
    border: 1px solid #e1e1e1;
    background: #fafafa;
    padding: 18px;
}

.ring-builder-scope .ring-summary-gallery .ring-image-preview img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    box-shadow: none;
}

.ring-builder-scope .ring-summary-gallery .ring-image-preview--diamond img {
    height: 180px;
}

.ring-builder-scope .summary-total .summary-add-to-cart {
    margin-top: 18px;
}

@media (max-width: 1180px) {
    .ring-builder-scope .ring-products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 900px) {
    .ring-builder-scope .ring-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .ring-builder-scope .ring-detail-page,
    .ring-builder-scope .ring-summary-wrapper {
        grid-template-columns: 1fr;
        display: grid;
    }

    .ring-builder-scope .ring-detail-options,
    .ring-builder-scope .ring-detail-specs {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .ring-builder-scope .ring-products-grid {
        grid-template-columns: 1fr !important;
    }

    .ring-builder-scope .ring-detail-page {
        padding: 18px;
    }
}

/* Refined white/black pass: softer lines, calmer typography */
.ring-builder-scope {
    font-family: var(--body, "Manrope", "Helvetica Neue", Arial, sans-serif);
}

.ring-builder-scope .wizard2-steps {
    border-color: #e2e2e2;
}

.ring-builder-scope .wizard2-steps .step {
    border-right-color: #e2e2e2;
}

.ring-builder-scope .wizard2-steps .node {
    height: 76px;
}

.ring-builder-scope .wizard2-steps .num {
    line-height: 76px;
    font-size: 18px;
}

.ring-builder-scope .wizard2-steps .nostyle-heading {
    font-family: var(--body, "Manrope", "Helvetica Neue", Arial, sans-serif);
    font-size: 13px;
    letter-spacing: 0.01em;
}

.ring-builder-scope .filter-section,
.ring-builder-scope .diamond-list-header,
.ring-builder-scope .diamond-card,
.ring-builder-scope .ring-card,
.ring-builder-scope .ring-select-panel,
.ring-builder-scope .step-3-summary,
.ring-builder-scope .diamond-table {
    border-color: #e1e1e1;
}

.ring-builder-scope .filter-section {
    border-left: 0;
    border-top: 0;
    border-bottom: 0;
    border-right: 1px solid #e1e1e1;
}

.ring-builder-scope .filter-header {
    padding: 14px 0;
}

.ring-builder-scope .filter-content {
    padding: 0 0 18px;
}

.ring-builder-scope .filter-item {
    border-bottom-color: #ececec;
    padding: 0 18px;
}

.ring-builder-scope .filter-header span {
    font-size: 12px;
    letter-spacing: 0.06em;
}

.ring-builder-scope .origin-button,
.ring-builder-scope .shape-item,
.ring-builder-scope .view-toggle,
.ring-builder-scope .sort-by select,
.ring-builder-scope .range-values input,
.ring-builder-scope .input-wrapper input[type="number"],
.ring-builder-scope .input-wrapper input[type="text"] {
    border-color: #d9d9d9;
}

.ring-builder-scope .shape-item {
    min-height: 106px;
}

.ring-builder-scope .shape-icon img {
    max-width: 48px;
    max-height: 48px;
}

.ring-builder-scope .diamond-list-header {
    border-left: 0;
    border-right: 0;
}

.ring-builder-scope .diamond-card,
.ring-builder-scope .ring-card {
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.ring-builder-scope .diamond-card:hover,
.ring-builder-scope .ring-card:hover {
    border-color: #000;
}

.ring-builder-scope #loading-spinner {
    display: grid;
    place-items: center;
    padding: 28px 0;
}

.ring-builder-scope #loading-spinner img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    animation: builderIconPulse 1.15s ease-in-out infinite !important;
}

.ring-builder-scope .diamond-load-more {
    display: block;
    margin: 24px auto 0;
    border: 1px solid #000;
    background: #fff;
    color: #000;
    padding: 12px 24px;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.ring-builder-scope .diamond-load-more:hover {
    background: #000;
    color: #fff;
}

.ring-builder-scope .diamond-load-more:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

@keyframes builderIconPulse {
    0%, 100% {
        opacity: 0.45;
        transform: scale(0.96);
    }
    50% {
        opacity: 1;
        transform: scale(1.04);
    }
}

/* Polished wizard step bar */
.ring-builder-scope .wizard2-steps {
    display: grid !important;
    grid-template-columns: 190px repeat(3, minmax(210px, 1fr)) !important;
    align-items: stretch;
    gap: 0;
    width: 100%;
    min-height: 82px;
    margin: 0 0 24px;
    background: #fff;
    border: 1px solid #dedede !important;
    border-radius: 0;
    overflow: hidden;
}

.ring-builder-scope .wizard2-steps .step {
    width: auto !important;
    min-width: 0;
    border-right: 1px solid #e4e4e4 !important;
    background: #fff;
}

.ring-builder-scope .wizard2-steps .step:last-child {
    border-right: 0 !important;
}

.ring-builder-scope .wizard2-steps .node,
.ring-builder-scope .wizard2-steps .active-step .node,
.ring-builder-scope .wizard2-steps .step-complete .node {
    height: 82px !important;
    margin: 0 !important;
    background: transparent;
}

.ring-builder-scope .wizard2-steps .node-skin {
    display: flex !important;
    align-items: center;
    gap: 14px;
    width: 100%;
    height: 100%;
    padding: 0 20px;
}

.ring-builder-scope .wizard2-steps .node-skin > div {
    display: block !important;
}

.ring-builder-scope .wizard2-steps .num {
    flex: 0 0 32px;
    width: 32px !important;
    height: 32px;
    line-height: 30px !important;
    border: 1px solid #d8d8d8;
    border-radius: 50%;
    text-align: center;
    font-size: 14px !important;
    font-weight: 800;
    color: #111;
    background: #fff;
}

.ring-builder-scope .wizard2-steps .cont {
    flex: 1 1 auto;
    min-width: 0;
    width: auto !important;
}

.ring-builder-scope .wizard2-steps .heading,
.ring-builder-scope .wizard2-steps .nostyle-heading {
    min-width: 0;
    width: auto !important;
}

.ring-builder-scope .wizard2-steps .nostyle-heading {
    margin: 0;
    font-family: var(--body, "Manrope", "Helvetica Neue", Arial, sans-serif) !important;
    font-size: 14px !important;
    line-height: 1.15;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
    white-space: normal;
}

.ring-builder-scope .wizard2-steps .action,
.ring-builder-scope .wizard2-steps .action a {
    margin-top: 4px;
    font-size: 11px;
    line-height: 1.2;
    color: #555;
    text-decoration: none;
}

.ring-builder-scope .wizard2-steps .pho,
.ring-builder-scope .wizard2-steps .step:last-child .pho {
    flex: 0 0 44px;
    display: grid !important;
    place-items: center;
    width: 44px !important;
    height: 44px;
    border: 1px solid #dcdcdc;
    border-radius: 50%;
    background: #f7f7f7;
}

.ring-builder-scope .wizard2-steps .pho > img,
.ring-builder-scope .wizard2-steps .pho .modal-product-superposition {
    width: 30px !important;
    height: 30px !important;
    object-fit: contain;
    margin: 0 !important;
    filter: none !important;
}

.ring-builder-scope .wizard2-steps .wizard2-steps-heading .node-skin {
    justify-content: center;
    padding: 0 18px;
}

.ring-builder-scope .wizard2-steps .wizard2-steps-heading .nostyle-heading {
    font-size: 13px !important;
    text-align: center;
}

.ring-builder-scope .wizard2-steps .active-step,
.ring-builder-scope .wizard2-steps .step-complete {
    border-right-color: #000 !important;
}

.ring-builder-scope .wizard2-steps .active-step .node,
.ring-builder-scope .wizard2-steps .step-complete .node {
    background: #000 !important;
    color: #fff;
}

.ring-builder-scope .wizard2-steps .active-step .num,
.ring-builder-scope .wizard2-steps .step-complete .num {
    color: #000;
    border-color: #fff;
    background: #fff;
}

.ring-builder-scope .wizard2-steps .active-step .nostyle-heading,
.ring-builder-scope .wizard2-steps .step-complete .nostyle-heading,
.ring-builder-scope .wizard2-steps .active-step .action,
.ring-builder-scope .wizard2-steps .step-complete .action,
.ring-builder-scope .wizard2-steps .active-step .action a,
.ring-builder-scope .wizard2-steps .step-complete .action a {
    color: #fff;
}

.ring-builder-scope .wizard2-steps .active-step .pho {
    border-color: #fff;
    background: #fff;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .35);
}

.ring-builder-scope .wizard2-steps .step-complete .pho {
    border-color: #fff;
    background: #000;
}

.ring-builder-scope .wizard2-steps .step-complete .pho > img {
    filter: brightness(0) invert(1) !important;
}

.ring-builder-scope .wizard2-steps .step:not(.active-step):not(.step-complete):hover {
    background: #fafafa;
}

@media (max-width: 1023px) {
    .ring-builder-scope .wizard2-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .ring-builder-scope .wizard2-steps .wizard2-steps-heading {
        display: none !important;
    }

    .ring-builder-scope .wizard2-steps .node-skin {
        padding: 0 14px;
        gap: 10px;
    }

    .ring-builder-scope .wizard2-steps .pho,
    .ring-builder-scope .wizard2-steps .step:last-child .pho {
        width: 40px !important;
        height: 40px;
        flex-basis: 40px;
    }
}

@media (max-width: 767px) {
    .loose-diamond-mode .ring-builder-scope .loose-diamond-hero {
        grid-template-columns: 1fr;
        gap: 16px;
        padding-top: 18px;
    }

    .loose-diamond-mode .ring-builder-scope .loose-diamond-hero h1 {
        font-size: 40px;
    }

    .ring-builder-scope .wizard2-steps {
        grid-template-columns: 1fr !important;
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    .ring-builder-scope .wizard2-steps .step {
        width: 100% !important;
        border-right: 0 !important;
        border-bottom: 1px solid #e4e4e4 !important;
    }

    .ring-builder-scope .wizard2-steps .step:last-child {
        border-bottom: 0 !important;
    }

    .ring-builder-scope .wizard2-steps .node,
    .ring-builder-scope .wizard2-steps .active-step .node,
    .ring-builder-scope .wizard2-steps .step-complete .node {
        height: 70px !important;
    }

    .ring-builder-scope .wizard2-steps .js-step-indicator .node-skin {
        position: relative;
        width: 100% !important;
        padding-right: 60px;
    }

    .ring-builder-scope .wizard2-steps .node-skin .pho {
        display: none !important;
    }

    .ring-builder-scope .wizard2-steps .js-step-indicator .node-skin::after {
        content: "";
        position: absolute;
        right: 14px;
        top: 50%;
        width: 36px;
        height: 36px;
        border: 1px solid #dcdcdc;
        border-radius: 50%;
        background-color: #f7f7f7;
        background-position: center;
        background-repeat: no-repeat;
        background-size: 24px 24px;
        transform: translateY(-50%);
    }

    .ring-builder-scope .wizard2-steps .step1 .node-skin::after {
        background-image: url("step-diamond.svg");
    }

    .ring-builder-scope .wizard2-steps .setting-step .node-skin::after {
        background-image: url("step-setting.svg");
    }

    .ring-builder-scope .wizard2-steps .purchase-step .node-skin::after {
        background-image: url("step-finish.svg");
    }

    .ring-builder-scope .wizard2-steps .active-step .node-skin::after {
        border-color: #fff;
        background-color: #fff;
    }
}

/* Modern filter UX */
.ring-builder-scope .filter-section {
    border: 1px solid #e2e2e2 !important;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.ring-builder-scope .filter-item {
    border-bottom: 1px solid #ececec !important;
    padding: 0 !important;
    background: #fff;
}

.ring-builder-scope .filter-item:last-child {
    border-bottom: 0 !important;
}

.ring-builder-scope .filter-header {
    min-height: 52px;
    padding: 16px 18px !important;
    background: #fff !important;
    transition: background-color .18s ease;
}

.ring-builder-scope .filter-header:hover {
    background: #f8f8f8 !important;
}

.ring-builder-scope .filter-header span {
    font-size: 12px !important;
    font-weight: 900;
    letter-spacing: .075em !important;
}

.ring-builder-scope .filter-header::after {
    right: 18px !important;
    color: #111;
    font-size: 11px !important;
}

.ring-builder-scope .filter-content {
    padding: 0 18px 20px !important;
}

.ring-builder-scope .origin-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    margin-top: 2px !important;
}

.ring-builder-scope .origin-button {
    min-height: 44px;
    padding: 9px 12px !important;
    border: 1px solid #dcdcdc !important;
    border-radius: 7px !important;
    background: #fff !important;
    color: #111 !important;
    font-weight: 700;
    line-height: 1.15;
    overflow-wrap: normal !important;
    word-break: normal;
    hyphens: none;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
    transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease, background-color .16s ease, color .16s ease;
}

.ring-builder-scope .origin-button:hover,
.ring-builder-scope .origin-button:focus-visible {
    border-color: #111 !important;
    background: #f7f7f7 !important;
    color: #111 !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08) !important;
    outline: none;
}

.ring-builder-scope .origin-button.active {
    border-color: #111 !important;
    background: #111 !important;
    color: #fff !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12) !important;
}

.ring-builder-scope .shapes-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
}

.ring-builder-scope .shape-item {
    position: relative;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    box-sizing: border-box;
    min-height: 118px !important;
    padding: 14px 10px 12px !important;
    border: 1px solid #dedede !important;
    border-radius: 8px !important;
    background: #fff !important;
    color: #111 !important;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.ring-builder-scope .shape-item::after {
    content: "";
    position: absolute;
    inset: 6px;
    border: 1px solid transparent;
    border-radius: 6px;
    pointer-events: none;
    transition: border-color .18s ease;
}

.ring-builder-scope .shape-item:hover,
.ring-builder-scope .shape-item:focus-visible {
    border-color: #111 !important;
    background: #fafafa !important;
    color: #111 !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.09) !important;
    outline: none;
}

.ring-builder-scope .shape-item:hover::after {
    border-color: #ececec;
}

.ring-builder-scope .shape-item.active {
    border-color: #111 !important;
    background: #111 !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.15) !important;
}

.ring-builder-scope .shape-item.active::after {
    border-color: rgba(255, 255, 255, .28);
}

.ring-builder-scope .shape-icon {
    display: grid;
    place-items: center;
    width: 62px !important;
    height: 62px !important;
    margin: 0 auto 8px;
    border-radius: 50% !important;
    background: #f6f6f6 !important;
}

.ring-builder-scope .shape-item.active .shape-icon {
    background: #fff !important;
}

.ring-builder-scope .shape-icon img {
    width: auto !important;
    height: auto !important;
    max-width: 48px !important;
    max-height: 48px !important;
    object-fit: contain;
    transition: transform .18s ease;
}

.ring-builder-scope .shape-item:hover .shape-icon img {
    transform: scale(1.04);
}

.ring-builder-scope .shape-item.active img {
    filter: none !important;
}

.ring-builder-scope .shape-item span {
    margin-top: 0 !important;
    color: inherit !important;
    font-size: 12px !important;
    font-weight: 850 !important;
}

.ring-builder-scope #carat-slider,
.ring-builder-scope .carat-slider,
.ring-builder-scope .noUi-target {
    display: none !important;
}

.ring-builder-scope .slider-container {
    margin-top: 4px !important;
}

.ring-builder-scope .range {
    height: 34px !important;
}

.ring-builder-scope .range-track,
.ring-builder-scope .slider-container.stepped .range-track {
    height: 6px !important;
    background: #ebebeb !important;
}

.ring-builder-scope .range-fill {
    height: 6px !important;
    background: #111 !important;
}

.ring-builder-scope .range input[type="range"]::-webkit-slider-thumb {
    width: 18px !important;
    height: 18px !important;
    border: 3px solid #fff !important;
    background: #111 !important;
    box-shadow: 0 0 0 1px #111, 0 6px 14px rgba(0, 0, 0, .18);
}

.ring-builder-scope .range input[type="range"]::-moz-range-thumb {
    width: 18px !important;
    height: 18px !important;
    border: 3px solid #fff !important;
    background: #111 !important;
    box-shadow: 0 0 0 1px #111, 0 6px 14px rgba(0, 0, 0, .18);
}

.ring-builder-scope .range input[type="range"]::-webkit-slider-thumb:hover {
    box-shadow: 0 0 0 5px rgba(0, 0, 0, .10), 0 8px 16px rgba(0, 0, 0, .20) !important;
}

.ring-builder-scope .range input[type="range"]::-moz-range-thumb:hover {
    box-shadow: 0 0 0 5px rgba(0, 0, 0, .10), 0 8px 16px rgba(0, 0, 0, .20) !important;
}

.ring-builder-scope .range-values {
    gap: 10px !important;
    margin-top: 8px !important;
}

.ring-builder-scope .input-wrapper {
    flex: 1 1 0;
}

.ring-builder-scope .range-values input,
.ring-builder-scope .input-wrapper input[type="number"],
.ring-builder-scope .input-wrapper input[type="text"] {
    width: 100% !important;
    min-height: 38px;
    padding: 8px 10px !important;
    border: 1px solid #d9d9d9 !important;
    border-radius: 7px !important;
    background: #fff !important;
    color: #111 !important;
    font-size: 13px !important;
    font-weight: 650;
    text-align: center !important;
    transition: border-color .16s ease, box-shadow .16s ease;
}

.ring-builder-scope .range-values input:focus,
.ring-builder-scope .input-wrapper input[type="number"]:focus,
.ring-builder-scope .input-wrapper input[type="text"]:focus {
    border-color: #111 !important;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .08);
    outline: none;
}

.ring-builder-scope .info-icon,
.ring-builder-scope .range-values .info-icon {
    flex: 0 0 20px;
    width: 20px !important;
    height: 20px !important;
    background: #111 !important;
    color: #fff !important;
    font-size: 11px !important;
}

.ring-builder-scope .labels {
    margin-top: 2px !important;
    margin-bottom: 4px !important;
    gap: 4px;
}

.ring-builder-scope .labels span {
    color: #6b6b6b !important;
    font-size: 10.5px !important;
    font-weight: 700 !important;
}

.ring-builder-scope .labels span.active {
    color: #111 !important;
    font-weight: 900 !important;
}

@media (max-width: 768px) {
    html,
    body {
        overflow-x: hidden;
    }

    .ring-builder-section,
    .ring-builder-scope,
    .ring-builder-scope .main-content,
    .ring-builder-scope .filter-section,
    .ring-builder-scope .diamond-list-section {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        overflow-x: hidden;
    }

    .ring-builder-scope .main-content {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 18px !important;
    }

    .ring-builder-scope .filter-section {
        border-radius: 0;
        box-shadow: none;
    }

    .ring-builder-scope .origin-buttons,
    .ring-builder-scope .shapes-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .ring-builder-scope .shape-item {
        min-width: 0 !important;
        overflow-wrap: anywhere;
    }

    .ring-builder-scope .origin-button {
        min-width: 0 !important;
        overflow-wrap: normal !important;
        word-break: normal;
        hyphens: none;
    }
}

/* Product-detail view inside step 2 */
.ring-builder-scope .ring-product-detail {
    width: 100%;
}

.ring-builder-scope .ring-detail-page {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: start;
    border: 0;
    background: #fff;
    padding: 0;
}

.ring-builder-scope .ring-detail-back {
    margin: 0 0 22px;
    border: 0;
    border-bottom: 1px solid #111;
    background: transparent;
    padding: 0 0 6px;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: 12px;
}

.ring-builder-scope .ring-detail-back:hover {
    background: transparent;
    color: #666;
}

.ring-builder-scope .ring-detail-gallery {
    min-width: 0;
}

.ring-builder-scope .ring-detail-hero {
    display: grid;
    place-items: center;
    min-height: clamp(430px, 48vw, 640px);
    border: 1px solid #e5e5e5;
    background: #f6f7f8;
    overflow: hidden;
}

.ring-builder-scope .ring-detail-hero img {
    width: min(86%, 680px);
    height: min(560px, 72vw);
    object-fit: contain;
    mix-blend-mode: multiply;
}

.ring-builder-scope .ring-detail-note {
    margin: 12px 0 16px;
    color: #666;
    font-size: 12px;
    text-align: center;
}

.ring-builder-scope .ring-detail-thumbs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 92px));
    gap: 10px;
    justify-content: center;
}

.ring-builder-scope .ring-detail-thumb {
    display: grid;
    place-items: center;
    aspect-ratio: 1;
    border: 1px solid #dedede;
    background: #fff;
    padding: 8px;
    cursor: pointer;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.ring-builder-scope .ring-detail-thumb:hover,
.ring-builder-scope .ring-detail-thumb.is-active {
    border-color: #111;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
}

.ring-builder-scope .ring-detail-thumb:hover {
    transform: translateY(-1px);
}

.ring-builder-scope .ring-detail-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ring-builder-scope .ring-detail-panel {
    position: sticky;
    top: 18px;
    min-width: 0;
    border-top: 1px solid #111;
    padding-top: 24px;
}

.ring-builder-scope .ring-detail-eyebrow {
    margin: 0 0 10px;
    color: #6c6c6c;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ring-builder-scope .ring-detail-panel h2 {
    margin: 0;
    font-family: var(--display, "Cormorant Garamond", Georgia, serif);
    font-size: clamp(34px, 4.5vw, 58px);
    font-weight: 500;
    line-height: .98;
    letter-spacing: 0;
    text-transform: none;
}

.ring-builder-scope .ring-detail-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 14px 0 18px;
    color: #111;
    font-size: 12px;
}

.ring-builder-scope .ring-detail-rating span {
    color: #111;
    letter-spacing: .16em;
}

.ring-builder-scope .ring-detail-rating strong {
    color: #555;
    font-weight: 750;
}

.ring-builder-scope .ring-detail-description {
    max-width: 62ch;
    margin: 0 0 24px;
    color: #333;
    font-size: 15px;
    line-height: 1.75;
}

.ring-builder-scope .ring-detail-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 0 0 22px;
}

.ring-builder-scope .ring-detail-choice-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
}

.ring-builder-scope .ring-detail-choice-heading span {
    color: #666;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ring-builder-scope .ring-detail-choice-heading strong {
    color: #111;
    font-size: 13px;
    font-weight: 850;
}

.ring-builder-scope .ring-detail-choices {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ring-builder-scope .ring-detail-choice {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    border: 1px solid #d7d7d7;
    background: #fff;
    padding: 9px 13px;
    color: #111;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.ring-builder-scope .ring-detail-choice:hover,
.ring-builder-scope .ring-detail-choice.is-selected {
    border-color: #111;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

.ring-builder-scope .ring-detail-choice:hover {
    transform: translateY(-1px);
}

.ring-builder-scope .ring-detail-choice-dot {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    border: 1px solid #bdbdbd;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8f8f8, #cfd4d8);
}

.ring-builder-scope .ring-detail-choice[data-value*="gelb"] .ring-detail-choice-dot,
.ring-builder-scope .ring-detail-choice[data-value*="yellow"] .ring-detail-choice-dot {
    background: linear-gradient(135deg, #fff6c8, #d6a937);
}

.ring-builder-scope .ring-detail-choice[data-value*="rose"] .ring-detail-choice-dot {
    background: linear-gradient(135deg, #ffe0d6, #c98f7a);
}

.ring-builder-scope .ring-detail-choice[data-value*="platin"] .ring-detail-choice-dot,
.ring-builder-scope .ring-detail-choice[data-value*="pt"] .ring-detail-choice-dot {
    background: linear-gradient(135deg, #ffffff, #aeb6bd);
}

.ring-builder-scope .ring-detail-price-box {
    border-top: 1px solid #e1e1e1;
    border-bottom: 1px solid #e1e1e1;
    padding: 16px 0;
    margin: 8px 0 18px;
}

.ring-builder-scope .ring-detail-price-box > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding: 9px 0;
}

.ring-builder-scope .ring-detail-price-box span,
.ring-builder-scope .ring-detail-price-box small {
    color: #666;
    font-size: 13px;
}

.ring-builder-scope .ring-detail-price-box strong {
    color: #111;
    font-size: 16px;
    font-weight: 900;
}

.ring-builder-scope .ring-detail-price-box small {
    display: block;
    margin: -2px 0 5px;
}

.ring-builder-scope .ring-detail-price-box .ring-detail-grand-total {
    margin-top: 8px;
    border-top: 1px solid #111;
    padding-top: 15px;
}

.ring-builder-scope .ring-detail-price-box .ring-detail-grand-total span,
.ring-builder-scope .ring-detail-price-box .ring-detail-grand-total strong {
    color: #111;
    font-size: 19px;
}

.ring-builder-scope .ring-detail-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(150px, .55fr);
    gap: 10px;
    margin-bottom: 16px;
}

.ring-builder-scope .ring-detail-select,
.ring-builder-scope .ring-detail-appointment {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border: 1px solid #111;
    padding: 0 18px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .07em;
    font: inherit;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
}

.ring-builder-scope .ring-detail-select {
    background: #111;
    color: #fff;
}

.ring-builder-scope .ring-detail-appointment {
    background: #fff;
    color: #111;
}

.ring-builder-scope .ring-detail-select:hover {
    background: #fff;
    color: #111;
}

.ring-builder-scope .ring-detail-appointment:hover {
    background: #111;
    color: #fff;
}

.ring-builder-scope .ring-detail-meta-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 0 0 22px;
}

.ring-builder-scope .ring-detail-meta-row span {
    border: 1px solid #e2e2e2;
    background: #fafafa;
    padding: 10px 8px;
    color: #333;
    font-size: 11px;
    font-weight: 850;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.ring-builder-scope .ring-detail-info-block {
    border-top: 1px solid #e5e5e5;
    padding: 18px 0 0;
    margin-top: 18px;
}

.ring-builder-scope .ring-detail-info-block h3 {
    margin: 0 0 12px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.ring-builder-scope .ring-detail-info-block p {
    margin: 0;
    color: #444;
    font-size: 14px;
    line-height: 1.65;
}

.ring-builder-scope .ring-detail-specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    border-top: 1px solid #ededed;
    border-left: 1px solid #ededed;
}

.ring-builder-scope .ring-detail-specs div {
    border: 0;
    border-right: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
    padding: 12px;
}

.ring-builder-scope .ring-detail-specs dt {
    color: #737373;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.ring-builder-scope .ring-detail-specs dd {
    margin: 5px 0 0;
    color: #111;
    font-size: 13px;
    font-weight: 850;
}

@media (max-width: 1050px) {
    .ring-builder-scope .ring-detail-page {
        grid-template-columns: 1fr;
    }

    .ring-builder-scope .ring-detail-panel {
        position: static;
    }
}

@media (max-width: 640px) {
    .ring-builder-scope .ring-product-detail {
        padding: 0 18px;
        box-sizing: border-box;
    }

    .ring-builder-scope .ring-detail-back {
        width: 100%;
        justify-content: flex-start;
    }

    .ring-builder-scope .ring-detail-hero {
        min-height: 330px;
        margin-right: -18px;
        margin-left: -18px;
        border-right: 0;
        border-left: 0;
    }

    .ring-builder-scope .ring-detail-panel h2 {
        font-size: 34px;
    }

    .ring-builder-scope .ring-detail-description {
        overflow-wrap: anywhere;
    }

    .ring-builder-scope .ring-detail-actions,
    .ring-builder-scope .ring-detail-meta-row,
    .ring-builder-scope .ring-detail-specs {
        grid-template-columns: 1fr;
    }
}

/* Builder UI hotfix: centered step badges and readable view-toggle icons */
.ring-builder-scope .wizard2-steps .num {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 28px !important;
    min-width: 28px !important;
    height: 28px !important;
    flex: 0 0 28px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
}

.ring-builder-scope .wizard2-steps .pho,
.ring-builder-scope .wizard2-steps .step:last-child .pho {
    display: grid !important;
    place-items: center !important;
    width: 40px !important;
    height: 40px !important;
    flex: 0 0 40px !important;
}

.ring-builder-scope .wizard2-steps .pho > img,
.ring-builder-scope .wizard2-steps .pho .modal-product-superposition {
    display: block !important;
    width: 28px !important;
    height: 28px !important;
    margin: 0 !important;
    object-fit: contain !important;
}

.ring-builder-scope .view-toggle,
.ring-builder-scope .view-toggle .view-icon,
.ring-builder-scope .view-toggle svg {
    color: currentColor !important;
}

.ring-builder-scope .view-toggle svg rect {
    fill: currentColor !important;
}

.ring-builder-scope .view-toggle:hover,
.ring-builder-scope .view-toggle.active {
    background: #000 !important;
    color: #fff !important;
}

.ring-builder-scope .view-toggle:hover .view-icon,
.ring-builder-scope .view-toggle.active .view-icon {
    filter: none !important;
}

/* Builder stepper refinement */
.ring-builder-scope .wizard2-steps .step-item .node,
.ring-builder-scope .wizard2-steps .step-item.active-step .node,
.ring-builder-scope .wizard2-steps .step-item.step-complete .node {
    height: 82px !important;
}

.ring-builder-scope .wizard2-steps .step-item .node-skin {
    display: grid !important;
    grid-template-columns: 38px minmax(0, 1fr) 46px !important;
    align-items: center !important;
    column-gap: 16px !important;
    height: 100% !important;
    padding: 0 18px !important;
}

.ring-builder-scope .wizard2-steps .step-item .node-skin > div {
    min-width: 0 !important;
}

.ring-builder-scope .wizard2-steps .step-item .num {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 34px !important;
    min-width: 34px !important;
    height: 34px !important;
    flex: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid #dedede !important;
    border-radius: 50% !important;
    background: #fff !important;
    color: #111 !important;
    font-family: var(--body, "Manrope", "Helvetica Neue", Arial, sans-serif) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    text-align: center !important;
}

.ring-builder-scope .wizard2-steps .step-item .cont {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    width: auto !important;
    height: 100% !important;
    padding: 0 !important;
}

.ring-builder-scope .wizard2-steps .step-item .nostyle-heading {
    font-family: var(--body, "Manrope", "Helvetica Neue", Arial, sans-serif) !important;
    font-size: 14px !important;
    font-weight: 850 !important;
    line-height: 1.15 !important;
    letter-spacing: 0 !important;
}

.ring-builder-scope .wizard2-steps .step-item .action,
.ring-builder-scope .wizard2-steps .step-item .action a {
    font-family: var(--body, "Manrope", "Helvetica Neue", Arial, sans-serif) !important;
    font-size: 11px !important;
    line-height: 1.2 !important;
}

.ring-builder-scope .wizard2-steps .step-item .pho,
.ring-builder-scope .wizard2-steps .step-item:last-child .pho,
.ring-builder-scope .wizard2-steps .step-item.step:last-child .pho {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    min-width: 44px !important;
    height: 44px !important;
    flex: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid #dedede !important;
    border-radius: 50% !important;
    background: #fafafa !important;
}

.ring-builder-scope .wizard2-steps .step-item .pho > img,
.ring-builder-scope .wizard2-steps .step-item .pho .step-icon,
.ring-builder-scope .wizard2-steps .step-item .pho .modal-product-superposition {
    display: block !important;
    width: 25px !important;
    height: 25px !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: contain !important;
    object-position: center !important;
}

.ring-builder-scope .wizard2-steps .step-item.active-step .num,
.ring-builder-scope .wizard2-steps .step-item.step-complete .num {
    border-color: #fff !important;
    background: #fff !important;
    color: #111 !important;
}

.ring-builder-scope .wizard2-steps .step-item.active-step .pho {
    border-color: #fff !important;
    background: #fff !important;
}

.ring-builder-scope .diamond-extra-specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 8px;
    margin: 9px 0 0;
    text-align: left;
}

.ring-builder-scope .diamond-extra-specs span {
    min-width: 0;
    color: var(--lux-dark);
    font-size: 11.5px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.ring-builder-scope .diamond-extra-specs strong {
    display: block;
    color: var(--lux-black);
    font-size: 10px;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.ring-builder-scope .summary-diamond-extra {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 14px;
    margin: 8px 0;
    font-size: 13px;
}

.ring-builder-scope .summary-diamond-extra span {
    min-width: 0;
}

.ring-builder-scope .summary-diamond-extra b {
    font-weight: 600;
}

@media (max-width: 520px) {
    .ring-builder-scope .diamond-extra-specs,
    .ring-builder-scope .summary-diamond-extra {
        grid-template-columns: 1fr;
    }
}

.ring-builder-scope .wizard2-steps .active-step .pho,
.ring-builder-scope .wizard2-steps .step-complete .pho,
.ring-builder-scope .wizard2-steps .step-item.active-step .pho,
.ring-builder-scope .wizard2-steps .step-item.step-complete .pho {
    border-color: #d8d1c3 !important;
    background: #fff !important;
    box-shadow: 0 0 0 1px rgba(216, 209, 195, .5) !important;
}

.ring-builder-scope .wizard2-steps .active-step .pho > img,
.ring-builder-scope .wizard2-steps .step-complete .pho > img,
.ring-builder-scope .wizard2-steps .step-item.active-step .pho > img,
.ring-builder-scope .wizard2-steps .step-item.step-complete .pho > img,
.ring-builder-scope .wizard2-steps .step-item .pho .step-icon {
    filter: none !important;
    opacity: 1 !important;
    mix-blend-mode: normal !important;
}

/* Premium product tiles */
.ring-builder-scope .diamond-grid {
    gap: 20px;
    align-items: stretch;
}

.ring-builder-scope .diamond-card,
.ring-builder-scope .ring-card {
    position: relative;
    overflow: hidden;
    border: 1px solid #e4ddd0;
    border-radius: 8px;
    background: linear-gradient(180deg, #fff 0%, #fbfaf7 100%);
    box-shadow: 0 16px 36px rgba(17, 17, 17, .08);
    transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.ring-builder-scope .diamond-card::before,
.ring-builder-scope .ring-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, #111 0%, #c8b58a 48%, #111 100%);
    z-index: 2;
}

.ring-builder-scope .diamond-card:hover,
.ring-builder-scope .ring-card:hover {
    border-color: #c8b58a;
    box-shadow: 0 22px 46px rgba(17, 17, 17, .14);
    transform: translateY(-4px);
}

.ring-builder-scope .diamond-media {
    height: 188px;
    border-bottom: 1px solid #ece4d6;
    background:
        linear-gradient(145deg, #f5f2eb 0%, #fff 48%, #e9e3d8 100%);
}

.ring-builder-scope .diamond-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(255,255,255,.42), rgba(255,255,255,0) 44%);
    pointer-events: none;
}

.ring-builder-scope .diamond-photo,
.ring-builder-scope .diamond-video-iframe {
    transition: opacity .2s ease, transform .28s ease;
}

.ring-builder-scope .diamond-card:hover .diamond-photo {
    transform: scale(1.035);
}

.ring-builder-scope .diamond-card.is-placeholder .diamond-photo {
    width: 82px;
    height: 82px;
}

.ring-builder-scope .diamond-media-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: flex-start;
}

.ring-builder-scope .diamond-badge {
    max-width: 100%;
    min-height: 24px;
    padding: 5px 8px;
    border: 1px solid rgba(17, 17, 17, .16);
    border-radius: 6px;
    background: rgba(255, 255, 255, .9);
    color: #111;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .06em;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.ring-builder-scope .diamond-badge--lab {
    background: #111;
    border-color: #111;
    color: #fff;
}

.ring-builder-scope .diamond-info {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 9px;
    padding: 13px 13px 10px;
    text-align: left !important;
}

.ring-builder-scope .diamond-title-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: start;
}

.ring-builder-scope .diamond-title-copy {
    min-width: 0;
}

.ring-builder-scope .diamond-kicker {
    display: block;
    margin-bottom: 3px;
    color: #8b7957;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .08em;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.ring-builder-scope .diamond-info h3 {
    margin: 0;
    color: #111;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

.ring-builder-scope .diamond-price {
    align-self: start;
    margin: 0 !important;
    padding: 6px 8px;
    border: 1px solid #e5dccb;
    border-radius: 7px;
    background: #f7f3eb;
    color: #111;
    font-size: 14.5px;
    line-height: 1.1;
    white-space: nowrap;
}

.ring-builder-scope .diamond-primary-specs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
}

.ring-builder-scope .diamond-stat {
    min-width: 0;
    padding: 7px;
    border: 1px solid #ece5d8;
    border-radius: 7px;
    background: #fff;
}

.ring-builder-scope .diamond-stat-label,
.ring-builder-scope .diamond-extra-specs strong {
    display: block;
    color: #8b7957;
    font-size: 9.2px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.ring-builder-scope .diamond-stat-value {
    display: block;
    margin-top: 3px;
    color: #111;
    font-size: 12.5px;
    font-weight: 800;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.ring-builder-scope .diamond-extra-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 12px;
    margin: 0;
    padding: 10px;
    border: 1px solid #eee7dc;
    border-radius: 7px;
    background: #fdfbf7;
}

.ring-builder-scope .diamond-extra-specs span {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #111;
    font-size: 11.2px;
    line-height: 1.25;
}

.ring-builder-scope .diamond-extra-specs strong {
    margin-bottom: 3px;
}

.ring-builder-scope .diamond-actions {
    padding: 0 13px 13px;
    border-top: 0;
    background: transparent;
}

.ring-builder-scope .select-btn,
.ring-builder-scope .ring-card .select-setting {
    min-height: 39px;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
}

.ring-builder-scope .select-btn::after,
.ring-builder-scope .ring-card .select-setting::after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 9px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: rotate(45deg);
    vertical-align: 1px;
}

.ring-builder-scope .select-btn:hover,
.ring-builder-scope .ring-card .select-setting:hover {
    border-color: #111;
    background: #fff;
    color: #111;
    box-shadow: 0 10px 22px rgba(17, 17, 17, .12);
    transform: translateY(-1px);
}

.ring-builder-scope .ring-products-grid {
    gap: 20px !important;
}

.ring-builder-scope .ring-card {
    padding: 0;
}

.ring-builder-scope .ring-card img {
    border-radius: 0;
    border-bottom: 1px solid #ece4d6;
    background:
        linear-gradient(145deg, #f5f2eb 0%, #fff 48%, #e9e3d8 100%);
}

.ring-builder-scope .ring-card h4,
.ring-builder-scope .ring-card p {
    padding-inline: 14px;
}

.ring-builder-scope .ring-card h4 {
    margin: 14px 0 6px;
    font-family: var(--body, "Manrope", "Helvetica Neue", Arial, sans-serif);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0;
}

.ring-builder-scope .ring-card p {
    margin: 0 0 12px;
    color: #8b7957;
    font-size: 14px;
    font-weight: 800;
}

.ring-builder-scope .ring-card .select-setting {
    width: calc(100% - 28px);
    margin: auto 14px 14px;
}

@media (max-width: 1320px) {
    .ring-builder-scope .diamond-grid,
    .ring-builder-scope .ring-products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 980px) {
    .ring-builder-scope .diamond-grid,
    .ring-builder-scope .ring-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 620px) {
    .ring-builder-scope .diamond-grid,
    .ring-builder-scope .ring-products-grid {
        grid-template-columns: 1fr !important;
    }

    .ring-builder-scope .diamond-media {
        height: 214px;
    }

    .ring-builder-scope .diamond-title-row {
        grid-template-columns: 1fr;
    }

    .ring-builder-scope .diamond-price {
        width: 100%;
        text-align: center;
    }

    .ring-builder-scope .diamond-primary-specs,
    .ring-builder-scope .diamond-extra-specs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Step 3 checkout finish */
.ring-builder-scope .step-3-summary {
    display: block;
    width: 100%;
    padding: 26px 0 42px;
    border-top: 1px solid #e6e0d5;
    font-family: var(--body, "Manrope", "Helvetica Neue", Arial, sans-serif);
}

.ring-builder-scope .summary-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: end;
    margin: 0 0 22px;
    padding: 26px;
    border: 1px solid #e6e0d5;
    border-radius: 8px;
    background:
        linear-gradient(135deg, #fff 0%, #f8f5ef 58%, #fff 100%);
}

.ring-builder-scope .summary-eyebrow,
.ring-builder-scope .summary-info-head span,
.ring-builder-scope .summary-total-label {
    display: block;
    color: #8b7957;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.ring-builder-scope .summary-hero h2 {
    margin: 6px 0 8px;
    color: #111;
    font-family: var(--display, "Cormorant Garamond", Georgia, serif);
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: 0;
}

.ring-builder-scope .summary-hero p {
    max-width: 680px;
    margin: 0;
    color: #2b2b2b;
    font-size: 15px;
    line-height: 1.6;
}

.ring-builder-scope .summary-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.ring-builder-scope .summary-trust-row span,
.ring-builder-scope .summary-assurance span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 7px 10px;
    border: 1px solid #e6e0d5;
    border-radius: 999px;
    background: #fff;
    color: #111;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
}

.ring-builder-scope .summary-trust-row span::before,
.ring-builder-scope .summary-assurance span::before {
    content: "";
    width: 6px;
    height: 6px;
    margin-right: 8px;
    border-radius: 50%;
    background: #8b7957;
}

.ring-builder-scope .ring-summary-wrapper {
    display: grid;
    grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
    gap: 22px;
    width: 100%;
    max-width: none;
}

.ring-builder-scope .ring-summary-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
}

.ring-builder-scope .summary-preview {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 280px;
    padding: 22px;
    overflow: hidden;
    border: 1px solid #e6e0d5;
    border-radius: 8px;
    background:
        radial-gradient(circle at 35% 15%, rgba(255,255,255,.96), rgba(255,255,255,0) 42%),
        linear-gradient(145deg, #f4f0e8 0%, #fff 52%, #e8e0d1 100%);
}

.ring-builder-scope .summary-preview span {
    position: absolute;
    top: 13px;
    left: 13px;
    z-index: 2;
    min-height: 24px;
    padding: 5px 8px;
    border: 1px solid rgba(17, 17, 17, .16);
    border-radius: 6px;
    background: rgba(255, 255, 255, .9);
    color: #111;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .06em;
    line-height: 1.2;
    text-transform: uppercase;
}

.ring-builder-scope .summary-preview img,
.ring-builder-scope .ring-summary-gallery .ring-image-preview img {
    width: 100%;
    max-width: 420px;
    height: 250px;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
}

.ring-builder-scope .summary-preview--diamond {
    min-height: 220px;
}

.ring-builder-scope .summary-preview--diamond img {
    max-width: 320px;
    height: 178px;
}

.ring-builder-scope .ring-summary-info {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
}

.ring-builder-scope .summary-info-head {
    padding: 0 0 4px;
}

.ring-builder-scope .ring-summary-info h3 {
    margin: 4px 0 0;
    border: 0;
    padding: 0;
    color: #111;
    font-family: var(--display, "Cormorant Garamond", Georgia, serif);
    font-size: 31px;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: 0;
}

.ring-builder-scope .summary-block {
    margin: 0;
    padding: 18px;
    border: 1px solid #e6e0d5;
    border-radius: 8px;
    background: #fff;
}

.ring-builder-scope .summary-block-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.ring-builder-scope .summary-block strong {
    margin: 0;
    color: #8b7957;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.ring-builder-scope a.change-step {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 10px;
    border: 1px solid #ded5c5;
    border-radius: 6px;
    color: #111;
    background: #fbfaf7;
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
}

.ring-builder-scope a.change-step:hover {
    border-color: #111;
    background: #111;
    color: #fff;
}

.ring-builder-scope .summary-item-title {
    margin: 0 0 13px;
    color: #111;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.25;
}

.ring-builder-scope .summary-spec-grid,
.ring-builder-scope .summary-diamond-extra {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 0;
}

.ring-builder-scope .summary-spec-grid--diamond {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ring-builder-scope .summary-spec-grid span,
.ring-builder-scope .summary-diamond-extra span {
    min-width: 0;
    padding: 9px 10px;
    border: 1px solid #eee8dc;
    border-radius: 7px;
    background: #fdfbf7;
    color: #111;
    font-size: 13px;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.ring-builder-scope .summary-spec-grid b,
.ring-builder-scope .summary-diamond-extra b {
    display: block;
    margin: 0 0 4px;
    color: #8b7957;
    font-size: 10px;
    font-style: normal;
    font-weight: 900;
    letter-spacing: .06em;
    line-height: 1.2;
    text-transform: uppercase;
}

.ring-builder-scope .summary-spec-grid i,
.ring-builder-scope .summary-diamond-extra i {
    display: block;
    color: #111;
    font-style: normal;
    font-weight: 800;
}

.ring-builder-scope .summary-diamond-extra {
    margin-top: 8px;
}

.ring-builder-scope .summary-block .price {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin: 14px 0 0;
    padding: 7px 10px;
    border: 1px solid #e6e0d5;
    border-radius: 7px;
    background: #f7f3eb;
    color: #111;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.1;
}

.ring-builder-scope .summary-total {
    position: sticky;
    bottom: 18px;
    padding: 20px;
    border: 1px solid #111;
    border-radius: 8px;
    background: #111;
    color: #fff;
    box-shadow: 0 20px 45px rgba(17, 17, 17, .18);
}

.ring-builder-scope .summary-total-label {
    color: #d8c79d;
}

.ring-builder-scope .summary-total h3 {
    margin: 5px 0 6px;
    color: #fff;
    font-family: var(--display, "Cormorant Garamond", Georgia, serif);
    font-size: 42px;
    font-weight: 600;
    line-height: 1.02;
}

.ring-builder-scope .summary-total p {
    margin: 0;
    color: rgba(255, 255, 255, .75);
    font-size: 13px;
    line-height: 1.45;
}

.ring-builder-scope .summary-add-to-cart {
    min-height: 52px;
    margin-top: 18px;
    border: 1px solid #fff;
    border-radius: 7px;
    background: #fff;
    color: #111;
    font-size: 13px;
    letter-spacing: .08em;
    transition: background-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.ring-builder-scope .summary-add-to-cart:hover {
    background: #d8c79d;
    color: #111;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .24);
}

.ring-builder-scope .summary-assurance {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.ring-builder-scope .summary-assurance span {
    border-color: rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.ring-builder-scope .summary-assurance span::before {
    background: #d8c79d;
}

@media (max-width: 1100px) {
    .ring-builder-scope .summary-hero,
    .ring-builder-scope .ring-summary-wrapper {
        grid-template-columns: 1fr;
    }

    .ring-builder-scope .summary-trust-row {
        justify-content: flex-start;
    }

    .ring-builder-scope .ring-summary-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .ring-builder-scope .step-3-summary {
        padding-top: 18px;
    }

    .ring-builder-scope .summary-hero,
    .ring-builder-scope .summary-block,
    .ring-builder-scope .summary-total {
        padding: 16px;
    }

    .ring-builder-scope .ring-summary-gallery,
    .ring-builder-scope .summary-spec-grid,
    .ring-builder-scope .summary-spec-grid--diamond,
    .ring-builder-scope .summary-diamond-extra {
        grid-template-columns: 1fr;
    }

    .ring-builder-scope .summary-preview {
        min-height: 220px;
    }

    .ring-builder-scope .summary-preview img {
        height: 190px;
    }

    .ring-builder-scope .summary-total {
        position: static;
    }

    .ring-builder-scope .summary-total h3 {
        font-size: 34px;
    }
}

/* Responsive hardening for the ring builder. */
.ring-builder-scope {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

.ring-builder-scope .container,
.ring-builder-scope .main-content,
.ring-builder-scope .diamond-list-section,
.ring-builder-scope .ring-products-wrapper,
.ring-builder-scope .step-content,
.ring-builder-scope .ring-select-panel,
.ring-builder-scope .step-3-summary {
    min-width: 0;
}

.ring-builder-scope .container {
    width: min(100% - 32px, 1600px);
}

.ring-builder-scope .main-content {
    display: grid;
    grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.ring-builder-scope .filter-section {
    position: sticky;
    top: 74px;
    max-height: calc(100vh - 96px);
    overflow: auto;
    flex: none;
    width: auto;
    margin: 0;
    padding: 0 18px 0 0;
}

.ring-builder-scope .diamond-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
}

.ring-builder-scope .diamond-list-header {
    gap: 14px;
}

.ring-builder-scope .left-header,
.ring-builder-scope .sort-by {
    min-width: 0;
    flex-wrap: wrap;
}

.ring-builder-scope .diamond-card,
.ring-builder-scope .ring-card,
.ring-builder-scope .summary-block,
.ring-builder-scope .summary-total {
    min-width: 0;
}

.ring-builder-scope .diamond-info h3,
.ring-builder-scope .ring-card h4,
.ring-builder-scope .summary-block p,
.ring-builder-scope .summary-total p {
    overflow-wrap: anywhere;
}

.ring-builder-scope .ring-products-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
}

@media (max-width: 1180px) {
    .ring-builder-scope .container {
        width: min(100% - 28px, 1600px);
    }

    .ring-builder-scope .main-content {
        grid-template-columns: 1fr;
    }

    .ring-builder-scope .filter-section {
        position: static;
        max-height: none;
        border-right: 0;
        border-bottom: 1px solid var(--lux-accent);
        padding: 0 0 18px;
    }

    .ring-builder-scope .filter-container {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .ring-builder-scope .filter-item,
    .ring-builder-scope .filter-block {
        min-width: 0;
    }

    .ring-builder-scope .diamond-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr));
        gap: 16px;
    }
}

@media (max-width: 760px) {
    .ring-builder-scope .container {
        width: calc(100% - 24px);
    }

    .ring-builder-scope .wizard-container {
        margin: 14px auto;
        border-radius: 8px;
    }

    .ring-builder-scope .wizard-steps {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 8px;
    }

    .ring-builder-scope .wizard-step {
        margin: 0;
    }

    .ring-builder-scope .wizard-step::before,
    .ring-builder-scope .wizard-step::after {
        display: none;
    }

    .ring-builder-scope .wizard2-steps {
        display: grid;
        grid-template-columns: 1fr;
        height: auto;
    }

    .ring-builder-scope .wizard2-steps .step,
    .ring-builder-scope .wizard2-steps .step:last-child {
        display: block;
        width: 100%;
    }

    .ring-builder-scope .wizard2-steps .node {
        height: auto;
        min-height: 56px;
        margin: 0;
    }

    .ring-builder-scope .wizard2-steps .node::before,
    .ring-builder-scope .wizard2-steps .node::after {
        display: none;
    }

    .ring-builder-scope .wizard2-steps .num {
        height: 56px;
        line-height: 56px;
    }

    .ring-builder-scope .filter-container,
    .ring-builder-scope .range-inputs,
    .ring-builder-scope .diamond-list-header,
    .ring-builder-scope .ring-select-body {
        grid-template-columns: 1fr;
    }

    .ring-builder-scope .diamond-list-header {
        display: grid;
        align-items: start;
    }

    .ring-builder-scope .sort-by {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .ring-builder-scope .sort-by select {
        width: 100%;
    }

    .ring-builder-scope .diamond-grid,
    .ring-builder-scope .ring-products-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .ring-builder-scope .diamond-media {
        height: 220px;
    }

    .ring-builder-scope .button-group,
    .ring-builder-scope .filter-tags,
    .ring-builder-scope .multi-step-scale {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ring-builder-scope .btn,
    .ring-builder-scope .tag-btn,
    .ring-builder-scope .multi-step-scale button,
    .ring-builder-scope .select-btn,
    .ring-builder-scope .ring-card .select-setting {
        width: 100%;
        min-width: 0;
        white-space: normal;
    }

    .ring-builder-scope .shapes-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ring-builder-scope .ring-select-panel {
        width: calc(100vw - 24px);
        max-height: calc(100vh - 24px);
        overflow: auto;
    }
}

@media (max-width: 420px) {
    .ring-builder-scope .button-group,
    .ring-builder-scope .filter-tags,
    .ring-builder-scope .multi-step-scale,
    .ring-builder-scope .shapes-grid {
        grid-template-columns: 1fr;
    }

    .ring-builder-scope .diamond-media {
        height: 190px;
    }

    .ring-builder-scope .diamond-info,
    .ring-builder-scope .diamond-actions,
    .ring-builder-scope .ring-card {
        padding: 14px;
    }
}

@media (max-width: 760px) {
    .ring-builder-scope .wizard2-steps .pho,
    .ring-builder-scope .wizard2-steps .node-skin .pho,
    .ring-builder-scope .wizard2-steps .node-skin .help-tips {
        display: none !important;
    }

    .ring-builder-scope .wizard2-steps .node-skin {
        display: grid;
        grid-template-columns: 44px minmax(0, 1fr);
        align-items: center;
        width: 100%;
    }

    .ring-builder-scope .wizard2-steps .node-skin > div {
        display: block;
        min-width: 0;
    }

    .ring-builder-scope .wizard2-steps .num {
        width: 44px;
        text-align: center;
    }

    .ring-builder-scope .wizard2-steps .cont {
        padding: 8px 10px;
    }
}

@media (max-width: 760px) {
  .ring-builder-scope .wizard2-steps .node::before,
  .ring-builder-scope .wizard2-steps .node::after {
    display: none !important;
    content: none !important;
  }

  .ring-builder-scope .wizard2-steps .node {
    overflow: hidden;
  }
}

@media (max-width: 760px) {
  .ring-builder-scope .wizard2-steps .node-skin::before,
  .ring-builder-scope .wizard2-steps .node-skin::after {
    display: none !important;
    content: none !important;
  }
}

@media (max-width: 760px) {
  .ring-builder-scope .wizard2-steps .step .node-skin > .pho {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
  }
}

@media (max-width: 760px) {
  .ring-builder-scope .wizard2-steps .step-item.step:last-child .node-skin > .pho,
  .ring-builder-scope .wizard2-steps .step-item .node-skin > .pho {
    display: none !important;
  }
}
