/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 127:0 Unexpected "<"

**/
<style>
.product-block.has-divider:has(.custom-liquid-right > .product-block.variant-url) {
    padding: 0;
}
.stone-select {
    display: grid;
    gap: 0.5rem;
    grid-template-columns: repeat(4, minmax(0, 80px));
    grid-auto-rows: minmax(60px, auto);
    padding: 0.5rem;
}

.stone-select.grid-compact {
    grid-template-columns: repeat(4, minmax(0, 80px));
    grid-auto-rows: minmax(50px, auto);
    gap: 0.25rem;
}

/* Grid item */
.stone-select li {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* Swatch button */
.stone-select li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.5rem;
    border: 2px solid transparent;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    cursor: pointer;
    background-color: #fff;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.09);
    transition: all 0.2s ease-in-out;

}

.stone-select li a img {
    display: block;
    max-width: 60%;
    height: auto;
    margin-bottom: 0.25rem;
}

.stone-select li a.currently-selected {
    border-color: rgb(48, 48, 48);
    background-color: rgb(255, 255, 255);
    pointer-events: none;
    cursor: default;
}

.stone-select li span {
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.2rem;
    white-space: nowrap; 
    overflow: hidden;
    text-overflow: ellipsis;
}

.stone-select li a:hover {
    border-color: #222;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.09);
}


@media (max-width: 768px) {
    .stone-select,
    .stone-select.grid-compact {
        grid-template-columns: repeat(3, minmax(0, 80px));
        grid-auto-rows: minmax(40px, auto);
    }
}

/* Metal options */
.metal-color {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0 2rem;
    padding: 0;
}

.metal-option {
    display: block;
    overflow: hidden;
}

.metal-option a {
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #222;
    text-align: center;
    transition: all 0.2s ease;
}
.metal-color li {
    outline: 1px solid rgb(49, 49, 49);
    transition: all 0.2s ease;
    background-color: #fff;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.06);
}
.metal-color li:hover {
    outline: 2px solid rgb(0, 0, 0);
}

.metal-color li.currently-selected {
    outline: 2px solid rgb(0, 0, 0);
}

</style>