/* ╔══════════════════════════════════════════════════╗
   ║  JMD JEWELLERS — GEMSTONES PAGE                 ║
   ║  Luxury Gold-Accent Design                      ║
   ╚══════════════════════════════════════════════════╝ */

/* ─── HERO ─── */
.jmd-gems-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 24px 60px;
    background: linear-gradient(165deg, #0c0a07 0%, #1a1610 40%, #0d0b08 100%);
    overflow: hidden;
}

.jmd-gems-hero__pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(212, 168, 67, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 168, 67, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.jmd-gems-hero__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.jmd-gems-hero__icon {
    margin-bottom: 20px;
    color: var(--jmd-gold, #D4A843);
    opacity: 0.7;
}

.jmd-gems-hero__kicker {
    font-family: var(--jmd-font-body, 'Poppins', sans-serif);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--jmd-gold, #D4A843);
    margin: 0 0 16px;
}

.jmd-gems-hero__title {
    font-family: var(--jmd-font-body, 'Poppins', sans-serif);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px;
    letter-spacing: 1px;
    background: linear-gradient(135deg,
            var(--jmd-gold-dark, #B8860B) 0%,
            var(--jmd-gold, #D4A843) 30%,
            var(--jmd-gold-shimmer, #FFE4A0) 50%,
            var(--jmd-gold, #D4A843) 70%,
            var(--jmd-gold-dark, #B8860B) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: jmd-gems-shimmer 4s linear infinite;
}

@keyframes jmd-gems-shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.jmd-gems-hero__line {
    width: 60px;
    height: 2px;
    background: var(--jmd-gold, #D4A843);
    margin: 0 auto 20px;
    border-radius: 1px;
}

.jmd-gems-hero__subtitle {
    font-family: var(--jmd-font-body, 'Poppins', sans-serif);
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin: 0;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

/* Category Quick Nav */
.jmd-gems-hero__nav {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 16px;
    margin-top: 44px;
    flex-wrap: wrap;
    justify-content: center;
}

.jmd-gems-hero__nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--jmd-font-body, 'Poppins', sans-serif);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    padding: 12px 24px;
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(212, 168, 67, 0.04);
}

.jmd-gems-hero__nav-link:hover {
    color: var(--jmd-gold, #D4A843);
    border-color: var(--jmd-gold, #D4A843);
    background: rgba(212, 168, 67, 0.08);
    transform: translateY(-2px);
}

.jmd-gems-hero__nav-link svg {
    opacity: 0.5;
    transition: opacity 0.3s, transform 0.3s;
}

.jmd-gems-hero__nav-link:hover svg {
    opacity: 1;
    transform: translateY(2px);
}

/* Confused? Enquire on WhatsApp CTA */
.jmd-gems-whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 36px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    text-decoration: none;
    font-family: var(--jmd-font-body, 'Poppins', sans-serif);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.jmd-gems-whatsapp-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.jmd-gems-whatsapp-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    color: #fff;
}

.jmd-gems-whatsapp-cta__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

.jmd-gems-whatsapp-cta__text {
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.jmd-gems-whatsapp-cta__action {
    opacity: 0.95;
    font-weight: 500;
}


/* ─── CONSULT CTA SECTION (End of Page) ─── */
.jmd-gems-consult-cta {
    position: relative;
    padding: 80px 24px 90px;
    background: linear-gradient(165deg, #0c0a07 0%, #1a1610 50%, #0d0b08 100%);
    text-align: center;
    overflow: hidden;
}

.jmd-gems-consult-cta__pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 30% 20%, rgba(212, 168, 67, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 70% 80%, rgba(212, 168, 67, 0.06) 0%, transparent 45%);
    pointer-events: none;
}

.jmd-gems-consult-cta__inner {
    position: relative;
    z-index: 2;
    max-width: 620px;
    margin: 0 auto;
}

.jmd-gems-consult-cta__icon {
    margin-bottom: 24px;
    color: var(--jmd-gold, #D4A843);
    opacity: 0.85;
}

.jmd-gems-consult-cta__title {
    font-family: var(--jmd-font-body, 'Poppins', sans-serif);
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px;
    letter-spacing: 0.5px;
}

.jmd-gems-consult-cta__desc {
    font-family: var(--jmd-font-body, 'Poppins', sans-serif);
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    margin: 0 0 36px;
}

.jmd-gems-consult-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    text-decoration: none;
    font-family: var(--jmd-font-body, 'Poppins', sans-serif);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.jmd-gems-consult-cta__btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.jmd-gems-consult-cta__btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.18) inset;
    color: #fff;
}


/* ─── CATEGORY SECTIONS ─── */
.jmd-gems-category {
    padding: 80px 24px 60px;
    max-width: 1300px;
    margin: 0 auto;
}

.jmd-gems-category__header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.jmd-gems-category__number {
    font-family: var(--jmd-font-body, 'Poppins', sans-serif);
    font-size: 5rem;
    font-weight: 800;
    color: var(--jmd-border-soft, #f0ece4);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.jmd-gems-category__kicker {
    font-family: var(--jmd-font-body, 'Poppins', sans-serif);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--jmd-gold, #D4A843);
    margin: 0 0 10px;
    position: relative;
    z-index: 1;
}

.jmd-gems-category__title {
    font-family: var(--jmd-font-body, 'Poppins', sans-serif);
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    color: var(--jmd-text-dark, #1a1a1a);
    margin: 0 0 16px;
    position: relative;
    z-index: 1;
}

.jmd-gems-category__line {
    width: 50px;
    height: 2px;
    background: var(--jmd-gold, #D4A843);
    margin: 0 auto 20px;
    border-radius: 1px;
}

.jmd-gems-category__desc {
    font-family: var(--jmd-font-body, 'Poppins', sans-serif);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--jmd-text-body, #444);
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto;
}


/* ─── GEM CARD GRID ─── */
.jmd-gems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

/* ─── GEM CARD ─── */
.jmd-gem-card {
    position: relative;
    background: var(--jmd-bg-white, #fff);
    border: 1px solid var(--jmd-border-soft, #f0ece4);
    border-radius: 14px;
    padding: 32px 24px 24px;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.35s;
}

.jmd-gem-card:hover,
.jmd-gem-card:focus-visible {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08),
        0 4px 16px rgba(212, 168, 67, 0.08);
    border-color: var(--jmd-gold-light, #F0D78C);
}

.jmd-gem-card:focus-visible {
    outline: 2px solid var(--jmd-gold, #D4A843);
    outline-offset: 2px;
}

.jmd-gem-card__glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--gem-color, #D4A843) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.jmd-gem-card:hover .jmd-gem-card__glow {
    opacity: 0.04;
}

.jmd-gem-card__border-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 14px 14px 0 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.jmd-gem-card:hover .jmd-gem-card__border-top {
    transform: scaleX(1);
}

/* Gem Orb */
.jmd-gem-card__orb {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.5s;
}

.jmd-gem-card:hover .jmd-gem-card__orb {
    transform: scale(1.1) rotate(5deg);
}

.jmd-gem-card__orb--img {
    background: transparent !important;
    box-shadow: none !important;
    overflow: hidden;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    /* Colored border via inline style */
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.jmd-gem-card__orb--img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    /* filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15)); */
}


.jmd-gem-card__name {
    font-family: var(--jmd-font-body, 'Poppins', sans-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--jmd-text-dark, #1a1a1a);
    margin: 0 0 4px;
}

.jmd-gem-card__alt {
    font-family: var(--jmd-font-body, 'Poppins', sans-serif);
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--jmd-text-muted, #888);
    margin: 0 0 10px;
    font-style: italic;
}

.jmd-gem-card__planet {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--jmd-font-body, 'Poppins', sans-serif);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--jmd-gold-dark, #B8860B);
    margin: 0 0 16px;
    letter-spacing: 0.3px;
}

.jmd-gem-card__planet svg {
    stroke: var(--jmd-gold-dark, #B8860B);
    flex-shrink: 0;
}

.jmd-gem-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--jmd-font-body, 'Poppins', sans-serif);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--jmd-gold-dark, #B8860B);
    transition: gap 0.3s, letter-spacing 0.3s;
}

.jmd-gem-card:hover .jmd-gem-card__cta {
    gap: 10px;
    letter-spacing: 1.8px;
}

.jmd-gem-card__cta svg {
    transition: transform 0.3s;
}

.jmd-gem-card:hover .jmd-gem-card__cta svg {
    transform: translateX(3px);
}


/* ═══════════════════════════════════════════
   MODAL
   ═══════════════════════════════════════════ */
.jmd-gem-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s;
}

.jmd-gem-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.jmd-gem-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 8, 5, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.jmd-gem-modal__content {
    position: relative;
    z-index: 2;
    background: var(--jmd-bg-white, #fff);
    border-radius: 16px;
    max-width: 600px;
    width: calc(100% - 40px);
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(212, 168, 67, 0.15);
    transform: scale(0.92) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overscroll-behavior: contain;
}

.jmd-gem-modal.is-open .jmd-gem-modal__content {
    transform: scale(1) translateY(0);
}

/* Custom scrollbar inside modal */
.jmd-gem-modal__content::-webkit-scrollbar {
    width: 5px;
}

.jmd-gem-modal__content::-webkit-scrollbar-track {
    background: var(--jmd-bg-cream, #F8F6F2);
}

.jmd-gem-modal__content::-webkit-scrollbar-thumb {
    background: var(--jmd-border-light, #eee9e0);
    border-radius: 3px;
}

/* Close button */
.jmd-gem-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--jmd-bg-cream, #F8F6F2);
    border-radius: 50%;
    font-size: 1.4rem;
    color: var(--jmd-text-body, #444);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, color 0.3s, transform 0.3s;
    z-index: 3;
    line-height: 1;
}

.jmd-gem-modal__close:hover {
    background: var(--jmd-gold, #D4A843);
    color: #fff;
    transform: rotate(90deg);
}

/* Modal Header */
.jmd-gem-modal__header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 32px 32px 0;
}

.jmd-gem-modal__orb {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.5s;
}

.jmd-gem-modal__titles {
    min-width: 0;
}

.jmd-gem-modal__name {
    font-family: var(--jmd-font-body, 'Poppins', sans-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--jmd-text-dark, #1a1a1a);
    margin: 0 0 2px;
    line-height: 1.2;
}

.jmd-gem-modal__alt {
    font-family: var(--jmd-font-body, 'Poppins', sans-serif);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--jmd-text-muted, #888);
    margin: 0;
    font-style: italic;
}

/* Modal Meta */
.jmd-gem-modal__meta {
    padding: 16px 32px 0;
}

.jmd-gem-modal__planet {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--jmd-font-body, 'Poppins', sans-serif);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--jmd-gold-dark, #B8860B);
    background: rgba(212, 168, 67, 0.08);
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

.jmd-gem-modal__planet:empty {
    display: none;
}

.jmd-gem-modal__planet::before {
    content: '☉';
    font-size: 0.9rem;
}

/* Modal Body */
.jmd-gem-modal__body {
    padding: 24px 32px;
    font-family: var(--jmd-font-body, 'Poppins', sans-serif);
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--jmd-text-body, #444);
    line-height: 1.8;
}

.jmd-gem-modal__body p {
    margin: 0 0 16px;
}

.jmd-gem-modal__body p:last-child {
    margin-bottom: 0;
}

/* Modal Footer — WhatsApp CTA */
.jmd-gem-modal__footer {
    padding: 0 32px 32px;
}

.jmd-gem-modal__wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 28px;
    background: #25D366;
    color: #fff;
    font-family: var(--jmd-font-body, 'Poppins', sans-serif);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.jmd-gem-modal__wa-btn:hover {
    background: #20BA5C;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    color: #fff;
}

.jmd-gem-modal__wa-btn:active {
    transform: translateY(0);
}

.jmd-gem-modal__wa-btn svg {
    flex-shrink: 0;
}


/* ═══════════════════════════════════════════
   SCROLL REVEAL (shared with homepage)
   ═══════════════════════════════════════════ */
.jmd-gems-page .jmd-scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.jmd-gems-page .jmd-scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .jmd-gems-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 18px;
    }

    .jmd-gems-category {
        padding: 60px 20px 40px;
    }
}

@media (max-width: 768px) {
    .jmd-gems-hero {
        min-height: 45vh;
        padding: 80px 20px 40px;
    }

    .jmd-gems-hero__nav {
        gap: 10px;
    }

    .jmd-gems-hero__nav-link {
        font-size: 0.7rem;
        padding: 10px 16px;
        letter-spacing: 1px;
    }

    .jmd-gems-whatsapp-cta {
        margin-top: 28px;
        padding: 12px 22px;
        font-size: 0.82rem;
        gap: 10px;
    }

    .jmd-gems-whatsapp-cta__icon {
        width: 32px;
        height: 32px;
    }

    .jmd-gems-whatsapp-cta__icon svg {
        width: 18px;
        height: 18px;
    }

    .jmd-gems-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .jmd-gem-card {
        padding: 24px 16px 18px;
        border-radius: 12px;
    }

    .jmd-gem-card__orb {
        width: 50px;
        height: 50px;
        margin-bottom: 14px;
    }

    .jmd-gem-card__name {
        font-size: 0.88rem;
    }

    .jmd-gem-card__alt {
        font-size: 0.72rem;
    }

    .jmd-gem-card__planet {
        font-size: 0.65rem;
    }

    /* Modal */
    .jmd-gem-modal__content {
        width: calc(100% - 24px);
        max-height: 90vh;
        border-radius: 14px;
    }

    .jmd-gem-modal__header {
        padding: 24px 20px 0;
        gap: 14px;
    }

    .jmd-gem-modal__orb {
        width: 56px;
        height: 56px;
    }

    .jmd-gem-modal__name {
        font-size: 1.2rem;
    }

    .jmd-gem-modal__meta {
        padding: 12px 20px 0;
    }

    .jmd-gem-modal__body {
        padding: 20px;
        font-size: 0.84rem;
    }

    .jmd-gem-modal__footer {
        padding: 0 20px 24px;
    }

    .jmd-gems-category__number {
        font-size: 3.5rem;
        top: -18px;
    }

    .jmd-gems-consult-cta {
        padding: 60px 20px 70px;
    }

    .jmd-gems-consult-cta__icon svg {
        width: 40px;
        height: 40px;
    }

    .jmd-gems-consult-cta__desc {
        font-size: 0.95rem;
        margin-bottom: 28px;
    }

    .jmd-gems-consult-cta__btn {
        padding: 14px 28px;
        font-size: 0.88rem;
    }
}

@media (max-width: 480px) {
    .jmd-gems-whatsapp-cta {
        margin-top: 24px;
        padding: 11px 20px;
        font-size: 0.78rem;
        gap: 8px;
    }

    .jmd-gems-whatsapp-cta__icon {
        width: 30px;
        height: 30px;
    }

    .jmd-gems-whatsapp-cta__icon svg {
        width: 16px;
        height: 16px;
    }

    .jmd-gems-whatsapp-cta__text {
        font-size: 0.8rem;
    }

    .jmd-gems-consult-cta {
        padding: 50px 16px 60px;
    }

    .jmd-gems-consult-cta__icon {
        margin-bottom: 18px;
    }

    .jmd-gems-consult-cta__icon svg {
        width: 36px;
        height: 36px;
    }

    .jmd-gems-consult-cta__title {
        font-size: 1.35rem;
    }

    .jmd-gems-consult-cta__desc {
        font-size: 0.9rem;
        margin-bottom: 24px;
    }

    .jmd-gems-consult-cta__btn {
        padding: 13px 24px;
        font-size: 0.82rem;
        gap: 10px;
    }

    .jmd-gems-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .jmd-gem-card {
        padding: 20px 12px 14px;
    }

    .jmd-gem-card__orb {
        width: 42px;
        height: 42px;
        margin-bottom: 10px;
    }

    .jmd-gem-card__name {
        font-size: 0.82rem;
    }

    .jmd-gem-card__cta {
        font-size: 0.65rem;
    }

    .jmd-gems-hero__title {
        font-size: 1.8rem;
    }
}


/* ─── BODY SCROLL LOCK ─── */
body.jmd-modal-open {
    overflow: hidden;
}