/**
Theme Name: MSJ Astra Child
Author: Brainstorm Force
Description: M Saleem Jewellers — Astra Child Theme with custom Elementor widgets
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: msj-astra-child
Template: astra
*/

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   DESIGN TOKENS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-pale: #F5E6B8;
  --gold-dark: #8B6914;
  --msj-black: #060606;
  --msj-dark: #0D0C0A;
  --msj-dark2: #141210;
  --msj-dark3: #1C1A16;
  --msj-white: #FAF7F0;
  --font-display: 'Cinzel', serif;
  --font-body: 'Cormorant Garamond', serif;
  --font-sans: 'Raleway', sans-serif;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   GLOBAL RESETS FOR MSJ SECTIONS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.msj-section *,
.msj-section *::before,
.msj-section *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.woocommerce-cart .cart-collaterals .cart_totals>h2,
.woocommerce-cart .cart-collaterals .cross-sells>h2,
.woocommerce-page.woocommerce-checkout .woocommerce-order h2.woocommerce-column__title,
.woocommerce-page.woocommerce-checkout .woocommerce-order h2.woocommerce-order-details__title,
.woocommerce.woocommerce-checkout .woocommerce-order h2.woocommerce-column__title,
.woocommerce.woocommerce-checkout .woocommerce-order h2.woocommerce-order-details__title {
  background-color: #141210 !important;
}

body.tax-product_cat {
  background-color: #0D0C0A !important;
}

body.tax-product_cat .ast-container {
  max-width: 100% !important;
  padding: 0px !important;
}

body.tax-product_cat,
body.single-product {
  background-color: #0D0C0A !important;
}

body.tax-product_cat .ast-container,
body.single-product .ast-container {
  max-width: 100% !important;
  padding: 0px !important;
}

body.tax-product_cat #primary,
body.single-product #primary {
  margin: 0px !important;
}

/* The plain /shop/ archive uses body class "woocommerce-shop" (not
"tax-product_cat"), so the full-width override above never applied to
it — the shop page was rendering inside Astra's default 1240px boxed
container with side padding instead of our full-bleed layout. Same
fix, extended to cover the main shop page too. */
body.woocommerce-shop {
  background-color: #0D0C0A !important;
}
body.woocommerce-shop .ast-container {
  max-width: 100% !important;
  padding: 0px !important;
}
body.woocommerce-shop #primary {
  margin: 0px !important;
}

.woocommerce #content .ast-woocommerce-container div.product div.summary,
.woocommerce .ast-woocommerce-container div.product div.summary,
.woocommerce-page #content .ast-woocommerce-container div.product div.summary,
.woocommerce-page .ast-woocommerce-container div.product div.summary {
  width: 100% !important;
}

body.tax-product_cat #primary {
  margin: 0px !important;
}

body #msj-archive-products li.msj-product-card,
.msj-related-products li.msj-product-card {
  opacity: 1 !important;
}

.msj-single-summary-col .single-product-category {
  display: none !important;
}

body .msj-product-card-visual {
  aspect-ratio: 3 / 3.1 !important;
}

body .msj-single-gallery-col .ast-on-card-button.ast-onsale-card {
  display: none !important;
}

body.msj-page {
  background: var(--msj-black);
  color: var(--msj-white);
  overflow-x: hidden;
  cursor: none;
}

#msj-archive-products .msj-product-card {
  opacity: 1 !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CUSTOM CURSOR
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#msj-cursor {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

#msj-cursor-ring {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(201, 168, 76, .7);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: width .4s, height .4s;
}

body .ast-woocommerce-container .woocommerce-breadcrumb {
  display: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PAGE LOADER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#msj-loader {
  position: fixed;
  inset: 0;
  background: var(--msj-black);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transition: opacity .8s ease, visibility .8s ease;
}

#msj-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.msj-loader-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: .35em;
  color: var(--gold);
  opacity: 0;
  animation: msjLoaderFade .8s .3s forwards;
}

.msj-loader-bar-wrap {
  width: 200px;
  height: 1px;
  background: rgba(201, 168, 76, .2);
  overflow: hidden;
}

.msj-loader-bar {
  height: 100%;
  background: var(--gold);
  width: 0;
  animation: msjLoaderProg 1.8s .5s ease forwards;
}

@keyframes msjLoaderFade {
  to {
    opacity: 1
  }
}

@keyframes msjLoaderProg {
  to {
    width: 100%
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SCROLL-REVEAL CLASSES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.sr-up {
  opacity: 0;
  transform: translateY(60px);
}

.sr-left {
  opacity: 0;
  transform: translateX(-70px);
}

.sr-right {
  opacity: 0;
  transform: translateX(70px);
}

.sr-scale {
  opacity: 0;
  transform: scale(.88);
}

.sr-3d {
  opacity: 0;
  transform: perspective(900px) rotateX(18deg) translateY(50px);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SHARED SECTION TYPOGRAPHY
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.msj-section-label {
  font-family: var(--font-sans);
  font-size: .58rem;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.msj-section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.msj-section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: .03em;
  color: var(--msj-white);
  margin-bottom: 1.2rem;
}

.msj-section-title em {
  color: var(--gold);
  font-style: italic;
}

.msj-section-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.95;
  color: rgba(250, 247, 240, .5);
  max-width: 480px;
}

.msj-btn-gold {
  font-family: var(--font-sans);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--msj-black);
  background: var(--gold);
  padding: 1rem 2.5rem;
  text-decoration: none;
  display: inline-block;
  transition: all .35s;
  cursor: none;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.msj-btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
}

.msj-btn-outline {
  font-family: var(--font-sans);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  border: 1px solid rgba(201, 168, 76, .45);
  padding: 1rem 2.5rem;
  text-decoration: none;
  display: inline-block;
  transition: all .35s;
  cursor: none;
}

.msj-btn-outline:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, .07);
}

.msj-gold-divider {
  width: 100%;
  height: 1px;
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, transparent 0%, rgba(201, 168, 76, .28) 20%, rgba(201, 168, 76, .55) 50%, rgba(201, 168, 76, .28) 80%, transparent 100%);
}

.msj-gold-divider-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO WIDGET
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.msj-hero-wrap {
  position: relative;
  height: 120vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--msj-black);
}

.msj-hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.msj-hero-content {
  text-align: center;
  z-index: 10;
  position: relative;
}

.msj-hero-eyebrow {
  font-family: var(--font-sans);
  font-size: .62rem;
  letter-spacing: .55em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(25px);
}

.msj-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 9vw, 9rem);
  font-weight: 400;
  line-height: .92;
  letter-spacing: .04em;
  color: var(--msj-white);
  opacity: 0;
  transform: translateY(40px);
}

.msj-hero-title .gold-line {
  display: block;
  color: var(--gold);
  font-style: italic;
  font-size: clamp(2rem, 5.5vw, 5rem);
}

.msj-hero-divider {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.8rem auto;
  opacity: 0;
}

.msj-hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 300;
  letter-spacing: .15em;
  color: rgba(250, 247, 240, .45);
  opacity: 0;
  transform: translateY(20px);
  margin-bottom: 2.5rem;
}

.msj-hero-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
}

.msj-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: 0;
  z-index: 10;
}

.msj-scroll-indicator span {
  font-family: var(--font-sans);
  font-size: .58rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, .55);
}

.msj-scroll-line {
  width: 1px;
  height: 55px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: msjScrollPulse 2.2s ease-in-out infinite;
}

@keyframes msjScrollPulse {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1
  }

  100% {
    transform: scaleY(1);
    transform-origin: bottom;
    opacity: 0
  }
}

.msj-hero-ring-hint {
  position: absolute;
  bottom: 7rem;
  right: 6rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  opacity: 0;
  animation: msjHintFade 1s 3.5s forwards;
  cursor: none;
}

@keyframes msjHintFade {
  to {
    opacity: 1
  }
}

.msj-hint-box {
  width: 44px;
  height: 34px;
  border: 1px solid rgba(201, 168, 76, .4);
  border-radius: 1px;
  background: linear-gradient(145deg, rgba(28, 20, 8, .8), rgba(10, 8, 4, .9));
  box-shadow: 0 0 15px rgba(201, 168, 76, .08);
  position: relative;
}

.msj-hint-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 11px;
  background: linear-gradient(145deg, rgba(38, 28, 10, .9), rgba(18, 12, 4, .95));
  border-bottom: 1px solid rgba(201, 168, 76, .3);
  border-radius: 1px 1px 0 0;
}

.msj-hint-box::after {
  content: '◆';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(201, 168, 76, .5);
  font-size: .4rem;
  animation: msjHintGlow 2.5s ease-in-out infinite;
}

@keyframes msjHintGlow {

  0%,
  100% {
    color: rgba(201, 168, 76, .3)
  }

  50% {
    color: rgba(201, 168, 76, .8)
  }
}

.msj-hint-label {
  font-family: var(--font-sans);
  font-size: .48rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, .4);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RING REVEAL WIDGET
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#msj-ring-reveal-outer {
  position: relative;
  z-index: 2;
  background: var(--msj-black);
  overflow: hidden;
}

#msj-ring-reveal-outer::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, .04) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(201, 168, 76, .03) 0%, transparent 55%);
}

#msj-ring-reveal-stage {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#msj-ring-box-stage {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#msj-jewel-box {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  perspective: 600px;
  transform-style: preserve-3d;
}

.msj-jbox-body {
  width: 200px;
  height: 90px;
  background: linear-gradient(145deg, #1f1508, #0d0c0a);
  border: 1px solid rgba(201, 168, 76, .45);
  border-radius: 1px;
  box-shadow: 0 0 40px rgba(201, 168, 76, .1), inset 0 0 20px rgba(0, 0, 0, .5);
  position: relative;
}

.msj-jbox-body::before {
  content: '';
  position: absolute;
  width: 55%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: .5;
}

.msj-jbox-body::after {
  content: '◆';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(201, 168, 76, .35);
  font-size: .55rem;
}

.msj-jbox-lid {
  width: 200px;
  height: 55px;
  position: absolute;
  bottom: 90px;
  left: 0;
  background: linear-gradient(145deg, #241b09, #0d0c0a);
  border: 1px solid rgba(201, 168, 76, .55);
  border-radius: 1px 1px 0 0;
  transform-origin: bottom center;
  box-shadow: 0 0 25px rgba(201, 168, 76, .15);
}

.msj-jbox-lid::after {
  content: '◇';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(201, 168, 76, .55);
  font-size: .6rem;
}

.msj-jbox-lid::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  opacity: .3;
}

.msj-jbox-corner {
  position: absolute;
  width: 8px;
  height: 8px;
  border-color: var(--gold);
  border-style: solid;
  opacity: .6;
}

.msj-jbox-corner.tl {
  top: -1px;
  left: -1px;
  border-width: 1.5px 0 0 1.5px
}

.msj-jbox-corner.tr {
  top: -1px;
  right: -1px;
  border-width: 1.5px 1.5px 0 0
}

.msj-jbox-corner.bl {
  bottom: -1px;
  left: -1px;
  border-width: 0 0 1.5px 1.5px
}

.msj-jbox-corner.br {
  bottom: -1px;
  right: -1px;
  border-width: 0 1.5px 1.5px 0
}

#msj-ring-reveal-canvas {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: 270px;
  height: 270px;
  display: block;
  opacity: 0;
  z-index: 3;
  border-radius: 50%;
}

#msj-ring-reveal-details {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%) translateX(70px);
  width: 42%;
  max-width: 480px;
  padding: 2.5rem;
  opacity: 0;
  pointer-events: none;
}

.msj-ring-detail-eyebrow {
  font-family: var(--font-sans);
  font-size: .58rem;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}

.msj-ring-detail-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.msj-ring-detail-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 400;
  color: var(--msj-white);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.msj-ring-detail-title em {
  color: var(--gold);
  font-style: italic;
}

.msj-ring-detail-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(250, 247, 240, .5);
  margin-bottom: 1.8rem;
}

.msj-ring-detail-specs {
  list-style: none;
  border-left: 1px solid rgba(201, 168, 76, .18);
  padding-left: 1.5rem;
  margin-bottom: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.msj-ring-detail-specs li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.msj-ring-detail-specs li span:first-child {
  font-family: var(--font-sans);
  font-size: .56rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(250, 247, 240, .35);
}

.msj-ring-detail-specs li span:last-child {
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--gold-pale);
  font-style: italic;
}

.msj-ring-detail-price-label {
  font-family: var(--font-sans);
  font-size: .55rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, .5);
  margin-bottom: .2rem;
}

.msj-ring-detail-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  letter-spacing: .05em;
}

.msj-ring-detail-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RING SCROLL-VIDEO REVEAL WIDGET
   (pinned section: video scrubs on scroll, then settles into a
   left-video / right-details split — see widget-ring-reveal.php)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.msj-ring-scrollvid-outer {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--msj-black);
}
.msj-ring-scrollvid-stage {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.msj-ring-scrollvid-media {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(-50%);
  overflow: hidden;
  border-radius: 2px;
  will-change: width, height, left;
}
.msj-ring-scrollvid-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.msj-ring-scrollvid-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #000;
  pointer-events: none;
}
.msj-ring-scrollvid-details {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 42%;
  max-width: 520px;
  padding: 2rem;
  opacity: 0;
  transform: translateY(-50%) translateX(60px);
  pointer-events: none;
  will-change: transform, opacity;
}
.msj-ring-scrollvid-details.is-settled { pointer-events: all; }

@media (max-width: 900px) {
  .msj-ring-scrollvid-outer { height: auto; min-height: 0; }
  .msj-ring-scrollvid-stage { display: flex; flex-direction: column; }
  .msj-ring-scrollvid-media {
    position: relative; top: auto; left: auto; transform: none;
    width: 100% !important; height: 70vh !important;
  }
  .msj-ring-scrollvid-details {
    position: relative; top: auto; right: auto; width: 100%; max-width: none;
    transform: none !important; opacity: 1 !important; pointer-events: all;
    padding: 2.5rem 1.5rem;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MARQUEE WIDGET
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.msj-marquee-wrapper {
  position: relative;
  z-index: 3;
  overflow: hidden;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(201, 168, 76, .13);
  border-bottom: 1px solid rgba(201, 168, 76, .13);
  background: rgba(13, 12, 10, .85);
}

.msj-marquee-track {
  display: flex;
  white-space: nowrap;
  animation: msjMarqueeScroll 28s linear infinite;
}

.msj-marquee-item {
  font-family: var(--font-sans);
  font-size: .58rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, .45);
  padding: 0 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.msj-marquee-item::after {
  content: '◆';
  color: var(--gold);
  font-size: .38rem;
}

@keyframes msjMarqueeScroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   COLLECTIONS WIDGET
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.msj-collections-wrap {
  padding: 8rem 0;
  background: var(--msj-dark);
}

.msj-collections-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 5rem;
  padding: 0 2rem;
}

.msj-collections-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
}

.msj-collection-card {
  position: relative;
  overflow: hidden;
  cursor: none;
  transform-style: preserve-3d;
}

.msj-collection-card:nth-child(2) {
  transform: translateY(-40px);
}

.msj-card-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--msj-dark2);
  overflow: hidden;
}

.msj-card-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.msj-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 6, 6, .92) 0%, rgba(6, 6, 6, .25) 55%, transparent 100%);
  transition: opacity .4s;
}

.msj-collection-card:hover .msj-card-overlay {
  opacity: .55;
}

.msj-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  transform: translateY(6px);
  transition: transform .4s;
}

.msj-collection-card:hover .msj-card-content {
  transform: translateY(0);
}

.msj-card-category {
  font-family: var(--font-sans);
  font-size: .52rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .4rem;
}

.msj-card-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--msj-white);
  margin-bottom: .3rem;
  letter-spacing: .05em;
}

.msj-card-urdu {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(201, 168, 76, .65);
  font-style: italic;
  margin-bottom: .8rem;
}

.msj-card-cta {
  font-family: var(--font-sans);
  font-size: .58rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .5rem;
  opacity: 0;
  transition: opacity .3s;
}

.msj-collection-card:hover .msj-card-cta {
  opacity: 1;
}

.msj-card-cta::after {
  content: '→';
}

.msj-card-border-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform .5s;
}

.msj-collection-card:hover .msj-card-border-top {
  transform: scaleX(1);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   UNIVERSE / SCROLL-PIN WIDGET
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#msj-universe-outer {
  position: relative;
  background: var(--msj-black);
  z-index: 2;
  overflow: hidden;
}

#msj-universe-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

#msj-universe-title {
  position: absolute;
  top: 4.5rem;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 5;
  opacity: 0;
  transform: translateY(-15px);
}

#msj-uni-display {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  /* On short-viewport laptops, 100vh isn't tall enough for the centered
     card to clear the "Scroll to Discover" title above it (title has no
     reserved space of its own). This adds extra top padding ONLY when
     the viewport is short enough that the card would otherwise reach
     above ~200px from the top (900px+ tall screens get zero padding,
     so normal/tall laptops and desktops look exactly as before). */
  padding-top: max(0px, calc(850px - 100vh));
}

.msj-uni-card {
  position: absolute;
  width: 300px;
  background: rgba(20, 18, 16, .92);
  border: 1px solid rgba(201, 168, 76, .18);
  opacity: 0;
  transform: scale(.82) translateY(25px);
  pointer-events: none;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(201, 168, 76, .06), 0 20px 50px rgba(0, 0, 0, .5);
}

.msj-uni-card.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: all;
}

.msj-uni-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .6;
}

.msj-uni-card-canvas {
  width: 100%;
  height: 190px;
  display: block;
}

.msj-uni-card-body {
  padding: 1.4rem 1.8rem 1.8rem;
}

.msj-uni-card-cat {
  font-family: var(--font-sans);
  font-size: .5rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .35rem;
}

.msj-uni-card-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--msj-white);
  margin-bottom: .25rem;
  letter-spacing: .04em;
}

.msj-uni-card-desc {
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 300;
  color: rgba(250, 247, 240, .42);
  line-height: 1.7;
  margin-bottom: .9rem;
  font-style: italic;
}

.msj-uni-card-price {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(201, 168, 76, .75);
  font-style: italic;
  margin-bottom: 1rem;
}

.msj-uni-card-gif {
  width: 100%;
  height: 300px !important;
  object-fit: cover;
  display: block;
}

.msj-uni-card-btn {
  font-family: var(--font-sans);
  font-size: .56rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  cursor: none;
  border: none;
  background: none;
  padding: 0;
  transition: gap .3s;
}

.msj-uni-card-btn::after {
  content: '→';
}

.msj-uni-card-btn:hover {
  gap: .8rem;
}

.msj-uni-node {
  position: absolute;
  z-index: 6;
  transform: translate(-50%, -50%);
  cursor: none;
}

.msj-uni-dot-core {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201, 168, 76, .3);
  position: relative;
  z-index: 2;
  transition: background .5s, transform .5s, box-shadow .5s;
  box-shadow: 0 0 6px rgba(201, 168, 76, .15);
}

.msj-uni-dot-ring {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, .12);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: border-color .5s, transform .5s;
}

.msj-uni-node.active .msj-uni-dot-core {
  background: var(--gold);
  transform: scale(1.6);
  box-shadow: 0 0 18px rgba(201, 168, 76, .7), 0 0 36px rgba(201, 168, 76, .25);
}

.msj-uni-node.active .msj-uni-dot-ring {
  border-color: rgba(201, 168, 76, .55);
  transform: translate(-50%, -50%) scale(1.9);
  animation: msjUniRingPulse 2s ease-out infinite;
}

@keyframes msjUniRingPulse {
  0% {
    transform: translate(-50%, -50%) scale(1.9);
    opacity: 1
  }

  100% {
    transform: translate(-50%, -50%) scale(3.5);
    opacity: 0
  }
}

.msj-uni-dot-label {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-sans);
  font-size: .48rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, .35);
  white-space: nowrap;
  transition: color .5s;
}

.msj-uni-node.active .msj-uni-dot-label {
  color: rgba(201, 168, 76, .85);
}

#msj-uni-progress {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .6rem;
  z-index: 10;
  align-items: center;
}

.msj-uni-prog-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(201, 168, 76, .18);
  transition: all .4s ease;
}

.msj-uni-prog-dot.active {
  background: var(--gold);
  width: 20px;
  border-radius: 2px;
}

#msj-uni-scroll-hint {
  position: absolute;
  bottom: 5.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-sans);
  font-size: .53rem;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, .3);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FEATURED PIECE WIDGET
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.msj-featured-wrap {
  padding: 10rem 0;
  background: var(--msj-black);
}

.msj-featured-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.msj-featured-3d {
  position: relative;
  aspect-ratio: 1;
}

#msj-featured-canvas {
  width: 100%;
  height: 100%;
  border-radius: 2px;
  display: block;
}

.msj-featured-frame {
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(201, 168, 76, .18);
  pointer-events: none;
}

.msj-featured-frame::before,
.msj-featured-frame::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
}

.msj-featured-frame::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.msj-featured-frame::after {
  bottom: -1px;
  right: -1px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

.msj-featured-number {
  font-family: var(--font-display);
  font-size: 5.5rem;
  color: rgba(201, 168, 76, .07);
  line-height: 1;
  margin-bottom: -2.2rem;
}

.msj-featured-specs {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-left: 1px solid rgba(201, 168, 76, .18);
  padding-left: 1.5rem;
}

.msj-spec-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.msj-spec-label {
  font-family: var(--font-sans);
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(250, 247, 240, .35);
}

.msj-spec-value {
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--gold-pale);
  font-style: italic;
}

.msj-price-tag {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  letter-spacing: .05em;
  margin: 1.5rem 0;
}

.msj-price-tag span {
  font-size: .9rem;
  color: rgba(201, 168, 76, .55);
  letter-spacing: .12em;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   GENDER COLLECTIONS WIDGET
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.msj-gender-wrap {
  padding: 8rem 0;
  background: var(--msj-dark2);
}

.msj-gender-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
}

.msj-gender-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.msj-gender-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.msj-gender-card {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: none;
}

.msj-gender-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.msj-gender-gif {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}

.msj-gender-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 6, 6, .72) 0%, rgba(6, 6, 6, .2) 100%);
  transition: background .5s;
}

.msj-gender-card:hover .msj-gender-overlay {
  background: linear-gradient(135deg, rgba(6, 6, 6, .86) 0%, rgba(6, 6, 6, .42) 100%);
}

.msj-gender-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.msj-gender-icon {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: .4rem;
  display: block;
}

.msj-gender-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: .1em;
  color: var(--msj-white);
  margin-bottom: .3rem;
}

.msj-gender-sub {
  font-family: var(--font-sans);
  font-size: .58rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, .65);
  margin-bottom: 1.4rem;
  display: block;
}

.msj-gender-line {
  width: 0;
  height: 1px;
  background: var(--gold);
  margin: .7rem auto;
  transition: width .5s;
}

.msj-gender-card:hover .msj-gender-line {
  width: 55px;
}

.msj-gender-btn {
  font-family: var(--font-sans);
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, .4);
  padding: .7rem 2rem;
  text-decoration: none;
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  transition: all .4s;
  cursor: none;
  background: rgba(6, 6, 6, .5);
}

.msj-gender-card:hover .msj-gender-btn {
  opacity: 1;
  transform: translateY(0);
}

.msj-gender-btn:hover {
  background: var(--gold);
  color: var(--msj-black);
}

.msj-gender-count {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-sans);
  font-size: .52rem;
  letter-spacing: .2em;
  color: rgba(201, 168, 76, .45);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ABOUT WIDGET
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.msj-about-wrap {
  padding: 7rem 0;
  background: var(--msj-dark);
}

.msj-about-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

.msj-about-quote {
  font-family: var(--font-body);
  font-size: 1.45rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: rgba(250, 247, 240, .68);
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

.msj-about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.msj-stat {
  border-top: 1px solid rgba(201, 168, 76, .18);
  padding-top: 1rem;
}

.msj-stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.msj-stat-label {
  font-family: var(--font-sans);
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(250, 247, 240, .35);
  margin-top: .3rem;
}

.msj-about-visual {
  position: relative;
}

#msj-about-canvas {
  width: 100%;
  aspect-ratio: 4/5;
  display: block;
  border-radius: 2px;
}

.msj-about-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  width: 96px;
  height: 96px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: msjRotateBadge 20s linear infinite;
}

.msj-badge-year {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--msj-black);
  font-weight: 600;
  line-height: 1;
}

.msj-badge-text {
  font-family: var(--font-sans);
  font-size: .42rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(6, 6, 6, .7);
}

@keyframes msjRotateBadge {
  to {
    transform: rotate(360deg)
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TESTIMONIALS WIDGET
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.msj-testimonials-wrap {
  padding: 8rem 0;
  background: var(--msj-black);
}

.msj-testimonials-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 4rem;
}

.msj-testimonials-header {
  text-align: center;
  max-width: 500px;
  margin: 0 auto 4rem;
}

.msj-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.msj-testimonial-card {
  background: var(--msj-dark3);
  border: 1px solid rgba(201, 168, 76, .09);
  padding: 2.5rem;
  position: relative;
  transition: border-color .35s, transform .35s;
  cursor: none;
}

.msj-testimonial-card:hover {
  border-color: rgba(201, 168, 76, .32);
  transform: translateY(-5px);
}

.msj-testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(201, 168, 76, .07);
  line-height: 1;
}

.msj-testimonial-stars {
  color: var(--gold);
  font-size: .68rem;
  letter-spacing: .15em;
  margin-bottom: 1rem;
}

.msj-testimonial-text {
  font-family: var(--font-body);
  font-size: .98rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.85;
  color: rgba(250, 247, 240, .6);
  margin-bottom: 1.5rem;
}

.msj-testimonial-author {
  font-family: var(--font-sans);
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}

.msj-testimonial-city {
  font-family: var(--font-sans);
  font-size: .53rem;
  letter-spacing: .1em;
  color: rgba(250, 247, 240, .28);
  margin-top: .2rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONTACT WIDGET
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.msj-contact-wrap {
  padding: 8rem 0;
  background: var(--msj-dark2);
  text-align: center;
}

.msj-contact-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 2rem;
}

.msj-contact-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: #25D366;
  color: #fff;
  font-family: var(--font-sans);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 2px;
  transition: all .3s;
  cursor: none;
  margin-top: 2.5rem;
}

.msj-contact-whatsapp:hover {
  background: #1FB959;
  transform: translateY(-2px);
}

.msj-contact-info {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid rgba(201, 168, 76, .1);
  padding-top: 2rem;
}

.msj-contact-item-label {
  font-family: var(--font-sans);
  font-size: .53rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, .55);
  margin-bottom: .5rem;
}

.msj-contact-item-value {
  font-family: var(--font-body);
  font-size: .95rem;
  color: rgba(250, 247, 240, .65);
  font-style: italic;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER WIDGET
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.msj-footer-wrap {
  background: var(--msj-black);
  border-top: 1px solid rgba(201, 168, 76, .1);
  padding: 3rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.msj-footer-logo {
  font-family: var(--font-display);
  font-size: .95rem;
  letter-spacing: .2em;
  color: var(--gold);
}

.msj-footer-copy {
  font-family: var(--font-sans);
  font-size: .58rem;
  letter-spacing: .12em;
  color: rgba(250, 247, 240, .18);
}

.msj-footer-social {
  display: flex;
  gap: 1.5rem;
}

.msj-footer-social a {
  font-family: var(--font-sans);
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(250, 247, 240, .28);
  text-decoration: none;
  transition: color .3s;
  cursor: none;
}

.msj-footer-social a:hover {
  color: var(--gold);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAV (Elementor Global Header)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.msj-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 600;
  padding: 1.8rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .5s, padding .4s, border-color .5s;
}

.msj-nav.scrolled {
  background: rgba(6, 6, 6, .94);
  backdrop-filter: blur(16px);
  padding: 1rem 4rem;
  border-bottom: 1px solid rgba(201, 168, 76, .18);
}

.msj-nav-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: .28em;
  color: var(--gold);
  text-transform: uppercase;
}

.msj-nav-logo span {
  color: var(--msj-white);
}

.msj-nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.msj-nav-links a {
  font-family: var(--font-sans);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(250, 247, 240, .65);
  text-decoration: none;
  transition: color .3s;
  position: relative;
}

.msj-nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .35s;
}

.msj-nav-links > li > a:hover {
  color: var(--gold);
}

.msj-nav-links > li > a:hover::after {
  width: 100%;
}

.msj-nav-cta {
  font-family: var(--font-sans);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, .7);
  padding: .6rem 1.6rem;
  text-decoration: none;
  transition: all .3s;
  cursor: none;
}

.msj-nav-cta:hover {
  background: var(--gold);
  color: var(--msj-black);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media(max-width:1024px) {
  .msj-collections-grid {
    grid-template-columns: 1fr;
    padding: 0 2rem;
  }

  .msj-collection-card:nth-child(2) {
    transform: none;
  }

  .msj-featured-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 2rem;
  }

  .msj-gender-grid {
    grid-template-columns: 1fr;
  }

  .msj-about-inner {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding: 0 2rem;
  }

  .msj-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .msj-contact-info {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .msj-footer-wrap {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    padding: 2rem;
  }

  .msj-gender-inner {
    padding: 0 2rem;
  }

  #msj-ring-reveal-details {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
  }

  #msj-ring-box-stage {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 0 auto 2rem;
  }

  #msj-ring-reveal-stage {
    flex-direction: column;
    height: auto;
    padding: 4rem 1rem;
  }

  .msj-nav {
    padding: 1.5rem 2rem;
  }

  .msj-nav.scrolled {
    padding: 1rem 2rem;
  }
}

@media(max-width:768px) {
  .msj-hero-title {
    font-size: 3rem;
  }

  .msj-hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .msj-about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .msj-hero-ring-hint {
    display: none;
  }
}

/* ── Real site footer isn't using our msj_footer widget — it was built
as plain Elementor containers (logo / copyright / social links) inside
the site-wide footer template, which stay flex-direction:row with no
wrap at every width, including mobile. On a real phone this crams the
logo, the full copyright sentence, and 3 social links onto one
unwrapping row (overflow / illegible text). Stack them on tablet and
below, matching the same layout our custom footer widget already uses
elsewhere. Scoped to the top-level flex container inside the footer
landmark (structural, not a fragile per-element Elementor ID) so it
keeps working even if the footer's content is edited later. */
@media (max-width: 1024px) {
  footer.elementor-location-footer .e-con.e-parent {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 1.5rem !important;
    padding: 2rem !important;
  }
  footer.elementor-location-footer .e-con.e-child {
    justify-content: center !important;
    flex-wrap: wrap !important;
  }
}

/* ===== Global horizontal-scroll fix (html/body) ===== */
html {
  overflow-x: hidden !important;
  max-width: 100%;
}
body {
  max-width: 100%;
  overflow-x: hidden;
}

/* ===== Button text-decoration fix (Astra entry-content link underline override) ===== */
a[class*="msj-"] {
  text-decoration: none !important;
}
a[class*="msj-"]:hover,
a[class*="msj-"]:focus,
a[class*="msj-"]:visited {
  text-decoration: none !important;
}

/* ===== Loader mobile overflow fix ===== */
#msj-loader {
  overflow: hidden;
  max-width: 100vw;
  box-sizing: border-box;
}
.msj-loader-logo {
  max-width: 85vw;
  text-align: center;
  overflow-wrap: break-word;
  box-sizing: border-box;
}
@media (max-width: 480px) {
  .msj-loader-logo {
    font-size: 1.15rem;
    letter-spacing: .2em;
  }
  .msj-loader-bar-wrap {
    width: 160px;
  }
}


/* ===== Universe/Scroll-to-Discover cards: smaller on mobile ===== */
@media (max-width: 768px) {
  .msj-uni-card {
    width: min(78vw, 260px);
  }
  .msj-uni-card-canvas {
    height: 160px;
  }
  .msj-uni-card-body {
    padding: 1.1rem 1.3rem 1.4rem;
  }
  .msj-uni-card-name {
    font-size: 1.2rem;
  }
  .msj-uni-card-desc {
    font-size: .8rem;
    margin-bottom: .7rem;
  }
  .msj-uni-card-price {
    font-size: .95rem;
    margin-bottom: .7rem;
  }
}

@media (max-width: 480px) {
  .msj-uni-card {
    width: min(75vw, 220px);
  }
  .msj-uni-card-canvas {
    height: 125px;
  }
  .msj-uni-card-body {
    padding: .9rem 1.1rem 1.2rem;
  }
  .msj-uni-card-cat {
    font-size: .42rem;
    letter-spacing: .3em;
  }
  .msj-uni-card-name {
    font-size: 1.05rem;
  }
  .msj-uni-card-desc {
    font-size: .74rem;
    line-height: 1.5;
    margin-bottom: .55rem;
  }
  .msj-uni-card-price {
    font-size: .85rem;
    margin-bottom: .55rem;
  }
}
