.product-page-main.rm-product-page.rm-product-page-v3.engagement-page-main {
    min-height: 100vh;
    background:
        radial-gradient(circle at 12% 18%, rgba(194, 166, 119, 0.05), transparent 24%),
        radial-gradient(circle at 88% 82%, rgba(0, 0, 0, 0.025), transparent 22%),
        linear-gradient(180deg, #fcfbf8 0%, #f6f2ed 48%, #fcfbf8 100%);
}

/* =========================
   HERO
========================= */
.eg1-hero {
    padding: 18px 0 12px;
}

.eg1-hero-inner {
    padding: 28px 0 10px;
    text-align: center;
}

.eg1-page-title {
    margin: 0;
    color: #17120d;
    font-size: 40px;
    line-height: 1.06;
    font-weight: 700;
    font-family: "Montserrat", Arial, sans-serif;
}

.eg1-page-copy {
    margin-top: 8px;
}

/* =========================
   FILTER SECTION
========================= */
.eg1-filter-section {
    padding: 8px 0 24px;
}

.eg1-filter-wrap {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(35, 26, 18, 0.07);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
}

.eg1-filter-group {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.eg1-filter-title,
.eg1-sort-label {
    margin: 0;
    min-width: 82px;
    color: #1d1711;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;
    font-family: "Montserrat", Arial, sans-serif;
}

.eg1-shape-list,
.eg1-metal-list,
.eg1-style-list {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* =========================
   SHAPE BUTTONS
========================= */
.eg1-shape-btn {
    width: 52px;
    height: 52px;
    padding: 0;
    border: 1px solid #e5ddd3;
    border-radius: 16px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.eg1-shape-btn:hover,
.eg1-shape-btn.is-active {
    transform: translateY(-1px);
    border-color: rgba(167, 133, 78, 0.28);
    background: linear-gradient(180deg, #fbf6ef 0%, #f0e7da 100%);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.eg1-shape-icon {
    position: relative;
    display: block;
    width: 22px;
    height: 22px;
    border: 2px solid #5a4a38;
    background: transparent;
    box-sizing: border-box;
}

.eg1-shape-round {
    border-radius: 50%;
}

.eg1-shape-princess {
    border-radius: 4px;
    transform: rotate(45deg);
}

.eg1-shape-cushion {
    border-radius: 8px;
}

.eg1-shape-oval {
    width: 18px;
    height: 24px;
    border-radius: 50%;
}

.eg1-shape-emerald {
    width: 18px;
    height: 24px;
    border-radius: 3px;
}

.eg1-shape-radiant {
    width: 18px;
    height: 24px;
    border-radius: 4px;
    transform: rotate(45deg);
}

.eg1-shape-pear {
    width: 18px;
    height: 24px;
    border-radius: 50% 50% 50% 50% / 58% 58% 42% 42%;
    transform: rotate(45deg);
}

.eg1-shape-heart {
    width: 22px;
    height: 20px;
    border: none;
    background: transparent;
}

.eg1-shape-heart::before,
.eg1-shape-heart::after {
    content: "";
    position: absolute;
    top: 2px;
    width: 11px;
    height: 17px;
    border: 2px solid #5a4a38;
    border-bottom: none;
    border-radius: 11px 11px 0 0;
    background: transparent;
}

.eg1-shape-heart::before {
    left: 3px;
    transform: rotate(-45deg);
    transform-origin: 0 100%;
}

.eg1-shape-heart::after {
    left: 8px;
    transform: rotate(45deg);
    transform-origin: 100% 100%;
}

.eg1-shape-marquise {
    width: 12px;
    height: 24px;
    border-radius: 50% / 18%;
    transform: rotate(45deg);
}

.eg1-shape-asscher {
    border-radius: 4px;
    box-shadow: inset 0 0 0 2px rgba(90, 74, 56, 0.18);
}

/* =========================
   METAL BUTTONS
========================= */
.eg1-metal-btn {
    width: 52px;
    height: 52px;
    padding: 0;
    border: 1px solid #e5ddd3;
    border-radius: 50%;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.eg1-metal-btn:hover,
.eg1-metal-btn.is-active {
    transform: translateY(-1px);
    border-color: rgba(167, 133, 78, 0.28);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.eg1-metal-swatch {
    display: block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(44, 35, 26, 0.08);
}

.eg1-metal-silver {
    background: linear-gradient(180deg, #f3f4f6 0%, #bcc3ca 100%);
}

.eg1-metal-gold {
    background: linear-gradient(180deg, #f7df94 0%, #c8a44c 100%);
}

.eg1-metal-rose {
    background: linear-gradient(180deg, #f4d0c7 0%, #c98e7f 100%);
}

.eg1-metal-platinum {
    background: linear-gradient(180deg, #eef1f5 0%, #9ea7b3 100%);
}

/* =========================
   STYLE BUTTONS
========================= */
.eg1-style-btn {
    min-height: 48px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid #e5ddd3;
    background: #fff;
    color: #2a2119;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
    font-family: "Montserrat", Arial, sans-serif;
}

.eg1-style-btn:hover,
.eg1-style-btn.is-active {
    transform: translateY(-1px);
    border-color: rgba(167, 133, 78, 0.28);
    background: linear-gradient(180deg, #fbf6ef 0%, #f0e7da 100%);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.eg1-style-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(167, 133, 78, 0.10);
    color: #6f5738;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.eg1-style-label {
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
    white-space: nowrap;
}

/* =========================
   SORT
========================= */
.eg1-filter-group-sort {
    justify-content: flex-end;
}

.eg1-sort-box {
    position: relative;
    min-width: 240px;
}

.eg1-sort-select {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    border-radius: 16px;
    border: 1px solid #e7dfd5;
    background: #fff;
    color: #1e1812;
    font-size: 14px;
    outline: none;
    transition: all 0.25s ease;
    font-family: "Montserrat", sans-serif;
}

.eg1-sort-select:focus {
    border-color: rgba(167, 133, 78, 0.4);
    box-shadow: 0 0 0 4px rgba(167, 133, 78, 0.07);
}

/* =========================
   LISTING TOP
========================= */
.rm-product-listing-section.eg1-listing-section {
    position: relative;
    padding: 10px 0 82px;
    overflow: visible;
    z-index: 1;
}

.rm-product-listing-top.eg1-listing-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.rm-product-listing-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rm-product-listing-mini {
    display: inline-block;
    color: #a1845e;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.9px;
    text-transform: uppercase;
    font-family: Arial, Helvetica, sans-serif;
}

.rm-product-listing-title {
    margin: 0;
    color: #17120d;
    font-size: 36px;
    line-height: 1.05;
    font-weight: 700;
    font-family: "Montserrat", Arial, sans-serif;
}

.rm-product-result-count {
    color: #675d53;
    font-size: 14px;
    font-weight: 600;
}

/* =========================
   GRID
========================= */
.rm-product-grid-page.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
    overflow: visible;
}

/* =========================
   CARD BASE
========================= */
.rm-page-product-card.product-card.rm-product-card-v3 {
    position: relative;
    display: block;
    border: none;
    background: transparent;
    box-shadow: none;
    overflow: visible;
    z-index: 1;
}

.rm-page-product-card.product-card.rm-product-card-v3:hover,
.rm-page-product-card.product-card.rm-product-card-v3:focus-within {
    z-index: 80;
}

.rm-product-card-shell-v3 {
    position: relative;
    min-height: 100%;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.985) 0%, rgba(246, 242, 236, 0.995) 100%);
    border: 1px solid rgba(44, 35, 26, 0.06);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.07);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    display: flex;
    flex-direction: column;
    overflow: visible;
    z-index: 1;
}

.rm-page-product-card.product-card.rm-product-card-v3:hover .rm-product-card-shell-v3,
.rm-page-product-card.product-card.rm-product-card-v3:focus-within .rm-product-card-shell-v3 {
    transform: translateY(-5px);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.10);
    border-color: rgba(167, 133, 78, 0.12);
}

/* =========================
   BADGE
========================= */
.rm-product-card-top-v3 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 18px 18px 0;
}

.rm-product-soft-badge {
    min-height: 30px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(167, 133, 78, 0.08);
    color: #70593b;
    border: 1px solid rgba(167, 133, 78, 0.12);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: none;
    font-family: Arial, Helvetica, sans-serif;
    white-space: nowrap;
}

/* =========================
   IMAGE AREA
========================= */
.rm-product-card-stage-v3 {
    position: relative;
    padding: 14px 18px 0;
    z-index: 1;
}

.rm-product-main-visual-v3 {
    position: relative;
    width: 100%;
    min-height: 300px;
    aspect-ratio: 1 / 1;
    border-radius: 30px;
    background:
        radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.12) 52%),
        linear-gradient(180deg, #e8e1d8 0%, #dbd2c8 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 60px;
}

.rm-product-image-link-v3 {
    width: 100%;
    height: 100%;
    display: block;
    text-decoration: none;
}

.rm-product-media-stage-v3 {
    position: relative;
    width: 100%;
    height: 100%;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rm-product-main-image-v3,
.rm-page-main-ring-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    pointer-events: none;
    filter: drop-shadow(0 24px 22px rgba(0, 0, 0, 0.12));
    transition: opacity 0.32s ease, transform 0.32s ease;
    transform-origin: center center;
    transform: scale(1.34);
    opacity: 1;
}

.rm-product-main-image-v3.is-switching,
.rm-page-main-ring-image.is-switching {
    opacity: 0;
    transform: translateY(10px) scale(1.12);
}

.rm-page-visual-nav {
    position: absolute;
    top: 50%;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(122, 103, 79, 0.10);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.86);
    color: #2c231a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 12;
    transform: translateY(-50%);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease, opacity 0.22s ease;
    padding: 0;
}

.rm-page-visual-nav:hover {
    transform: translateY(-50%) scale(1.04);
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(167, 133, 78, 0.20);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.10);
}

.rm-page-visual-prev {
    left: 14px;
}

.rm-page-visual-next {
    right: 14px;
}

.rm-product-card-shell-v3.is-video-mode .rm-page-visual-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.rm-page-main-video-wrap,
.rm-product-main-video-wrap-v3 {
    pointer-events: none;
}

.rm-page-video-control-btn {
    pointer-events: auto;
}

/* =========================
   VIDEO
========================= */
.rm-product-main-video-wrap-v3,
.rm-page-main-video-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    overflow: hidden;
    background:
        radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0) 46%),
        linear-gradient(180deg, #15120e 0%, #2a2119 100%);
    z-index: 8;
}

.rm-product-main-video-wrap-v3[hidden],
.rm-page-main-video-wrap[hidden] {
    display: none !important;
}

.rm-page-main-review-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rm-page-video-control-btn {
    position: absolute;
    right: 14px;
    bottom: 68px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: rgba(19, 15, 11, 0.78);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 14;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(8px);
    transition: transform 0.2s ease, background 0.2s ease;
}

.rm-page-video-control-btn:hover {
    transform: translateY(-1px);
    background: rgba(34, 27, 20, 0.9);
}

.rm-page-main-video-wrap.is-paused::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
    pointer-events: none;
}

/* =========================
   OVERLAY MENU
========================= */
.rm-product-overlay-anchor {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 16;
}

.rm-product-overlay-toggle {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid rgba(122, 103, 79, 0.12);
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
    padding: 0;
}

.rm-product-overlay-toggle:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(167, 133, 78, 0.22);
}

.rm-product-overlay-toggle span {
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: #4c3b29;
    display: block;
}

.rm-product-overlay-menu {
    position: absolute;
    right: 0;
    bottom: calc(100% - 45px);
    margin-right: 110%;
    display: flex;
    flex-direction: row;
    gap: 8px;
    padding: 8px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.40);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
    min-width: 200px;
    max-width: 400px;
    z-index: 20;
}

.rm-product-overlay-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.rm-product-overlay-action {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(122, 103, 79, 0.10);
    color: #2b2219;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
    padding: 0;
}

.rm-product-overlay-action:hover,
.rm-product-overlay-action.active {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(167, 133, 78, 0.20);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.09);
}

.rm-product-overlay-action i {
    font-size: 15px;
    line-height: 1;
    pointer-events: none;
}

.rm-product-overlay-youtube i {
    color: #d92323;
}

/* =========================
   HIDDEN CONTROLS
========================= */
.rm-product-hidden-controls {
    display: none !important;
}

/* =========================
   CONTENT
========================= */
.rm-product-card-content-v3 {
    position: relative;
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1 1 auto;
    overflow: visible;
    z-index: 18;
}

.rm-product-card-footer-v3 {
    position: relative;
    z-index: 30;
    overflow: visible;
    margin-top: auto;
}

.rm-product-footer-row-v3 {
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr) 64px;
    align-items: center;
    gap: 12px;
    width: 100%;
    overflow: visible;
}

.rm-product-code-box-v3,
.rm-product-dropdown-box-v3,
.rm-product-wa-box-v3 {
    min-width: 0;
}

.rm-product-code-stack-v3 {
    width: 100%;
    max-width: 98px;
    min-height: 56px;
    padding: 8px 12px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(248, 244, 238, 0.98) 0%, rgba(241, 235, 227, 0.98) 100%);
    border: 1px solid rgba(122, 103, 79, 0.10);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.26);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.rm-product-small-code {
    color: #1c1611;
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
    font-family: "Cinzel", serif;
    white-space: nowrap;
}

/* =========================
   DROPDOWN DETAIL BOX
========================= */
.rm-product-dropdown-box-v3 {
    position: relative;
    min-width: 0;
    overflow: visible;
    z-index: 40;
}

.rm-product-price-dropdown-v3,
.rm-page-price-dropdown {
    position: relative;
    width: 100%;
    left: 0;
    z-index: 50;
    overflow: visible;
}

.rm-product-price-dropdown-v3.is-open,
.rm-page-price-dropdown.is-open {
    z-index: 70;
}

.rm-product-price-toggle-v3 {
    width: 100%;
    min-height: 56px;
    border-radius: 14px;
    border: 1px solid rgba(45, 33, 26, 0.18);
    background: linear-gradient(180deg, rgba(248, 244, 238, 0.98) 0%, rgba(241, 235, 227, 0.98) 100%);
    color: #2a2119;
    padding: 0 18px;
    font-size: 16px;
    font-weight: 700;
    font-family: "Montserrat", Arial, sans-serif;
    outline: none;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.03);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.rm-product-price-toggle-v3:hover,
.rm-product-price-dropdown-v3.is-open .rm-product-price-toggle-v3 {
    border-color: rgba(167, 133, 78, 0.30);
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.05),
        0 0 0 3px rgba(194, 166, 119, 0.08);
    background: linear-gradient(180deg, rgba(248, 244, 238, 0.98) 0%, rgba(241, 235, 227, 0.98) 100%);
}

.rm-product-price-toggle-v3 i {
    font-size: 13px;
    flex-shrink: 0;
    transition: transform 0.24s ease;
}

.rm-product-price-dropdown-v3.is-open .rm-product-price-toggle-v3 i,
.rm-page-price-dropdown.is-open .rm-product-price-toggle-v3 i {
    transform: rotate(180deg);
}

.rm-page-price-toggle-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: left;
}

.rm-page-rs-text {
    display: inline-block;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: #2a2119;
}

.rm-page-rupee-flag {
    display: inline-block;
    font-size: 18px;
    line-height: 1;
    font-weight: 800;
    background: linear-gradient(180deg, #ff9933 0 33.333%, #ffffff 33.333% 66.666%, #138808 66.666% 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.rm-product-price-menu-v3,
.rm-page-price-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: max-content;
    min-width: 280px;
    max-width: min(92vw, 420px);
    padding: 10px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.985);
    border: 1px solid rgba(41, 32, 23, 0.08);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.24s ease, visibility 0.24s ease, transform 0.24s ease;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: visible;
    white-space: nowrap;
}

.rm-product-price-dropdown-v3.is-open .rm-product-price-menu-v3,
.rm-page-price-dropdown.is-open .rm-page-price-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.rm-page-price-item {
    width: 100%;
    min-width: 260px;
    min-height: 52px;
    padding: 10px 12px;
    border-radius: 14px;
    color: #2a2119;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: nowrap;
    white-space: nowrap;
    box-sizing: border-box;
    transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.rm-page-price-item:hover {
    background: linear-gradient(180deg, #fbf6ef 0%, #f0e7da 100%);
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.rm-page-price-item-text {
    flex: 0 1 auto;
    min-width: 0;
    white-space: nowrap;
    color: #2a2119;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
}

.rm-page-price-item-cart {
    width: 36px;
    min-width: 36px;
    height: 36px;
    border-radius: 11px;
    border: 1px solid rgba(122, 103, 79, 0.12);
    background: linear-gradient(180deg, #fcfaf7 0%, #f1ebe3 100%);
    color: #2c231a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.rm-page-price-item:hover .rm-page-price-item-cart {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.07);
    border-color: rgba(167, 133, 78, 0.24);
    background: linear-gradient(180deg, #faf5ee 0%, #ece3d7 100%);
}

/* =========================
   WHATSAPP
========================= */
.rm-product-wa-box-v3 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.rm-product-whatsapp-btn-v3 {
    width: 58px;
    min-width: 58px;
    height: 58px;
    padding: 0;
    border-radius: 18px;
    background:
        radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 34%),
        linear-gradient(180deg, #35cd68 0%, #1fb954 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    box-shadow: 0 12px 24px rgba(24, 178, 81, 0.18);
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.rm-product-whatsapp-btn-v3:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(24, 178, 81, 0.24);
    filter: saturate(1.05);
}

.rm-product-whatsapp-btn-v3 i {
    font-size: 24px;
    line-height: 1;
}

/* =========================
   PRICE + MATERIAL ROW
========================= */
.rm-product-bottom-meta-row-v3,
.rm-page-price-material-row {
    display: none;
}

.rm-page-current-price {
    color: #1b1510;
    font-size: 22px;
    line-height: 1.1;
    font-weight: 700;
    font-family: "Cinzel", serif;
}

.rm-page-card-material {
    color: #7a6c5c;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-family: Arial, Helvetica, sans-serif;
}

/* =========================
   MOBILE PRICE MODAL
========================= */
.rm-page-mobile-price-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(17, 12, 8, 0.44);
    display: none;
    align-items: flex-end;
    justify-content: center;
    padding: 14px;
}

.rm-page-mobile-price-modal.active {
    display: flex;
}

.rm-page-mobile-price-dialog {
    width: 100%;
    max-width: 560px;
    border-radius: 24px 24px 0 0;
    background: #fff;
    padding: 18px 18px 16px;
    position: relative;
    box-shadow: 0 -16px 38px rgba(0, 0, 0, 0.16);
}

.rm-page-mobile-price-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: #f5efe8;
    color: #2b2118;
    cursor: pointer;
}

.rm-page-mobile-price-head h4 {
    margin: 0 0 6px;
    color: #17120d;
    font-size: 22px;
    font-family: "Cinzel", serif;
}

.rm-page-mobile-price-head p {
    margin: 0;
    color: #7a6c5c;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.9px;
}

.rm-page-mobile-price-table-wrap {
    margin-top: 16px;
    overflow-x: auto;
}

.rm-page-mobile-price-table {
    width: 100%;
    border-collapse: collapse;
}

.rm-page-mobile-price-table th,
.rm-page-mobile-price-table td {
    padding: 12px 10px;
    border-bottom: 1px solid #efe6dc;
    text-align: left;
    font-size: 13px;
    color: #2c231a;
}

.rm-page-mobile-price-table th {
    color: #7a6c5c;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.rm-page-price-buy-link {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(180deg, #fbf6ef 0%, #f0e7da 100%);
    border: 1px solid rgba(122, 103, 79, 0.12);
    color: #2b2219;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* =========================
   EMPTY STATE
========================= */
.product-empty-state {
    padding: 24px 0 0;
}

.product-empty-box {
    padding: 42px 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(35, 26, 18, 0.06);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.product-empty-box i {
    font-size: 32px;
    color: #a1845e;
    margin-bottom: 12px;
}

.product-empty-box h3 {
    margin: 0 0 8px;
    color: #17120d;
    font-size: 24px;
    font-family: "Montserrat", Arial, sans-serif;
}

.product-empty-box p {
    margin: 0;
    color: #6d6256;
    font-size: 14px;
}

/* =========================
   VISIBILITY / OVERFLOW
========================= */
.rm-product-listing-section,
.rm-product-grid-page,
.rm-page-product-card,
.rm-product-card-shell-v3,
.rm-product-card-stage-v3,
.rm-product-card-footer-v3,
.rm-product-dropdown-box-v3,
.rm-product-price-dropdown-v3,
.rm-product-price-menu-v3,
.rm-page-price-menu,
.rm-product-card-content-v3 {
    overflow: visible !important;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1199px) {
    .rm-product-grid-page.product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .eg1-filter-group {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .eg1-filter-title,
    .eg1-sort-label {
        min-width: 0;
    }

    .eg1-filter-group-sort {
        align-items: stretch;
    }

    .rm-product-price-menu-v3,
    .rm-page-price-menu {
        min-width: 260px;
        max-width: min(90vw, 380px);
    }
}

@media (max-width: 991px) {
    .eg1-page-title {
        font-size: 34px;
    }

    .rm-product-listing-title {
        font-size: 30px;
    }

    .rm-product-grid-page.product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rm-product-listing-top.eg1-listing-top {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .eg1-hero {
        padding: 14px 0 8px;
    }

    .eg1-page-title {
        font-size: 28px;
    }

    .eg1-filter-wrap {
        padding: 18px;
        border-radius: 22px;
    }

    .eg1-style-btn {
        min-height: 44px;
        padding: 0 14px;
    }

    .eg1-style-label {
        font-size: 12px;
    }

    .eg1-sort-box {
        width: 100%;
        min-width: 0;
    }

    .rm-product-grid-page.product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .rm-product-footer-row-v3 {
        grid-template-columns: 92px minmax(0, 1fr) 58px;
        gap: 10px;
    }

    .rm-product-code-stack-v3 {
        max-width: 92px;
        min-height: 52px;
    }

    .rm-product-small-code {
        font-size: 17px;
    }

    .rm-product-price-dropdown-v3,
    .rm-page-price-dropdown {
        width: 100%;
        left: 0;
    }

    .rm-product-price-toggle-v3 {
        min-height: 46px;
        height: 46px;
        border-radius: 12px;
        font-size: 13px;
        padding: 0 14px;
    }

    .rm-page-rs-text {
        font-size: 15px;
    }

    .rm-page-rupee-flag {
        font-size: 16px;
    }

    .rm-product-price-menu-v3,
    .rm-page-price-menu {
        min-width: 250px;
        max-width: min(94vw, 360px);
        padding: 8px;
        border-radius: 18px;
    }

    .rm-page-price-item {
        min-width: 234px;
        min-height: 48px;
        padding: 9px 10px;
        gap: 10px;
    }

    .rm-page-price-item-text {
        font-size: 13px;
        line-height: 1.25;
    }

    .rm-page-price-item-cart {
        width: 34px;
        min-width: 34px;
        height: 34px;
        border-radius: 10px;
    }

    .rm-product-whatsapp-btn-v3 {
        width: 54px;
        min-width: 54px;
        height: 54px;
        border-radius: 16px;
    }

    .rm-product-whatsapp-btn-v3 i {
        font-size: 22px;
    }

    .rm-page-current-price {
        font-size: 20px;
    }

    .rm-product-overlay-menu {
        right: 0;
        bottom: calc(100% - 40px);
        max-width: 200px;
        min-width: 200px;
        margin-right: 110%;
        padding: 8px;
        gap: 6px;
    }
}

@media (max-width: 575px) {
    .rm-product-footer-row-v3 {
        grid-template-columns: 84px minmax(0, 1fr) 54px;
        gap: 8px;
    }

    .rm-product-code-stack-v3 {
        max-width: 84px;
        min-height: 50px;
        padding: 6px 8px;
        border-radius: 16px;
    }

    .rm-product-small-code {
        font-size: 16px;
    }

    .rm-product-price-dropdown-v3,
    .rm-page-price-dropdown {
        width: 100%;
        left: 0;
    }

    .rm-product-price-toggle-v3 {
        min-height: 42px;
        height: 42px;
        padding: 0 12px;
        font-size: 14px;
        border-radius: 12px;
    }

    .rm-page-rs-text {
        font-size: 14px;
    }

    .rm-page-rupee-flag {
        font-size: 15px;
    }

    .rm-product-price-menu-v3,
    .rm-page-price-menu {
        top: calc(100% + 8px);
        min-width: 230px;
        max-width: min(96vw, 320px);
        padding: 8px;
        border-radius: 16px;
    }

    .rm-page-price-item {
        min-width: 214px;
        min-height: 46px;
        padding: 8px 9px;
        gap: 8px;
        border-radius: 12px;
    }

    .rm-page-price-item-text {
        font-size: 12px;
        line-height: 1.15;
    }

    .rm-page-price-item-cart {
        width: 32px;
        min-width: 32px;
        height: 32px;
        border-radius: 9px;
    }

    .rm-page-price-item-cart i {
        font-size: 13px;
    }

    .rm-product-whatsapp-btn-v3 {
        width: 50px;
        min-width: 50px;
        height: 50px;
        border-radius: 14px;
    }

    .rm-product-whatsapp-btn-v3 i {
        font-size: 20px;
    }
}

@media (max-width: 420px) {
    .eg1-filter-wrap {
        padding: 14px;
    }

    .rm-product-card-top-v3 {
        padding: 12px 12px 0;
    }

    .rm-product-card-stage-v3 {
        padding: 10px 12px 0;
    }

    .rm-product-card-content-v3 {
        padding: 12px;
    }

    .rm-product-main-visual-v3 {
        min-height: 260px;
        padding: 10px 38px;
        border-radius: 22px;
    }

    .rm-product-footer-row-v3 {
        grid-template-columns: 66px minmax(0, 1fr) 42px;
        gap: 6px;
    }

    .rm-product-code-stack-v3 {
        max-width: 66px;
        min-height: 42px;
        border-radius: 12px;
    }

    .rm-product-small-code {
        font-size: 14px;
    }

    .rm-product-price-toggle-v3 {
        min-height: 42px;
        padding: 0 10px;
        font-size: 13px;
    }

    .rm-page-rs-text {
        font-size: 13px;
    }

    .rm-page-rupee-flag {
        font-size: 14px;
    }

    .rm-product-price-menu-v3,
    .rm-page-price-menu {
        min-width: 220px;
        max-width: min(96vw, 300px);
    }

    .rm-page-price-item {
        min-width: 204px;
    }

    .rm-page-price-item-text {
        font-size: 11px;
    }

    .rm-page-price-item-cart {
        width: 30px;
        min-width: 30px;
        height: 30px;
        border-radius: 8px;
    }

    .rm-product-whatsapp-btn-v3 {
        width: 42px;
        min-width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .rm-product-whatsapp-btn-v3 i {
        font-size: 17px;
    }
}