/* Ranjitham Jewellers FSE — utility & aesthetic layer */
:root {
  --rj-emerald: #063A3A;
  --rj-emerald-dark: #042424;
  --rj-emerald-darker: #021818;
  --rj-gold: #D4AF37;
  --rj-gold-soft: #E6C766;
}

body { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

/* Gold gradient text */
.rj-gold-text {
  background: linear-gradient(135deg, #E6C766 0%, #D4AF37 45%, #B8912A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-style: italic;
}

/* Glass emerald surface */
.rj-glass {
  background: rgba(6, 58, 58, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
}

/* Gold border card */
.rj-gold-border {
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 1.25rem;
  overflow: hidden;
}

/* Hover lift */
.rj-hover-lift { transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s ease; }
.rj-hover-lift:hover { transform: translateY(-6px); box-shadow: 0 25px 60px -20px rgba(212,175,55,.25); }

/* Image zoom wrapper */
.rj-zoom img { transition: transform .8s ease; }
.rj-zoom:hover img { transform: scale(1.08); }

/* Eyebrow label */
.rj-eyebrow {
  text-transform: uppercase !important;
  letter-spacing: .35em !important;
  font-size: .72rem !important;
  color: var(--rj-gold) !important;
  font-weight: 500 !important;
}

/* Section spacing helpers */
.rj-section { padding-block: clamp(4rem, 10vw, 8rem) !important; padding-inline: 1.5rem !important; }
.rj-section-dark { background: var(--rj-emerald-dark) !important; }
.rj-section-darker { background: var(--rj-emerald-darker) !important; }

/* Hero */
.rj-hero { min-height: 92vh; }

/* Card wrappers used inside collections/why/testimonials */
.rj-card {
  background: rgba(6, 58, 58, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  height: 100%;
  transition: transform .5s ease, box-shadow .5s ease;
}
.rj-card:hover { transform: translateY(-6px); box-shadow: 0 25px 60px -20px rgba(212,175,55,.25); }

.rj-collection-card { padding: 0 !important; overflow: hidden; }
.rj-collection-card img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; transition: transform .8s ease; }
.rj-collection-card:hover img { transform: scale(1.08); }
.rj-collection-card .rj-card-body { padding: 1.25rem 1.25rem 1.5rem; }

.rj-muted { color: rgba(255,255,255,0.72) !important; }
.rj-quote { color: rgba(255,255,255,0.85) !important; font-style: italic; line-height: 1.7; }
.rj-stars { color: var(--rj-gold) !important; letter-spacing: 0.1em; }
.rj-city { color: var(--rj-gold) !important; text-transform: uppercase; letter-spacing: 0.25em; font-size: 0.72rem; }

.rj-badge {
  background: rgba(6, 58, 58, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  text-align: center;
  color: #fff;
  font-size: 0.9rem;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
}
.rj-badge-icon { display: inline-flex; color: var(--rj-gold); }
.rj-badge-icon svg { width: 20px; height: 20px; display: block; }

.rj-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.35);
  color: var(--rj-gold);
  margin: 0 0 1rem;
}
.rj-icon svg { width: 22px; height: 22px; display: block; }

/* Check list */
.rj-check-list { list-style: none !important; padding: 0 !important; margin: 0; }
.rj-check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin: 0.5rem 0;
  line-height: 1.55;
}
.rj-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 1.1rem;
  height: 1.1rem;
  background-color: var(--rj-gold);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6 9 17l-5-5'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6 9 17l-5-5'/></svg>") center/contain no-repeat;
}

/* Remove underlines from all inline links inside content sections/cards */
.rj-section a,
.rj-card a,
.rj-badge a,
.rj-footer a,
.rj-header a,
.rj-muted a,
.rj-footer-text a,
.rj-footer-list a,
.wp-block-button__link { text-decoration: none !important; }
.rj-section a:hover,
.rj-card a:hover,
.rj-footer a:hover,
.rj-muted a:hover { text-decoration: none !important; }

.rj-map-wrap { border: 1px solid rgba(212,175,55,0.35); border-radius: 1.25rem; overflow: hidden; }
.rj-map-wrap iframe { display: block; width: 100%; min-height: 420px; border: 0; }

/* Buttons — outline variant */
.wp-block-button.is-style-rj-outline .wp-block-button__link {
  background: transparent !important;
  color: #fff !important;
  border: 1px solid rgba(212,175,55,.6);
}
.wp-block-button.is-style-rj-outline .wp-block-button__link:hover {
  background: rgba(212,175,55,.12) !important;
}

/* Navigation gold hover */
.wp-block-navigation a:hover { color: var(--rj-gold) !important; }

/* ---------- Header ---------- */
.rj-header {
  background: #021818;
  border-bottom: 1px solid rgba(212,175,55,0.25);
  padding: 1.25rem 1.5rem;
}
.rj-header .wp-block-site-title a {
  font-family: var(--wp--preset--font-family--display, 'Playfair Display', serif);
  font-weight: 700;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--rj-gold, #D4AF37);
  text-decoration: none;
}
.rj-header .wp-block-navigation a {
  color: #fff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}

/* ---------- Footer ---------- */
.rj-footer {
  background: #021818;
  border-top: 1px solid rgba(212,175,55,0.2);
  padding: 4rem 1.5rem 2rem;
}
.rj-footer .wp-block-site-title a {
  font-family: var(--wp--preset--font-family--display, 'Playfair Display', serif);
  font-size: 1.75rem;
  color: var(--rj-gold, #D4AF37);
  text-decoration: none;
}
.rj-footer-tagline {
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}
.rj-footer-text {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  line-height: 1.75;
}
.rj-footer-text a { color: var(--rj-gold, #D4AF37); text-decoration: none; }
.rj-footer-heading {
  color: var(--rj-gold, #D4AF37);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
}
.rj-footer-list { list-style: none; padding: 0; margin: 0; }
.rj-footer-list li { margin: 0.4rem 0; }
.rj-footer-list a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  text-decoration: none;
}
.rj-footer-list a:hover { color: var(--rj-gold, #D4AF37); }
.rj-socials { margin-top: 1.25rem; }
.rj-socials .wp-block-social-link { background: transparent; }
.rj-socials svg { fill: var(--rj-gold, #D4AF37); }
.rj-footer-sep {
  border: 0;
  border-top: 1px solid rgba(212,175,55,0.15);
  margin: 3rem 0 1.5rem;
}
.rj-footer-copy {
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  margin: 0;
}
