:root {
  --ink: #24201f;
  --muted: #6f6965;
  --gold: #c99713;
  --gold-dark: #a77b08;
  --cream: #f8f3eb;
  --blush: #ead7cc;
  --line: #ece7df;
  --footer: #111111;
  --max: 1180px;
  --serif: sans-serif, Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--serif);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 98px;
  display: flex;
  align-items: center;
  gap: clamp(24px, 6vw, 120px);
  padding: 0 clamp(20px, 4vw, 58px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(201, 151, 19, 0.12);
  backdrop-filter: blur(10px);
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 0;
}
.brand img {
  width: clamp(118px, 12vw, 172px);
  height: auto;
  max-height: 92px;
  object-fit: contain;
}
.site-nav {
  display: flex;
  gap: clamp(28px, 5vw, 82px);
  align-items: center;
  font: 700 14px/1 var(--sans);
  text-transform: uppercase;
}
.site-nav li {
  list-style: none;
}
.site-nav a {
  position: relative;
  padding: 40px 0;
  transition: color 220ms ease;
}
.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
  content: "";
}
.site-nav a:hover,
.site-nav a.active,
.site-nav .current-menu-item > a,
.site-nav .current_page_item > a { color: var(--gold); }
.site-nav a:hover::after,
.site-nav a.active::after,
.site-nav .current-menu-item > a::after,
.site-nav .current_page_item > a::after { transform: scaleX(1); }
.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 220ms ease, opacity 220ms ease;
}

.hero {
  position: relative;
  min-height: 605px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background-repeat: no-repeat;
}
.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(0,0,0,.26), rgba(0,0,0,.04));
  content: "";
}
.hero-home {
  background-image: var(--johary-main-banner);
  background-size: cover;
  background-position: center;
}
.promo-hero {
  min-height: 740px;
  background-image: var(--johary-parallax-banner);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero-content {
  width: min(520px, 82vw);
  margin-left: max(9vw, 80px);
  color: #fff;
}
.hero-content.align-right {
  margin-left: auto;
  margin-right: max(12vw, 92px);
}
.eyebrow {
  margin: 0 0 8px;
  color: #f6e7cc;
  font: 700 13px/1 var(--sans);
  text-transform: uppercase;
  letter-spacing: .12em;
}
.hero h1,
.hero h2 {
  margin: 0 0 24px;
  max-width: 520px;
  font-size: clamp(39px, 4.4vw, 64px);
  line-height: .98;
  letter-spacing: 0;
}
.hero p {
  margin: 0 0 28px;
  font: 700 13px/1.8 var(--serif);
}
.hero-arrow {
  position: absolute;
  top: 50%;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: rgba(255,255,255,.72);
  background: rgba(80, 56, 42, .2);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 220ms ease, color 220ms ease;
}
.hero-arrow:hover { background: rgba(201,151,19,.7); color: #fff; }
.hero-arrow.prev { left: 32px; }
.hero-arrow.next { right: 32px; }

.btn {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border: 0;
  font: 800 12px/1 var(--sans);
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(67, 45, 20, .16); }
.btn-light { color: var(--ink); background: #fff; }
.btn-gold { color: #fff; background: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); }

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}
.section-title {
  margin: 0 0 28px;
  font-size: 28px;
  line-height: 1.1;
}
.section-title.centered { text-align: center; margin-bottom: 48px; }
.categories { padding-bottom: 56px; }
.category-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 28px;
  align-items: start;
}
.category-item {
  display: grid;
  justify-items: center;
  gap: 12px;
  font-size: 16px;
  transition: color 220ms ease, transform 220ms ease;
}
.category-item span {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border-radius: 50%;
  color: var(--gold);
  background: #f7f2e8;
  font-size: 39px;
  transition: background 220ms ease, transform 220ms ease;
}
.category-item:hover { color: var(--gold); transform: translateY(-2px); }
.category-item:hover span { background: #f2e3c8; transform: scale(1.04); }

.product-grid {
  display: grid;
  gap: 34px 30px;
}
.compact-grid { grid-template-columns: repeat(5, 1fr); }
.shop-grid { grid-template-columns: repeat(3, 1fr); gap: 42px 28px; }
.product-card {
  position: relative;
  min-width: 0;
}
.product-media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  width: 100%;
  background-color: #f7f7f7;
  background-image: none;
  background-repeat: no-repeat;
  background-size: 1100px auto;
  transition: transform 260ms ease, box-shadow 260ms ease, filter 260ms ease;
  overflow: hidden;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 280ms ease, filter 280ms ease;
}
.product-card:hover .product-media {
  transform: translateY(-4px) scale(1.018);
  box-shadow: 0 18px 40px rgba(55, 43, 31, .12);
  filter: saturate(1.04);
}
.product-card:hover .product-media img {
  transform: scale(1.045);
}
.product-card h3 {
  margin: 16px 0 5px;
  color: #3d3937;
  font-size: 15px;
  line-height: 1.35;
}
.product-card h3 a:hover { color: var(--gold); }
.product-inquiry-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--gold);
  font: 800 12px/1 var(--sans);
  text-transform: uppercase;
}
.product-inquiry-link:hover { color: var(--ink); }
.stars {
  color: #f5a400;
  font: 15px/1 var(--sans);
  letter-spacing: 0;
}
.price {
  margin: 7px 0 0;
  font: 700 18px/1.2 var(--serif);
}
del { color: #aaa; margin-right: 6px; }
.badge {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--gold);
  font: 700 13px/1 var(--sans);
}
.countdown {
  position: absolute;
  left: 50%;
  top: calc(100% - 120px);
  z-index: 2;
  padding: 8px 12px;
  border-radius: 3px;
  color: #d05e4f;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.09);
  font: 700 12px/1 var(--sans);
  white-space: nowrap;
  transform: translateX(-50%);
}
.select-options {
  position: absolute;
  left: 12px;
  right: 12px;
  top: calc(100% - 138px);
  z-index: 3;
  display: grid;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--gold);
  font: 800 12px/1 var(--sans);
  text-transform: uppercase;
  opacity: .95;
  transition: background 220ms ease;
}
.select-options:hover { background: var(--gold-dark); }

.page-banner {
  min-height: 205px;
  display: grid;
  place-items: center;
  align-content: center;
  background: #e7d3c5 var(--johary-breadcrumb-banner) no-repeat center / cover;
  text-align: center;
}
.page-banner p { margin: 0; font-weight: 700; }
.page-banner a:hover { color: var(--gold); }
.page-banner h1 {
  margin: 5px 0 0;
  font-size: 35px;
  line-height: 1;
}
.shop-banner {
  background-image: var(--johary-breadcrumb-banner);
  background-size: cover;
  background-position: center;
}
.detail-banner {
  background-image: var(--johary-breadcrumb-banner);
  background-size: cover;
  background-position: center;
}
.shop-section { padding-top: 48px; text-align: center; }
.shop-section .product-card { text-align: left; }
.shop-grid .product-media { background-image: none; }
.hidden-product.is-hidden { display: none; }
.load-more { margin-top: 42px; }

.product-detail {
  display: grid;
  grid-template-columns: minmax(340px, 1.05fr) minmax(360px, .95fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: start;
  padding-top: 40px;
}
.gallery-main {
  margin: 0;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f7f7f7;
  box-shadow: inset 0 0 0 1px #f0ece6;
}
.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 180ms ease, transform 260ms ease;
}
.gallery-main:hover .gallery-image {
  transform: scale(1.025);
}
.thumb-row {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.thumb {
  width: 78px;
  aspect-ratio: 1;
  padding: 0;
  border: 2px solid transparent;
  background: #f7f7f7;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 220ms ease, transform 220ms ease;
}
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.thumb:hover,
.thumb.active { border-color: var(--gold); transform: translateY(-2px); }
.product-summary {
  position: relative;
  padding-top: 54px;
}
.detail-discount { top: 22px; left: 0; }
.brand-line { margin: 0 0 4px; color: var(--muted); font-size: 20px; }
.brand-line a { color: var(--gold); font-weight: 700; }
.product-summary h1 {
  margin: 0 0 10px;
  font-size: clamp(31px, 3vw, 45px);
  line-height: 1.1;
}
.rating-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 36px;
}
.rating-line a { color: var(--gold); font-size: 18px; }
.product-meta-line {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}
.description {
  max-width: 660px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}
.stock {
  display: inline-block;
  margin-bottom: 24px;
  padding: 7px 16px;
  border-radius: 5px;
  color: #278339;
  background: #dff4df;
  font-size: 12px;
}
.enquire {
  display: flex;
  width: 100%;
  height: 48px;
  color: #fff;
  background: var(--gold);
  font-size: 18px;
  letter-spacing: .04em;
}
.enquire:hover { background: #111; }
.product-actions {
  display: grid;
  gap: 14px;
}
.whatsapp-btn {
  background: #1f9d55;
}
.whatsapp-btn:hover {
  background: #111;
}
.page-content {
  font-size: 18px;
  color: var(--muted);
}
.page-content h1,
.page-content h2,
.page-content h3 {
  color: var(--ink);
}
.elementor-page-content {
  width: 100%;
}
.nav-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 48px;
}
.nav-links a,
.nav-links span {
  display: grid;
  min-width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--ink);
}
.nav-links .current,
.nav-links a:hover {
  color: #fff;
  background: var(--gold);
  border-color: var(--gold);
}
.service-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.service-list li { margin: 12px 0; }
.service-list li::before {
  color: #69706d;
  margin-right: 10px;
  content: "◆";
}

.site-footer {
  position: relative;
  color: #aaa;
  background: var(--footer);
}
.footer-main {
  width: min(1260px, calc(100% - 44px));
  margin: 0 auto;
  padding: 88px 0 76px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.35fr 1.25fr;
  gap: 68px;
}
.footer-main h2 {
  margin: 0 0 23px;
  color: #fff;
  font-size: 22px;
}
.footer-main p,
.footer-main a {
  display: block;
  margin: 0 0 12px;
  color: #aaa;
  font-size: 17px;
  line-height: 1.65;
}
.footer-main li {
  list-style: none;
}
.footer-main a:hover { color: var(--gold); }
.footer-bottom {
  min-height: 96px;
  border-top: 1px solid #2b2b2b;
  width: min(1260px, calc(100% - 44px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 24px;
  align-items: center;
}
.footer-bottom p {
  margin: 0;
  text-align: center;
  font-weight: 700;
}
.socials,
.payments {
  display: flex;
  gap: 10px;
  align-items: center;
}
.socials a {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: #111;
  background: #fff;
  font: 800 14px/1 var(--sans);
  transition: transform 220ms ease, background 220ms ease;
}
.socials a:hover { transform: translateY(-2px); background: var(--gold); color: #fff; }
.payments { justify-content: flex-end; }
.payments span {
  padding: 3px 8px;
  border-radius: 2px;
  color: #0d5191;
  background: #fff;
  font: 800 10px/1 var(--sans);
}
.back-top {
  position: fixed;
  right: 24px;
  bottom: 22px;
  z-index: 12;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--gold);
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
}

.media-blue-earrings { background-position: -92px -263px; }
.media-circle-pendant { background-position: -418px -263px; }
.media-silver-ring { background-position: -744px -263px; }
.media-pink-necklace { background-position: -92px -687px; }
.media-teardrop { background-position: -418px -687px; }
.media-blue-dangle { background-position: -744px -687px; }
.media-erina { background-position: -92px -1088px; }
.media-blue-ring { background-position: -418px -1088px; }
.media-round-pendant { background-position: -744px -1088px; }
.media-rhodium { background-position: -92px -1490px; }
.media-heart-pendant { background-position: -418px -1490px; }
.media-hamsa { background-position: -744px -1490px; }
.media-pink-pendant { background-position: -92px -1886px; }
.media-lohan { background-position: -418px -1886px; }
.media-ring-rose { background-position: -744px -1886px; }
.media-long-earrings { background-position: -92px -2284px; }
.media-ring-rose-alt { background-position: -418px -2284px; }
.media-flower-pendant { background-position: -744px -2284px; }
.media-diamond-band { background-position: -744px -263px; }

@media (max-width: 1020px) {
  .site-header { height: 78px; gap: 24px; }
  .site-nav { gap: 30px; }
  .hero-home { background-position: 58% center; }
  .promo-hero { min-height: 560px; background-position: center; background-attachment: scroll; }
  .hero-content,
  .hero-content.align-right { margin-left: 7vw; margin-right: 7vw; }
  .category-grid { grid-template-columns: repeat(4, 1fr); }
  .compact-grid { grid-template-columns: repeat(3, 1fr); }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { grid-template-columns: 1fr; justify-items: center; padding: 24px 0; }
  .payments { justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 720px) {
  .site-header { padding: 0 18px; }
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    display: grid;
    gap: 0;
    padding: 10px 20px 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 35px rgba(0,0,0,.08);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 240ms ease, opacity 240ms ease;
  }
  .site-header.nav-open .site-nav { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav a { padding: 17px 0; }
  .site-nav a::after { bottom: 9px; right: auto; width: 44px; }
  .hero { min-height: 520px; background-size: cover; }
  .hero-home { background-position: 58% center; }
  .promo-hero { background-position: 45% center; }
  .hero::before { background: rgba(0,0,0,.32); }
  .hero-content { width: calc(100% - 44px); margin-left: 22px; }
  .hero h1, .hero h2 { font-size: 38px; }
  .hero-arrow { display: none; }
  .section { width: min(100% - 28px, var(--max)); padding: 56px 0; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .compact-grid,
  .shop-grid { grid-template-columns: 1fr; }
  .product-media { max-width: 360px; margin-inline: auto; }
  .product-card h3,
  .product-card .stars,
  .product-card .price { max-width: 360px; margin-left: auto; margin-right: auto; }
  .page-banner { min-height: 155px; background-size: 980px auto; background-position: center -67px; padding: 0 18px; }
  .shop-banner { background-size: cover; background-position: center; }
  .detail-banner { background-size: cover; background-position: center; }
  .product-detail { width: calc(100% - 28px); padding-top: 28px; }
  .gallery-main { max-width: none; }
  .description, .service-list, .brand-line { font-size: 17px; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; padding: 56px 0; }
}
