@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600&display=swap');

.body {
font-family: "Barlow", sans-serif;
}
.hj-ring-page,
.hj-ring-page * {
    box-sizing: border-box;
}

.hj-ring-page {
    width: 100%;
    background: #fff;
    color: #222;
    font-family: "Barlow", sans-serif;
}

/* HERO */
.hj-ring-hero {
    display: grid;
    grid-template-columns: 35.56% 64.44%;
    width: 100%;
    background: #f7f7f7;
    overflow: hidden;
    align-items: stretch;
}

.hj-ring-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: clamp(24px, 4.44vw, 64px);
    padding-right: clamp(20px, 3vw, 44px);
    background: #f7f7f7;
}

.hj-ring-hero-content h1 {
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 26.63px;
    line-height: 40px;
    letter-spacing: 0;
    vertical-align: middle;
    margin: 0 0 18px;
    color: #111;
}

.hj-ring-hero-content p {
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0;
    vertical-align: middle;
    margin: 0;
    max-width: 420px;
    color: black;
}

.hj-ring-hero-image {
    width: 100%;
    height: auto;
    aspect-ratio: 928 / 354;
    overflow: hidden;
    background: #f7f7f7;
}

.hj-ring-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    display: block;
}
/* BREADCRUMB */
.hj-ring-breadcrumb {
    width: 253.58px;
    max-width: calc(100% - 88px);
    min-height: 24px;
    margin: 21px 0 12px 44px;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;

    font-family: "Barlow", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 13px;
    color: black;
    opacity: 1;
}

.hj-ring-breadcrumb a {
    height: 13px;
    line-height: 13px;
    color: black;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.hj-ring-breadcrumb a:first-child {
    width: 32.41px;
}

.hj-ring-breadcrumb span {
    height: 13px;
    line-height: 13px;
    color: black;
    display: inline-flex;
    align-items: center;
}
/* HERO */
.hj-ring-hero {
    display: grid;
    grid-template-columns: 35.56% 64.44%;
    grid-template-areas: "content image";
    width: 100%;
    background: #f7f7f7;
    overflow: hidden;
    align-items: stretch;
}

.hj-ring-hero-content {
    grid-area: content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: clamp(24px, 4.44vw, 64px);
    padding-right: clamp(20px, 3vw, 44px);
    background: #f7f7f7;
}

.hj-ring-hero-content h1 {
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    font-size: 26.63px;
    line-height: 40px;
    letter-spacing: 0;
    margin: 0 0 18px;
    color: #111;
}

.hj-ring-hero-content p {
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0;
    margin: 0;
    max-width: 420px;
    color: black;
}

.hj-ring-hero-image {
    grid-area: image;
    width: 100%;
    height: auto;
    aspect-ratio: 928 / 354;
    overflow: hidden;
    background: #f7f7f7;
}

.hj-ring-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

/* BREADCRUMB */
.hj-ring-breadcrumb {
    width: auto;
    max-width: calc(100% - 88px);
    min-height: 24px;
    margin: 21px 44px 12px;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;

    font-family: "Barlow", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: black;
}

.hj-ring-breadcrumb a,
.hj-ring-breadcrumb span {
    color: black;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    line-height: 18px;
}

/* TABLET VIEW */
@media (max-width: 991px) {
    .hj-ring-hero {
        grid-template-columns: 1fr;
        grid-template-areas:
            "image"
            "content";
    }

    .hj-ring-hero-image {
        width: 100%;
        aspect-ratio: 16 / 7;
    }

    .hj-ring-hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .hj-ring-hero-content {
        padding: 38px 30px 34px;
        text-align: center;
        align-items: center;
    }

    .hj-ring-hero-content h1 {
        font-size: 24px;
        line-height: 34px;
        margin-bottom: 14px;
    }

    .hj-ring-hero-content p {
        font-size: 13px;
        line-height: 22px;
        max-width: 620px;
    }

    .hj-ring-breadcrumb {
        max-width: calc(100% - 50px);
        margin: 18px 25px 12px;
        font-size: 13px;
        line-height: 18px;
    }

    .hj-ring-breadcrumb a,
    .hj-ring-breadcrumb span {
        line-height: 18px;
    }
}

/* MOBILE VIEW */
@media (max-width: 575px) {
    .hj-ring-hero {
        grid-template-columns: 1fr;
        grid-template-areas:
            "image"
            "content";
    }

    .hj-ring-hero-image {
        width: 100%;
        aspect-ratio: 1 / 0.72;
    }

    .hj-ring-hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .hj-ring-hero-content {
        padding: 32px 18px 30px;
        text-align: center;
        align-items: center;
    }

    .hj-ring-hero-content h1 {
        font-size: 21px;
        line-height: 30px;
        margin-bottom: 12px;
    }

    .hj-ring-hero-content p {
        font-size: 12px;
        line-height: 20px;
        max-width: 100%;
    }

    .hj-ring-breadcrumb {
        max-width: calc(100% - 24px);
        margin: 14px 12px 10px;
        gap: 6px;
        font-size: 12px;
        line-height: 17px;
    }

    .hj-ring-breadcrumb a,
    .hj-ring-breadcrumb span {
        line-height: 17px;
    }
}

/* VERY SMALL MOBILE */
@media (max-width: 380px) {
    .hj-ring-hero-image {
        aspect-ratio: 1 / 0.78;
    }

    .hj-ring-hero-content {
        padding: 28px 14px 26px;
    }

    .hj-ring-hero-content h1 {
        font-size: 19px;
        line-height: 28px;
    }

    .hj-ring-hero-content p {
        font-size: 11px;
        line-height: 19px;
    }

    .hj-ring-breadcrumb {
        margin: 12px 10px 8px;
        max-width: calc(100% - 20px);
        font-size: 11px;
    }
}
/* MAIN SECTION */
.hj-filter-section {
    width: calc(100% - 80px);
    margin: 0 40px 30px;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

/* TOP BAR */
.hj-filter-top {
    width: 100%;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* LEFT SIDE */
.hj-filter-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* FILTER LABEL */
.hj-filter-label {
    border: none;
    background: transparent;
    color: #111;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    padding: 0;
}

.hj-filter-btn,
.hj-sort-toggle {
    height: 32px;
    min-height: 32px;
    min-width: 150px;
    padding: 0 16px;
    border: 1px solid #d7d7d7;
    border-radius: 25px;
    background: #fff;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 400;
    box-sizing: border-box;
}

.hj-sort-toggle {
    width: 100%;
    position: relative;
    z-index: 3;
}

/* active shapes button */
.hj-filter-btn.active {
    background: #2e2d2d;
    color: #ffffff;
    border-color: #2e2d2d;
}

/* default arrow down */
.hj-chevron {
    width: 9px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.25s ease;
    margin-top: -4px;
}

/* clicked arrow up */
.hj-filter-btn.active .hj-chevron {
    transform: rotate(-135deg);
    margin-top: 4px;
}
/* SHAPES PANEL */
.hj-shapes-panel {
    display: none;
    width: 100%;
    background: #fafafa;
    border-radius: 8px;
    margin-bottom: 12px;
    padding: 18px 22px;
}

/* SHOW SHAPES PANEL */
.hj-shapes-panel.show {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

/* SHAPES LIST */
.hj-shapes-list {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

/* SHAPE ITEM */
.hj-shape-item {
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: center;
    padding: 8px;
    color: #111;
    border-radius: 6px;
}

.hj-shape-item img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    display: block;
    margin: 0 auto 6px;
}

.hj-shape-item span {
    display: block;
    font-size: 11px;
    color: #111;
}

/* SELECTED SHAPE INNER BLACK */
.hj-shape-item.active {
    background: #ffffff;
}

.hj-shape-item.active span {
    color: black;
}

.hj-clear-btn {
    border: none;
    background: transparent;
    color: #555;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;

    display: inline-flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
}

.hj-clear-x {
    font-size: 24px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}
/* LARGE SCREEN */
@media (min-width: 1400px) {
    .hj-filter-section {
        width: calc(100% - 90px);
        margin-left: 45px;
        margin-right: 45px;
    }

    .hj-filter-label,
    .hj-sort-box,
    .hj-sort-box label,
    .hj-sort-box select {
        font-size: 14px;
    }

    .hj-filter-btn,
    .hj-sort-toggle {
        height: 36px;
        min-height: 36px;
        min-width: 165px;
        padding: 0 16px;
        font-size: 14px;
    }

    .hj-sort-dropdown {
        top: 18px;
        padding: 20px 16px 10px;
    }

    .hj-shape-btn.active {
        height: 68px;
        min-width: 240px;
        font-size: 26px;
    }

    .hj-shape-item img {
        width: 38px;
        height: 38px;
    }

    .hj-shape-item span {
        font-size: 12px;
    }
}

/* MEDIUM SCREEN */
@media (max-width: 1199px) {
    .hj-filter-section {
        width: calc(100% - 50px);
        margin-left: 25px;
        margin-right: 25px;
    }

    .hj-filter-btn,
    .hj-sort-toggle {
        height: 32px;
        min-height: 32px;
        min-width: 140px;
        padding: 0 14px;
        font-size: 12px;
    }

    .hj-sort-dropdown {
        top: 16px;
        padding: 18px 14px 10px;
    }

    .hj-shape-btn.active {
        height: 54px;
        min-width: 190px;
        font-size: 20px;
        padding: 0 22px;
    }

    .hj-shape-btn.active .hj-chevron {
        width: 14px;
        height: 14px;
        border-top-width: 3px;
        border-left-width: 3px;
    }

    .hj-filter-label,
    .hj-sort-box,
    .hj-sort-box label,
    .hj-sort-box select {
        font-size: 12px;
    }

    .hj-shapes-list {
        gap: 18px;
    }
}

/* TABLET */
@media (max-width: 991px) {
    .hj-filter-top {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 0;
    }

    .hj-sort-box {
        width: 100%;
        justify-content: flex-end;
        margin-left: 0;
    }

    .hj-shapes-panel.show {
        flex-direction: column;
    }

    .hj-clear-btn {
        align-self: flex-end;
    }
}

/* MOBILE */
@media (max-width: 575px) {
    .hj-filter-section {
        width: calc(100% - 24px);
        margin-left: 12px;
        margin-right: 12px;
    }

    .hj-filter-left {
        width: 100%;
        gap: 8px;
    }

    .hj-filter-label {
        width: 100%;
        font-size: 11px;
    }

    .hj-filter-btn,
    .hj-sort-toggle {
        width: 100%;
        min-width: 100%;
        height: 34px;
        min-height: 34px;
        padding: 0 16px;
        font-size: 11px;
    }

    .hj-sort-dropdown {
        top: 17px;
        padding: 19px 16px 10px;
    }

    .hj-shape-btn.active {
        width: 100%;
        min-width: 100%;
        height: 54px;
        font-size: 20px;
        border-radius: 35px;
    }

    .hj-sort-box {
        justify-content: space-between;
        font-size: 11px;
    }

    .hj-sort-box label,
    .hj-sort-box select {
        font-size: 11px;
    }

    .hj-shapes-panel {
        padding: 14px 12px;
    }

    .hj-shapes-list {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 14px 8px;
    }

    .hj-shape-item img {
        width: 28px;
        height: 28px;
    }

    .hj-shape-item span {
        font-size: 10px;
    }
}
/* MATERIAL PANEL */
.hj-material-panel {
    display: none;
    width: 100%;
    background: #fafafa;
    border-radius: 8px;
    margin-bottom: 12px;
    padding: 18px 22px;
}

/* SHOW MATERIAL PANEL */
.hj-material-panel.show {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

/* MATERIAL LIST */
.hj-material-list {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

/* MATERIAL ITEM */
.hj-material-item {
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: center;
    padding: 6px;
    color: #111;
}

.hj-material-item > span:last-child {
    display: block;
    margin-top: 7px;
    font-size: 11px;
    color: #111;
}

/* CIRCLE */
.hj-material-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 10px;
    font-weight: 600;
    color: #777;
}

/* MATERIAL COLORS */
.hj-material-circle.silver {
    border: 5px solid #d8d8d8;
}

.hj-material-circle.rose {
    border: 5px solid #f3c1b4;
}

.hj-material-circle.gold {
    border: 5px solid #f3dc75;
}

.hj-material-circle.platinum {
    border: 5px solid #cfcfcf;
}

/* ACTIVE MATERIAL SHOULD STAY WHITE */
.hj-material-item.active {
    background: #ffffff;
    border-radius: 6px;
}

/* CLEAR BUTTON */
.hj-clear-material-btn {
    border: none;
    background: transparent;
    color: #555;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
}
/* MOBILE */
@media (max-width: 575px) {
    .hj-material-panel {
        padding: 14px 12px;
    }

    .hj-material-list {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px 8px;
    }

    .hj-material-circle {
        width: 32px;
        height: 32px;
        font-size: 9px;
    }

    .hj-material-item > span:last-child {
        font-size: 10px;
    }

    .hj-material-panel.show {
        flex-direction: column;
    }

    .hj-clear-material-btn {
        align-self: flex-end;
    }
}
/* PRICE PANEL */
.hj-price-panel {
    display: none;
    width: 100%;
    background: #fafafa;
    border-radius: 8px;
    margin-bottom: 12px;
    padding: 18px 22px;
}

/* SHOW PRICE PANEL */
.hj-price-panel.show {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

/* PRICE RANGE AREA */
.hj-price-range-box {
    width: 520px;
    max-width: 100%;
}

/* RANGE WRAP */
.hj-range-wrap {
    width: 100%;
    position: relative;
    padding-top: 22px;
}

/* TOOLTIP */
.hj-price-tooltip {
    position: absolute;
    top: 0;
    left: 25%;
    transform: translateX(-50%);
    background: #555;
    color: #fff;
    font-size: 10px;
    padding: 4px 12px;
    border-radius: 14px;
    white-space: nowrap;
}

/* SLIDER */
#priceRange {
    width: 100%;
    height: 6px;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 10px;
    background: linear-gradient(to right, #777 25%, #e4e4e4 25%);
    outline: none;
    cursor: pointer;
}

/* CHROME THUMB */
#priceRange::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    background: #555;
    border: 3px solid #ffffff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 0 1px #555;
}

/* FIREFOX THUMB */
#priceRange::-moz-range-thumb {
    width: 22px;
    height: 22px;
    background: #555;
    border: 3px solid #ffffff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 0 1px #555;
}

/* PRICE INPUTS */
.hj-price-inputs {
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.hj-price-inputs input {
    width: 100px;
    height: 36px;
    border: 1px solid #cfcfcf;
    border-radius: 18px;
    background: #fff;
    color: #aaa;
    font-size: 11px;
    text-align: center;
    outline: none;
}

.hj-price-inputs .hj-price-max.is-active {
    background: #fff;
    border-color: #111;
    color: #111;
}

.hj-price-inputs span {
    color: #999;
    font-size: 13px;
}

/* CLEAR PRICE */
.hj-clear-price-btn {
    border: none;
    background: transparent;
    color: #555;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
}
/* MOBILE */
@media (max-width: 575px) {
    .hj-price-panel {
        padding: 14px 12px;
    }

    .hj-price-panel.show {
        flex-direction: column;
    }

    .hj-price-range-box {
        width: 100%;
    }

    .hj-clear-price-btn {
        align-self: flex-end;
    }

    .hj-price-inputs input {
        width: 90px;
        font-size: 10px;
    }
}
/* PRODUCT GRID */
.hj-product-grid {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    padding: 0 40px 45px;
    box-sizing: border-box;
}

/* PRODUCT CARD */
.hj-product-card {
    width: 100%;
    background: #fafafa;
    border-radius: 24px;
    padding: 16px;
    overflow: hidden;
    box-sizing: border-box;
}

/* IMAGE BOX */
.hj-product-image-box {
    width: 100%;
    height: 420px;
    background: #ffffff;
    border-radius: 18px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
    cursor: pointer;
}

/* BADGE */
.hj-product-badge {
    position: absolute;
    top: 24px;
    left: 20px;
    min-width: 112px;
    height: 22px;
    padding: 0 12px;
    background: #fdeff4;
    color: #555555;
    font-size: 11px;
    font-weight: 400;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* PRODUCT IMAGE */
.hj-product-image-box img {
    width: 88%;
    max-width: 360px;
    height: auto;
    object-fit: contain;
    display: block;
}

/* PRODUCT INFO */
.hj-product-info {
    text-align: center;
    padding: 26px 8px 10px;
}

.hj-product-info h3 {
    margin: 0 0 6px;
    color: #333333;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.3;
}

.hj-product-info p {
    margin: 0 0 18px;
    color: #777777;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
}

/* METAL OPTIONS */
/* METAL OPTIONS */
.hj-metal-options {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 14px;
}

.hj-metal {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #ffffff;
    border: 4px solid #d8d8d8;
    color: #777777;
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    line-height: 1;
    box-sizing: border-box;
    transition: none;
}

.hj-metal.white {
    border-color: #eeeeee;
}

.hj-metal.rose {
    border-color: #f5c8ba;;
}

.hj-metal.yellow {
    border-color: #F0da8d;
}
/* ACTIVE METAL - BLACK OUTER BORDER */
.hj-metal.active {
    box-shadow: 0 0 0 2px #111111;
    border-color: #d8d8d8;
}

/* ACTIVE ROSE - KEEP ROSE INNER BORDER */
.hj-metal.rose.active {
    border-color: #f5c8ba;
}

/* ACTIVE SILVER - KEEP SILVER INNER BORDER */
.hj-metal.silver.active {
    border-color: #eeeeee;
}
.hj-metal.yellow.active {
    border-color: #F0da8d;
}

/* ACTIVE PLATINUM - KEEP PLATINUM INNER BORDER */
.hj-metal.platinum.active {
    border-color: #cccccc;
}


/* SIZE OPTIONS */
.hj-size-options {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.hj-size-options button {
    min-width: 36px;
    height: 24px;
    padding: 0 9px;
    background: #ffffff;
    border: 1px solid #d5d5d5;
    border-radius: 14px;
    color: #555555;
    font-size: 11px;
    font-weight: 400;
    cursor: pointer;
    line-height: 1;
    box-sizing: border-box;
    transition: none;
}

.hj-size-options button.active {
    border: 2px solid #111111;
    color: #111111;
}


/* PRICE ROW */
.hj-price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    flex-wrap: wrap;
}

.hj-price-row del {
    color: #777777;
    font-size: 10px;
    font-weight: 400;
}

.hj-price-row strong {
    color: #111111;
    font-size: 15px;
    font-weight: 400;
}

.hj-price-row span {
    background: #2e2d2d;
    color: #ffffff;
    border-radius: 2px;
    padding: 7px 10px;
    font-size: 11px;
    font-weight: 400;
    line-height: 1;
}

/* DESKTOP PRICE SAME AS MOBILE */
.hj-desktop-price-range-box .hj-price-label-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
    font-size: 13px;
    color: #111;
}

.hj-desktop-price-range-box .hj-price-slider-wrap {
    position: relative;
    height: 34px;
    margin-bottom: 18px;
}

.hj-price-slider-track {
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 4px;
    background: #e5e5e5;
    border-radius: 20px;
}

.hj-price-slider-fill {
    position: absolute;
    top: 15px;
    height: 4px;
    background: #111;
    border-radius: 20px;
    z-index: 1;
}

.hj-price-slider-wrap input[type="range"] {
    position: absolute;
    top: 7px;
    left: 0;
    width: 100%;
    pointer-events: none;
    appearance: none;
    background: transparent;
    z-index: 2;
}

.hj-price-slider-wrap input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    background: #111;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #111;
    pointer-events: auto;
    cursor: pointer;
}

.hj-price-slider-wrap input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #111;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #111;
    pointer-events: auto;
    cursor: pointer;
}

.hj-desktop-price-range-box .hj-price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hj-desktop-price-range-box .hj-price-inputs input {
    width: 100%;
}


/* 1440px AND ABOVE */
@media (min-width: 1440px) {
    .hj-product-grid {
        max-width: 1440px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 32px;
        padding-left: 45px;
        padding-right: 45px;
    }

    .hj-product-card {
        border-radius: 26px;
        padding: 18px;
    }

    .hj-product-image-box {
        height: 440px;
        border-radius: 20px;
    }

    .hj-product-badge {
        min-width: 118px;
        height: 24px;
        font-size: 12px;
    }

    .hj-product-info h3 {
        font-size: 16px;
    }

    .hj-product-info p {
        font-size: 13px;
    }

    .hj-metal {
        width: 35px;
        height: 35px;
        font-size: 10px;
    }

    .hj-metal.active {
        box-shadow: 0 0 0 2px #111111;
    }

    .hj-size-options button {
        min-width: 36px;
        height: 24px;
        font-size: 12px;
    }

    .hj-price-row del {
        font-size: 13px;
    }

    .hj-price-row strong {
        font-size: 16px;
    }

    .hj-price-row span {
        font-size: 12px;
    }
}


/* 1200px TO 1439px */
@media (min-width: 1200px) and (max-width: 1439px) {
    .hj-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 28px;
        padding-left: 40px;
        padding-right: 40px;
    }
}


/* MEDIUM SCREEN */
@media (max-width: 1199px) {
    .hj-product-grid {
        max-width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
        padding: 0 25px 40px;
    }

    .hj-product-card {
        border-radius: 22px;
        padding: 14px;
    }

    .hj-product-image-box {
        height: 370px;
    }

    .hj-product-info h3 {
        font-size: 14px;
    }

    .hj-product-info p {
        font-size: 11px;
    }

    .hj-size-options button {
        font-size: 10px;
    }

    .hj-price-row del {
        font-size: 9px;
    }

    .hj-price-row strong {
        font-size: 11px;
    }
}


/* SMALL SCREEN */
@media (max-width: 767px) {
    .hj-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding: 0 10px 35px;
    }

    .hj-product-card {
        border-radius: 16px;
        padding: 8px;
        overflow: hidden;
    }

    .hj-product-image-box {
        height: 200px;
        border-radius: 12px;
    }

    .hj-product-badge {
        top: 10px;
        left: 10px;
        min-width: unset;
        height: 18px;
        padding: 0 8px;
        font-size: 9px;
    }

    .hj-product-image-box img {
        width: 100%;
        max-width: 100%;
    }

    .hj-product-info {
        padding: 0;
    }

    .hj-product-info h3 {
        font-size: 12px;
        line-height: 1.25;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .hj-product-info p {
        font-size: 9px;
        line-height: 1.35;
        margin-bottom: 10px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .hj-metal-options {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        gap: 3px 6px;
        margin-bottom: 8px;
    }

    .hj-metal {
        width: 22px;
        height: 22px;
        font-size: 8px;
        border: 2px solid #d8d8d8;
        flex-shrink: 0;
    }

    .hj-metal.active {
        box-shadow: 0 0 0 2px #111111;
    }

    .hj-size-options {
        justify-content: center;
        width: 100%;
        gap: 3px 4px;
        margin-bottom: 6px;
    }

    .hj-size-options button {
        flex: 0 0 calc((100% - 10px) / 6);
        min-width: 0;
        height: 15px;
        font-size: 7px;
        padding: 0 1px;
    }

    .hj-size-options button.active {
        border: 1px solid #111111;
    }

    .hj-price-row {
        gap: 4px;
    }

    .hj-price-row del {
        font-size: 8px;
    }

    .hj-price-row strong {
        font-size: 12px;
    }

    .hj-price-row span {
        font-size: 6px;
        padding: 3px 4px;
    }
}
.hj-pagination {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 0 50px;
}

.hj-pagination a,
.hj-pagination span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #d8d8d8;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Barlow", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    transition: all 0.25s ease;
}

/* Page numbers */
.hj-page-number {
    color: #111;
}

.hj-page-number:hover,
.hj-page-number.active {
    background: #ffffff !important;
    color: #111 !important;
    border-color: #111 !important;
}

/* Arrows */
.hj-page-arrow {
    color: #111;
}

.hj-page-arrow:hover,
.hj-page-arrow:focus,
.hj-page-arrow:active {
    background: #ffffff !important;
    color: #111 !important;
    border-color: #111 !important;
}

/* SVG */
.hj-arrow-icon {
    width: 18px;
    height: 18px;
}

.hj-arrow-icon path {
    fill: none;
    stroke: #111;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Keep arrow visible after click */
.hj-page-arrow:hover .hj-arrow-icon path,
.hj-page-arrow:focus .hj-arrow-icon path,
.hj-page-arrow:active .hj-arrow-icon path {
    stroke: #111 !important;
}
.hj-page-arrow.disabled {
    opacity: 0.35;
    pointer-events: none;
    cursor: not-allowed;
}
/* mobile */
@media (max-width: 575px) {
    .hj-pagination {
        gap: 7px;
        padding-bottom: 35px;
    }

    .hj-pagination a,
    .hj-pagination span {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }
}
/* INFO SECTION */
.hj-info-section {
    width: 100%;
    padding: 45px 40px 70px;
    box-sizing: border-box;
}

.hj-info-box {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    background: #fafafa;
    border-radius: 14px;
    padding: 48px 120px;
    text-align: center;
    box-sizing: border-box;
}

/* HEADING */
.hj-info-box h2 {
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    line-height: 22px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #111;
    margin: 0 0 16px;
    text-transform: uppercase;
}

/* PARAGRAPH */
.hj-info-box p {
    font-family: "Barlow", sans-serif;
    font-size: 11px;
    line-height: 18px;
    font-weight: 400;
    color: #222;
    margin: 0 auto 6px;
    max-width: 760px;
}

/* LARGE SCREEN */
@media (min-width: 1440px) {
    .hj-info-box {
        max-width: 1180px;
        padding: 52px 135px;
    }

  .hj-info-box h2 {
    font-family: "Barlow", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
}

    .hj-info-box p {
        font-family: "Barlow", sans-serif;
        font-weight: 400;
        font-size: 14px;
        line-height: 22.4px;
    }
}

/* TABLET */
@media (max-width: 991px) {
    .hj-info-section {
        padding: 35px 25px 55px;
    }

    .hj-info-box {
        padding: 38px 45px;
        border-radius: 12px;
    }

    .hj-info-box h2 {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 14px;
    }

    .hj-info-box p {
        font-size: 13px;
        line-height: 18px;
        max-width: 100%;
    }
}

/* MOBILE */
@media (max-width: 575px) {
    .hj-info-section {
        padding: 28px 12px 42px;
    }

    .hj-info-box {
        padding: 30px 18px;
        border-radius: 12px;
    }

    .hj-info-box h2 {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 12px;
    }

    .hj-info-box p {
        font-size: 12px;
        line-height: 18px;
        margin-bottom: 7px;
    }
}
/* DESKTOP SORT DROPDOWN - SCROLL SAFE */

.hj-filter-section,
.hj-filter-top {
    overflow: visible !important;
    position: relative;
    z-index: 20;
}

.hj-sort-box.hj-custom-sort {
    position: relative !important;
    width: 335px;
    z-index: 30;
}

.hj-custom-sort.show {
    z-index: 50;
}

.hj-sort-toggle .hj-chevron {
    margin-top: -4px;
}

.hj-custom-sort.show .hj-sort-toggle {
    z-index: 3;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.hj-custom-sort.show .hj-sort-toggle .hj-chevron {
    transform: rotate(-135deg);
    margin-top: 4px;
}

.hj-sort-dropdown {
    display: none;
    position: absolute;
    top: 16px;
    left: 0;
    width: 100%;
    margin: 0;
    background: #fff;
    border: 1px solid #d7d7d7;
    border-radius: 20px;
    padding: 18px 16px 10px;
    z-index: 1;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
    font-family: "Barlow", sans-serif;
    font-size: 14px;
    font-weight: 500;
    box-sizing: border-box;
}

.hj-custom-sort.show .hj-sort-dropdown {
    display: block;
    z-index: 2;
}

/* Desktop only: sort menu floats over product grid */
@media (min-width: 992px) {
    .hj-filter-section:has(.hj-custom-sort.show) {
        z-index: 40;
    }

    .hj-custom-sort.show .hj-sort-toggle {
        border-radius: 20px 20px 0 0;
        border-bottom-color: transparent;
        box-shadow: none;
    }

    .hj-sort-dropdown {
        top: calc(100% - 1px);
        border-top: none;
        border-radius: 0 0 20px 20px;
        padding: 6px 16px 10px;
        box-shadow: none;
    }

    .hj-product-grid {
        position: relative;
        z-index: 1;
    }
}

.hj-sort-dropdown button {
    width: 100%;
    height: 44px;
    min-height: 44px;
    border: none !important;
    border-bottom: 1px solid #d6d6d6 !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0;
    display: flex;
    align-items: center;
    text-align: left;
    color: #111;
    font-family: "Barlow", sans-serif;
    font-size: 14px;
    line-height: 1.2;
    cursor: pointer;
    font-weight: 500;
    box-sizing: border-box;
}

.hj-sort-dropdown button:last-child {
    border-bottom: none !important;
}

.hj-sort-dropdown button.is-selected,
.hj-modal-sort-dropdown button.is-selected {
    height: 44px;
    min-height: 44px;
    padding: 0 !important;
    line-height: 1.2;
    font-weight: 600;
}

/* Header should always stay above dropdown */
header,
.hj-header,
.main-header,
.navbar {
    position: relative;
    z-index: 999;
}
/* ==============================
   MOBILE FILTER MODAL UPDATED
============================== */

.hj-mobile-filter-top,
.hj-mobile-filter-overlay,
.hj-mobile-filter-drawer {
    display: none;
}

@media (max-width: 991px) {

    .hj-desktop-filter-top,
    .hj-shapes-panel,
    .hj-material-panel,
    .hj-price-panel {
        display: none !important;
    }

    /* OUTSIDE FILTER BUTTON */

    .hj-mobile-filter-top {
        display: block;
        width: 100%;
        border-top: 1px solid #e7e7e7;
        border-bottom: 1px solid #e7e7e7;
        background: #fff;
    }

    .hj-mobile-filter-open {
        width: 100%;
        height: 38px;
        border: none;
        background: transparent;
        padding: 0 16px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 6px;
        color: #111;
        font-size: 13px;
        font-family: "Barlow", sans-serif;
        cursor: pointer;
    }

    /* FULL SCREEN BLUR BACKGROUND */

    .hj-mobile-filter-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.28);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        z-index: 9998;
        transition: 0.28s ease;
    }

    .hj-mobile-filter-overlay.show {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* FULL WIDTH BOTTOM MODAL */

    .hj-mobile-filter-drawer {
        display: flex;
        flex-direction: column;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        width: 100%;
        max-width: none;
        height: calc(100dvh - 118px);
        max-height: calc(100dvh - 118px);
        background: #fff;
        border-radius: 0;
        overflow: hidden;
        z-index: 9999;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(100%);
        transition: transform 0.32s ease, visibility 0.32s ease;
        box-shadow: none;
    }

    .hj-mobile-filter-drawer.show {
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    body.hj-mobile-filter-opened {
        overflow: hidden;
    }

    /* MODAL HEADER */

    .hj-mobile-filter-head {
        flex: 0 0 auto;
        height: 45px;
        margin: 0;
        padding: 0 18px;
        border-bottom: 1px solid #eeeeee;
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        background: #FAFAFA;
    }

    .hj-mobile-filter-head span {
        text-align: center;
        font-size: 14px;
        font-weight: 400;
        color: #111;
        transform: translateX(20px);
    }

    .hj-mobile-filter-head button {
        border: none;
        background: transparent;
        padding: 0;
        font-size: 12px;
        color: #111;
        text-decoration: underline;
        cursor: pointer;
        font-family: "Barlow", sans-serif;
    }

    /* SCROLL AREA */

    .hj-mobile-filter-content-area {
        flex: 1 1 auto;
        min-height: 0;
        overflow-y: auto;
        padding: 8px 20px 0;
        background: #FAFAFA;
        scrollbar-width: none;
    }

    .hj-mobile-filter-content-area::-webkit-scrollbar {
        display: none;
    }

    /* SORT DROPDOWN */

    .hj-modal-sort-wrap {
        width: 100%;
        margin: 0 0 8px;
        position: relative;
        z-index: 10;
        box-sizing: border-box;
    }

    .hj-modal-sort-toggle {
        width: 100%;
        margin: 0;
        height: 38px;
        min-height: 38px;
        border: 1px solid #d7d7d7;
        background: #fff;
        border-radius: 25px;
        padding: 0 16px;
        gap: 14px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: #111;
        font-size: 13px;
        font-weight: 400;
        cursor: pointer;
        font-family: "Barlow", sans-serif;
        box-sizing: border-box;
        position: relative;
        z-index: 3;
    }

    .hj-modal-sort-toggle .hj-chevron {
        margin-top: -4px;
    }

    .hj-modal-sort-wrap.show .hj-modal-sort-toggle {
        border-radius: 25px 25px 0 0;
        border-bottom-color: transparent;
        z-index: 3;
        box-shadow: none;
    }

    .hj-modal-sort-wrap.show .hj-modal-sort-toggle .hj-chevron {
        transform: rotate(-135deg);
        margin-top: 4px;
    }

    .hj-modal-sort-dropdown {
        display: none;
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        margin: 0;
        border: 1px solid #d7d7d7;
        border-top: none;
        background: #fff;
        border-radius: 0 0 20px 20px;
        padding: 6px 16px 10px;
        box-sizing: border-box;
        box-shadow: none;
        font-family: "Barlow", sans-serif;
        font-size: 13px;
        font-weight: 500;
        z-index: auto;
    }

    .hj-modal-sort-wrap.show .hj-modal-sort-dropdown {
        display: block;
        margin-top: -1px;
    }

    .hj-modal-sort-dropdown button {
        width: 100%;
        height: 44px;
        min-height: 44px;
        border: none;
        border-bottom: 1px solid #d6d6d6;
        background: transparent;
        padding: 0;
        margin: 0;
        display: flex;
        align-items: center;
        text-align: left;
        font-family: "Barlow", sans-serif;
        font-size: 13px;
        line-height: 1.2;
        color: #111;
        cursor: pointer;
        font-weight: 500;
        box-sizing: border-box;
    }

    .hj-modal-sort-dropdown button:last-child {
        border-bottom: none;
    }

    /* FILTER BLOCKS */

    .hj-mobile-filter-block {
        border-top: 1px solid #eeeeee;
        padding: 11px 0;
    }

    .hj-mobile-filter-title {
        width: 100%;
        height: 26px;
        border: none;
        background: transparent;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: #111;
        font-size: 13px;
        font-family: "Barlow", sans-serif;
        cursor: pointer;
    }

    .hj-mobile-filter-title i {
        width: 8px;
        height: 8px;
        border-right: 1.5px solid #111;
        border-bottom: 1.5px solid #111;
        transform: rotate(45deg);
        margin-top: -5px;
        transition: 0.2s ease;
    }

    .hj-mobile-filter-block.active .hj-mobile-filter-title i {
        transform: rotate(-135deg);
        margin-top: 5px;
    }

    .hj-mobile-filter-content {
        display: none;
        padding-top: 12px;
    }

    .hj-mobile-filter-block.active .hj-mobile-filter-content {
        display: block;
    }

    .hj-mobile-filter-block:last-child .hj-mobile-filter-content {
        padding-bottom: 8px;
    }

    /* METAL */

    .hj-mobile-metal-list {
        display: grid;
        grid-template-columns: repeat(3, 68px);
        gap: 10px;
        align-items: start;
    }

    .hj-mobile-metal-list button {
        width: 68px;
        height: 73px;
        border: 1px solid transparent;
        background: transparent;
        border-radius: 4px;
        padding: 7px 4px 6px;
        text-align: center;
        cursor: pointer;
        font-family: "Barlow", sans-serif;
    }

    .hj-mobile-metal-list button.active {
        border-color: #e1e1e1;
        background: #fff;
    }

    .hj-mobile-metal-circle {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 8px;
        font-size: 9px;
        font-weight: 600;
        color: #555;
    }

    .hj-mobile-metal-circle.silver {
        border: 4px solid #d6d6d6;
    }

    .hj-mobile-metal-circle.gold {
        border: 4px solid #efd77a;
    }

    .hj-mobile-metal-circle.rose {
        border: 4px solid #f3c2b4;
    }

    .hj-mobile-metal-list small {
        display: block;
        font-size: 12px;
        color: #111;
        line-height: 1;
        white-space: nowrap;
    }

    /* PRICE SAME DESIGN */

    .hj-price-label-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 8px;
        font-size: 12px;
        color: #111;
        font-family: "Barlow", sans-serif;
    }

    .hj-price-slider-wrap {
        position: relative;
        height: 22px;
        margin-bottom: 10px;
    }

    .hj-price-slider-track,
    .hj-price-slider-fill {
        position: absolute;
        top: 9px;
        height: 4px;
        border-radius: 10px;
    }

    .hj-price-slider-track {
        left: 0;
        right: 0;
        background: #c9c9c9;
    }

    .hj-price-slider-fill {
        background: #4b4b4b;
        left: 0%;
        width: 100%;
    }

    .hj-price-slider-wrap input[type="range"] {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 22px;
        margin: 0;
        pointer-events: none;
        appearance: none;
        -webkit-appearance: none;
        background: transparent;
        outline: none;
    }

    .hj-price-slider-wrap input[type="range"]::-webkit-slider-runnable-track {
        height: 4px;
        background: transparent;
    }

    .hj-price-slider-wrap input[type="range"]::-webkit-slider-thumb {
        pointer-events: auto;
        appearance: none;
        -webkit-appearance: none;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: #fff;
        border: 1px solid #4b4b4b;
        cursor: pointer;
        margin-top: -5px;
        position: relative;
        z-index: 2;
    }

    .hj-price-slider-wrap input[type="range"]::-moz-range-track {
        height: 4px;
        background: transparent;
        border: none;
    }

    .hj-price-slider-wrap input[type="range"]::-moz-range-thumb {
        pointer-events: auto;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: #fff;
        border: 1px solid #4b4b4b;
        cursor: pointer;
        position: relative;
        z-index: 2;
    }

    #mobilePriceMinRange {
        z-index: 3;
    }

    #mobilePriceMaxRange {
        z-index: 4;
    }

    .hj-price-inputs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .hj-price-inputs input {
        width: 100%;
        height: 35px;
        border: 1px solid #cfcfcf;
        border-radius: 10px;
        background: #fff;
        padding: 0 12px;
        color: #111;
        font-size: 13px;
        font-family: "Barlow", sans-serif;
        outline: none;
    }

    .hj-price-inputs input:last-child {
        border-color: #111;
    }
/* SHAPES */

.hj-mobile-shapes-grid {
    display: grid;
    grid-template-columns: repeat(3, 66px);
    gap: 24px;
    align-items: start;
    margin-bottom: 0;
    padding-bottom: 0;
}

.hj-mobile-shapes-grid button {
    width: 66px;
    min-height: 80px;
    border: 1px solid transparent;
    background: transparent;
    border-radius: 4px;
    padding: 5px 4px;
    text-align: center;
    cursor: pointer;
    font-family: "Barlow", sans-serif;
}

.hj-mobile-shapes-grid button.active {
    border-color: #e1e1e1;
    background: #fff;
}

.hj-mobile-shapes-grid img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block;
    margin: 0 auto 8px;
}

.hj-mobile-shapes-grid span {
    display: block;
    font-size: 14px;
    color: #111;
    line-height: 1;
}

/* Reduce shape section bottom space */
.hj-mobile-filter-block:last-of-type {
    padding-bottom: 10px !important;
    margin-bottom: 0 !important;
    border-bottom: none !important;
}

.hj-mobile-filter-block:last-of-type .hj-mobile-filter-content {
    padding-bottom: 0 !important;
}

/* BOTTOM BUTTON */

.hj-mobile-filter-bottom {
    flex: 0 0 auto;
    padding: 10px 20px 14px !important;
    background: #fff;
    border-top: 1px solid #eeeeee;
}

.hj-mobile-view-products {
    width: 100%;
    height: 47px;
    border: none;
    border-radius: 26px;
    background: #4a4a49;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    font-family: "Barlow", sans-serif;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
}
  .hj-mobile-filter-drawer {
        height: auto !important;
        max-height: calc(100dvh - 80px) !important;
    }

    .hj-mobile-filter-content-area {
        flex: 0 1 auto !important;
        padding-bottom: 0 !important;
    }
}

@media (max-width: 390px) {
    .hj-mobile-metal-list {
        grid-template-columns: repeat(3, 64px);
        gap: 8px;
    }

    .hj-mobile-shapes-grid {
        grid-template-columns: repeat(3, 62px);
        gap: 18px;
    }

    .hj-price-inputs {
        gap: 18px;
    }
}

/* Product-card metal selector: match the product-details design. */
.hj-product-card .hj-metal-options {
    gap: 12px;
}

.hj-product-card .hj-metal {
    width: 26px;
    height: 26px;
    min-width: 26px;
    min-height: 26px;
    flex: 0 0 26px;
    border: 0;
    background: #fff;
    color: #555;
    font-size: 9px;
    font-weight: 400;
    box-shadow: 0 0 0 3px #c7c7c7;
}

.hj-product-card .hj-metal.white,
.hj-product-card .hj-metal.silver {
    box-shadow: 0 0 0 3px #d6d6d6;
}

.hj-product-card .hj-metal.rose {
    box-shadow: 0 0 0 3px #e4a083;
}

.hj-product-card .hj-metal.yellow {
    box-shadow: 0 0 0 3px #dfc258;
}

.hj-product-card .hj-metal.active {
    box-shadow: 0 0 0 2px #c7c7c7, 0 0 0 4px #111;
}

.hj-product-card .hj-metal.white.active,
.hj-product-card .hj-metal.silver.active {
    box-shadow: 0 0 0 2px #d6d6d6, 0 0 0 4px #111;
}

.hj-product-card .hj-metal.rose.active {
    box-shadow: 0 0 0 2px #e4a083, 0 0 0 4px #111;
}

.hj-product-card .hj-metal.yellow.active {
    box-shadow: 0 0 0 2px #dfc258, 0 0 0 4px #111;
}
