/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 151:0 Unexpected "<"

**/
<style>
.product-block.has-divider:has(.custom-liquid-right > .product-block.variant-url) {
    padding: 0;
}
/* ===== BASE TILE GRID ===== */
.stone-select {
    display: grid;
    gap: 0.35rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: minmax(60px, auto);
    padding: 0.4rem;

    max-height: 320px;
    overflow-y: auto;

    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
}

.stone-select.grid-compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: minmax(52px, auto);
    gap: 0.25rem;
    max-height: 350px;
}

.stone-select li {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: stretch; 
}

.stone-select li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    padding: 0.4rem 0.2rem; 
    border: 1.5px solid transparent;
    text-decoration: none;
    color: inherit;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.stone-select li a img {
    display: block;
    max-width: 55%;
    height: auto;
    flex-shrink: 0;
}

.stone-select li span {
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.stone-select.grid-compact li span {
    font-size: 1.2rem;
    line-height: 1.15;
}

.stone-select li a.currently-selected {
    border-color: rgb(48, 48, 48);
    background-color: #fff;
    pointer-events: none;
    cursor: default;
}

.stone-select li a:hover {
    border-color: #555;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.11);
}

@media (max-width: 768px) {
    .stone-select,
    .stone-select.grid-compact {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.2rem;
        max-height: 260px;
    }
}

/* Metal options */
.metal-color {
    display: flex;
    gap: 1rem;
    margin: 1rem 0 2rem;
    padding: 0;
}

.metal-option {
    display: block;
    overflow: hidden;
}

.metal-option a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #222;
    gap: 4px;
    text-align: center;
    transition: all 0.2s ease;
}
.metal-color li {
    
    background-color: #fff;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.06);
    width: 12rem;
}
.metal-color li:hover {
    outline: 1px solid rgb(0, 0, 0);
}

.metal-color li.currently-selected {
    outline: 1px solid rgb(0, 0, 0);
}
.metal-link span {
    font-size: 1.2rem;
    font-weight: 500;
}
.sw {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, .12);
    display: block;
}
</style>