/* =================================================
   FMV GOLD — GLOBAL STYLESHEET
   css/global.css
   ================================================= */

/* -------------------------------------------------
   1. DESIGN TOKENS
   ------------------------------------------------- */
:root {
  --fmv-gold: #C5A028;
  --fmv-gold-dark: #A68720;
  --fmv-gold-text: #7A5C00;
  --fmv-gold-light: rgba(197, 160, 40, 0.1);
  --fmv-gold-glow: rgba(197, 160, 40, 0.03);
  --fmv-platinum: #F2F3F4;
  --fmv-dark: #111827;
  --fmv-text: #4B5563;
  --fmv-muted: #5C6370;
  --fmv-bg: #FFFFFF;
  --fmv-surface: #F9FAFB;
  --fmv-border: #E5E7EB;
  --fmv-white: #FFFFFF;
  --bs-btn-border-radius: 12px;

  --font-heading: 'Cinzel', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --shadow-premium: 0 20px 50px rgba(0, 0, 0, 0.05);
  --shadow-gold: 0 10px 30px rgba(197, 160, 40, 0.15);

  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(197, 160, 40, 0.2);
}


/* -------------------------------------------------
   2. BASE / RESET
   ------------------------------------------------- */
body {
  font-family: var(--font-body);
  background-color: var(--fmv-bg);
  color: var(--fmv-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

main {
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--fmv-dark);
  font-weight: 700;
}


/* -------------------------------------------------
   3. ANIMATIONS
   ------------------------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-delay-1 { transition-delay: 0.1s; }
.fade-delay-2 { transition-delay: 0.2s; }
.fade-delay-3 { transition-delay: 0.3s; }

.float-anim {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-15px); }
}


/* -------------------------------------------------
   4. NAVBAR
   ------------------------------------------------- */
.navbar-fmv {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--fmv-border);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-brand-fmv {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-container {
  width: 40px;
  height: 40px;
  background: var(--fmv-gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: var(--shadow-gold);
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--fmv-dark);
  letter-spacing: 0.05em;
}

.logo-text span {
  color: var(--fmv-gold-text);
  font-weight: 400;
}

.nav-link-fmv {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--fmv-dark) !important;
  margin: 0 10px;
  transition: color 0.2s;
}

.nav-link-fmv:hover {
  color: var(--fmv-gold) !important;
}


/* -------------------------------------------------
   5. BUTTONS
   ------------------------------------------------- */
.btn-gold {
  background: linear-gradient(135deg, #EEDC82 0%, var(--fmv-gold) 50%, var(--fmv-gold-dark) 100%);
  color: var(--fmv-dark) !important;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 12px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(197, 160, 40, 0.25);
}

.btn-gold:focus,
.btn-gold:focus-visible {
  outline: 3px solid var(--fmv-gold);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(197, 160, 40, 0.25);
}


/* -------------------------------------------------
   6. UTILITY CLASSES
   ------------------------------------------------- */
.text-gold       { color: var(--fmv-gold); }
.text-gold-dark  { color: var(--fmv-gold-text); }
.text-xs         { font-size: 0.7rem; }

/* Footer input group radius helpers */
.input-left-radius  { border-radius: 12px 0 0 12px; }
.input-right-radius { border-radius: 0 12px 12px 0; }


/* -------------------------------------------------
   7. FOOTER
   ------------------------------------------------- */
.footer-premium {
  background: var(--fmv-bg);
  border-top: 1px solid var(--fmv-border);
  padding: 80px 0 40px;
}

.footer-col-label {
  font-size: 0.8rem;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fmv-muted);
  margin-bottom: 1.5rem;
}

.footer-link {
  display: block;
  color: var(--fmv-text);
  text-decoration: none;
  margin-bottom: 0.8rem;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--fmv-gold);
}


/* -------------------------------------------------
   8. SHARED SECTION COMPONENTS
   ------------------------------------------------- */

/* Testimonials shared label */
.testimonials-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fmv-gold-text);
  margin-bottom: 1rem;
}

.testimonial-card {
  background: var(--fmv-bg);
  border: 1px solid var(--fmv-border);
  border-radius: var(--radius-md);
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  border-color: var(--fmv-gold);
  box-shadow: var(--shadow-premium);
  transform: translateY(-8px);
}

.stars-row {
  display: flex;
  gap: 6px;
}

.stars-row i {
  color: var(--fmv-gold);
  font-size: 1.1rem;
}

.testimonial-quote {
  font-style: italic;
  color: var(--fmv-text);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 2rem 0;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #EEDC82 0%, var(--fmv-gold) 50%, var(--fmv-gold-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.author-info  { flex-grow: 1; }

.author-name {
  margin: 0;
  font-weight: 700;
  color: var(--fmv-dark);
  font-size: 1rem;
}

.author-title {
  margin: 0;
  color: var(--fmv-muted);
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  padding: 120px 0;
  background: var(--fmv-dark);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-inner {
  position: relative;
  z-index: 2;
}

.cta-body {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.cta-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(197, 160, 40, 0.15) 0%, transparent 70%);
}


/* -------------------------------------------------
   9. INDEX PAGE — HERO
   ------------------------------------------------- */
.hero-section {
  padding: 100px 0;
  position: relative;
  background: radial-gradient(circle at 80% 20%, var(--fmv-gold-glow) 0%, transparent 40%);
}

.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.hero-subhead {
  font-size: 1.25rem;
  max-width: 580px;
  margin-bottom: 3rem;
  color: var(--fmv-text);
}

.hero-visual-wrapper {
  position: relative;
}

.hero-main-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--fmv-border);
}

/* Floating hero cards */
.floating-card {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-premium);
  z-index: 10;
}

.card-portfolio {
  top: -40px;
  right: -20px;
  width: 240px;
}

.card-value {
  bottom: 40px;
  left: -40px;
  width: 200px;
  animation-delay: -3s;
}

.card-stat-positive {
  font-size: 0.75rem;
  color: #10B981;
  font-weight: 700;
}


/* -------------------------------------------------
   10. INDEX PAGE — EXPLORE SECTION
   ------------------------------------------------- */
.explore-section {
  padding: 100px 0;
  background: var(--fmv-surface);
}

.explore-card {
  background: #fff;
  border: 1px solid var(--fmv-border);
  border-radius: var(--radius-md);
  padding: 48px;
  transition: all 0.4s ease;
  text-align: center;
  text-decoration: none;
  color: inherit;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.explore-card:hover {
  transform: translateY(-12px);
  border-color: var(--fmv-gold);
  box-shadow: var(--shadow-premium);
}

.explore-icon {
  font-size: 3.5rem;
  color: var(--fmv-gold);
  background: var(--fmv-gold-light);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin: 0 auto 1.5rem;
}

.explore-icon i {
  color: var(--fmv-gold) !important;
  font-size: 3.5rem !important;
  font-family: bootstrap-icons !important;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
}

.explore-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.explore-card p {
  color: var(--fmv-muted);
  flex-grow: 1;
  margin-bottom: 2rem;
}

.explore-link {
  color: var(--fmv-gold-text);
  font-weight: 700;
  text-decoration: none;
}

.explore-link:hover {
  text-decoration: underline;
}


/* -------------------------------------------------
   11. INDEX PAGE — TESTIMONIALS SECTION
   ------------------------------------------------- */
.testimonials-section {
  padding: 100px 0;
  background: var(--fmv-bg);
}


/* -------------------------------------------------
   12. RESPONSIVE
   ------------------------------------------------- */
@media (max-width: 992px) {
  .card-portfolio,
  .card-value {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }
}


/* =================================================
   EXTENDED SHARED COMPONENTS
   (extracted from inner pages)
   ================================================= */

/* -------------------------------------------------
   13. PAGE HEADER (dark hero used on inner pages)
   ------------------------------------------------- */
.page-header {
  padding: 80px 0 50px;
  text-align: center;
  background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 100%);
  position: relative;
}

.page-header > * {
  position: relative;
  z-index: 1;
}

/* Section title used inside .page-header */
.section-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin-bottom: 1.5rem;
  color: var(--fmv-gold);
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

/* Muted text inside dark page-header */
.page-header p,
.page-header .text-muted {
  color: #E8E8E8 !important;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 400;
}


/* -------------------------------------------------
   14. FEATURE CARDS  (features.html)
   ------------------------------------------------- */
.feature-card {
  background: #fff;
  border: 1px solid var(--fmv-border);
  border-radius: 24px;
  padding: 40px;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  border-color: var(--fmv-gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--fmv-gold);
  background: var(--fmv-gold-light);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 1.5rem;
}

.feature-card h4 { margin-bottom: 1rem; }
.feature-card p  { color: var(--fmv-muted); line-height: 1.8; }


/* -------------------------------------------------
   15. VALUE CARDS  (about.html)
   ------------------------------------------------- */
.value-card {
  background: #fff;
  border: 1px solid var(--fmv-border);
  border-radius: 24px;
  padding: 40px;
  transition: all 0.3s ease;
  height: 100%;
}

.value-card:hover {
  border-color: var(--fmv-gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
}

.value-icon {
  font-size: 2.5rem;
  color: var(--fmv-gold);
  background: var(--fmv-gold-light);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 1.5rem;
}

.value-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.value-card p  { color: var(--fmv-muted); line-height: 1.8; }


/* -------------------------------------------------
   16. STEP CARDS  (how-it-works.html)
   ------------------------------------------------- */
.step-card {
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #EEDC82 0%, var(--fmv-gold) 50%, var(--fmv-gold-dark) 100%);
  color: var(--fmv-dark);
  font-size: 2rem;
  font-weight: 800;
  border-radius: 16px;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-gold);
}

.step-card h4 { margin-bottom: 1rem; font-size: 1.5rem; }
.step-card p  { color: var(--fmv-muted); line-height: 1.8; max-width: 300px; margin: 0 auto; }


/* -------------------------------------------------
   17. PRICING CARDS  (pricing.html)
   ------------------------------------------------- */
.pricing-headline {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--fmv-gold);
  font-weight: 800;
  line-height: 1.2;
}

.pricing-subline {
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: #E8E8E8 !important;
  max-width: 600px;
  margin: 0 auto 3rem;
  font-weight: 400;
}

.pricing-card {
  background: var(--fmv-bg);
  border: 2px solid var(--fmv-gold);
  border-radius: 32px;
  padding: 48px;
  height: 100%;
  transition: all 0.4s ease;
}

.pricing-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: var(--fmv-gold);
}

.pricing-card-pro {
  border: 2px solid var(--fmv-gold);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 0 0 1px rgba(197, 160, 40, 0.1), 0 20px 25px -5px rgba(0,0,0,0.1);
}

.pricing-card-pro:hover {
  border-color: var(--fmv-gold);
  box-shadow: 0 0 0 1px rgba(197, 160, 40, 0.2), 0 20px 40px rgba(197, 160, 40, 0.15);
}

.pricing-card-wrapper { max-width: 550px; }

.price-value {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--fmv-dark);
  font-family: var(--font-body);
  letter-spacing: -0.04em;
}

.price-period {
  font-size: 1.1rem;
  color: var(--fmv-muted);
  font-weight: 500;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0 0;
  text-align: left;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: var(--fmv-text);
  line-height: 1.5;
}

/* Pricing page uses a smaller circular feature-icon */
.pricing-card .feature-icon {
  color: var(--fmv-gold);
  font-size: 1.25rem;
  flex-shrink: 0;
  background: var(--fmv-gold-light);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 0;
}

.feature-bullet {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: var(--fmv-gold);
  border-radius: 2px;
  margin-right: 10px;
  vertical-align: middle;
}

/* Pricing modal */
.modal-content {
  border-radius: 32px;
  border: none;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.modal-header {
  border-bottom: none;
  padding: 40px 40px 10px;
}

.modal-body {
  padding: 10px 40px 40px;
}


/* -------------------------------------------------
   18. COIN CARDS  (popular-coins.html)
   ------------------------------------------------- */
.coin-card-premium {
  background: #fff;
  border: 1px solid var(--fmv-border);
  border-radius: 24px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}

.coin-card-premium:hover {
  border-color: var(--fmv-gold);
  box-shadow: var(--shadow-premium);
  transform: translateY(-4px);
}

.coin-img-premium {
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.value-preview {
  display: inline-block;
  background: linear-gradient(135deg, #EEDC82 0%, var(--fmv-gold) 50%, var(--fmv-gold-dark) 100%);
  color: var(--fmv-dark);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 0.5rem;
  box-shadow: 0 4px 10px rgba(197, 160, 40, 0.2);
}

.premium-tag {
  font-size: 0.75rem;
  color: #10B981;
  font-weight: 700;
}


/* -------------------------------------------------
   19. FAQ / INQUIRY PAGE  (whats-my-coin-worth.html)
   ------------------------------------------------- */
.inquiry-card {
  background: #fff;
  border: 1px solid var(--fmv-border);
  border-radius: 32px;
  padding: 48px;
  box-shadow: var(--shadow-premium);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: var(--fmv-gold-light);
  color: var(--fmv-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* gold info box / notice box */
.notice-box-gold {
  background: var(--fmv-gold-light);
  border: 1px solid var(--fmv-gold);
  border-radius: 16px;
  padding: 16px;
}


/* -------------------------------------------------
   20. BLOG CARDS  (blog.html)
   ------------------------------------------------- */
.blog-section { padding: 80px 0; }

.blog-card {
  background: #fff;
  border: 1px solid var(--fmv-border);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  border-color: var(--fmv-gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
}

.blog-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.blog-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-date {
  font-size: 0.85rem;
  color: var(--fmv-muted);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.blog-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.blog-excerpt {
  color: var(--fmv-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}

.blog-badge {
  display: inline-block;
  background: linear-gradient(135deg, #EEDC82 0%, var(--fmv-gold) 50%, var(--fmv-gold-dark) 100%);
  color: var(--fmv-dark);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}


/* -------------------------------------------------
   21. CONTACT PAGE  (contact.html)
   ------------------------------------------------- */
.contact-section { padding: 80px 0; }

.contact-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--fmv-text);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  background: var(--fmv-surface);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--fmv-border);
}

.form-control-fmv {
  border: 1px solid var(--fmv-border);
  border-radius: 12px;
  padding: 12px 16px;
  font-family: var(--font-body);
  color: var(--fmv-text);
  background-color: var(--fmv-bg);
  transition: all 0.3s ease;
}

.form-control-fmv:focus {
  border-color: var(--fmv-gold);
  box-shadow: 0 0 0 3px var(--fmv-gold-light);
  color: var(--fmv-text);
  outline: none;
}

.form-control-fmv::placeholder {
  color: var(--fmv-muted);
}

/* Pricing modal uses a slightly different fmv form control */
.form-control-fmv-lg {
  border: 1px solid var(--fmv-border);
  border-radius: 14px;
  padding: 14px 18px;
  background: #F9FAFB;
}

.form-control-fmv-lg:focus {
  background: var(--fmv-bg);
  border-color: var(--fmv-gold);
  box-shadow: 0 0 0 4px var(--fmv-gold-light);
}

.form-label-fmv {
  font-weight: 600;
  color: var(--fmv-dark);
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

/* Required asterisk */
.text-required { color: var(--fmv-gold); }

.form-group-fmv { margin-bottom: 1.5rem; }


/* -------------------------------------------------
   22. ABOUT PAGE  (about.html)
   ------------------------------------------------- */
.about-section { padding: 80px 0; }

.about-intro {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #1A1A1A;
  margin-bottom: 5rem;
  max-width: 900px;
  font-weight: 400;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.about-intro i {
  color: var(--fmv-gold);
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.about-intro p { margin: 0; color: #1A1A1A; }

.expert-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--fmv-gold-light);
  filter: grayscale(100%) contrast(1.1) sepia(0.2);
  transition: all 0.3s ease;
}

.expert-card { transition: transform 0.3s ease; }

.expert-card:hover {
  transform: translateY(-5px);
}

.expert-card:hover .expert-avatar {
  filter: grayscale(70%) contrast(1.15) sepia(0.3) hue-rotate(10deg);
}

.expert-heading {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.expert-meta-max { max-width: 600px; margin: 0 auto; }
.expert-avatar-mb { margin-bottom: 1.5rem; }
.expert-name { font-family: var(--font-heading); margin-bottom: 0.3rem; }
.expert-role { font-weight: 500; margin-bottom: 0.8rem; }
.expert-bio  { line-height: 1.6; }


/* -------------------------------------------------
   23. SITEMAP PAGE  (sitemap.html)
   ------------------------------------------------- */
.sitemap-section {
  flex: 1;
  padding: 80px 20px;
  background: var(--fmv-surface);
}

.sitemap-grid {
  max-width: 1200px;
  margin: 0 auto;
}

.sitemap-category {
  background: var(--fmv-bg);
  border: 2px solid var(--fmv-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.sitemap-category:hover {
  border-color: var(--fmv-gold);
  box-shadow: var(--shadow-premium);
}

.sitemap-category-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--fmv-gold);
}

.sitemap-category-heading i { color: var(--fmv-gold); font-size: 1.5rem; }
.sitemap-category-heading h2 { margin: 0; font-size: 1.5rem; color: var(--fmv-dark); }

.sitemap-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.sitemap-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--fmv-surface);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--fmv-dark);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.sitemap-link:hover {
  background: var(--fmv-gold-light);
  border-left-color: var(--fmv-gold);
  color: var(--fmv-gold);
  transform: translateX(4px);
}

.sitemap-link i { color: var(--fmv-gold); font-size: 1.2rem; flex-shrink: 0; }

.sitemap-link-text { display: flex; flex-direction: column; gap: 4px; }
.sitemap-link-title { font-weight: 600; color: var(--fmv-dark); }
.sitemap-link-desc  { font-size: 0.85rem; color: var(--fmv-muted); }

/* Hidden/special pages section */
.hidden-section {
  background: linear-gradient(135deg, rgba(197, 160, 40, 0.08) 0%, rgba(197, 160, 40, 0.04) 100%);
  border: 2px dashed var(--fmv-gold);
}

.hidden-section-badge {
  display: inline-block;
  background: var(--fmv-gold);
  color: var(--fmv-dark);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

/* Sitemap responsive */
@media (max-width: 768px) {
  .sitemap-category { padding: 24px; }
  .sitemap-links    { grid-template-columns: 1fr; }
  .sitemap-section  { padding: 40px 20px; }
}


/* -------------------------------------------------
   24. THANK-YOU / CANCEL-RETURN PAGES
   ------------------------------------------------- */

/* Confetti */
@keyframes confettiFall {
  0%   { transform: translateY(-100vh) rotate(0deg); opacity: 1; }
  100% { transform: translateY(100vh) rotate(360deg); opacity: 0; }
}

.confetti-container {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
}

.confetti {
  position: absolute;
  width: 10px; height: 10px;
  background: var(--fmv-gold);
  opacity: 0;
  animation: confettiFall 3s ease-in forwards;
}

.confetti:nth-child(odd)  { background: linear-gradient(135deg, #EEDC82 0%, var(--fmv-gold) 100%); }
.confetti:nth-child(even) { background: var(--fmv-gold-dark); }

/* Particles */
@keyframes particleBurst {
  0%   { transform: translate(0, 0) scale(1); opacity: 1; }
  100% { transform: translate(var(--tx), var(--ty)) scale(0); opacity: 0; }
}

.particle {
  position: fixed;
  width: 8px; height: 8px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  animation: particleBurst 1.2s ease-out forwards;
}

.particle.gold       { background: var(--fmv-gold); box-shadow: 0 0 8px rgba(197, 160, 40, 0.6); }
.particle.gold-light { background: #EEDC82; box-shadow: 0 0 6px rgba(238, 220, 130, 0.8); }

/* Thank-you page layout */
.thank-you-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.thank-you-content {
  text-align: center;
  max-width: 700px;
}

/* Animated checkmark circle */
@keyframes scaleIn {
  0%   { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.checkmark-icon {
  width: 120px; height: 120px;
  background: linear-gradient(135deg, #EEDC82 0%, var(--fmv-gold) 50%, var(--fmv-gold-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 0 20px 50px rgba(197, 160, 40, 0.2);
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.checkmark-icon i { color: var(--fmv-dark); font-size: 3.5rem; }

.thank-you-heading {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.thank-you-subheading {
  font-size: 1.1rem;
  color: var(--fmv-text);
  margin-bottom: 3rem;
  line-height: 1.8;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

/* Next Steps box */
.next-steps-box {
  border: 2px solid var(--fmv-gold);
  border-radius: var(--radius-md);
  padding: 36px;
  background: var(--fmv-bg);
  margin-bottom: 3rem;
  text-align: left;
}

.next-steps-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fmv-gold);
  margin-bottom: 1.5rem;
  text-align: center;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 1.25rem;
}

.step-item:last-child { margin-bottom: 0; }

/* Step number circle used on thank-you pages */
.step-number-circle {
  width: 48px; height: 48px;
  background: var(--fmv-gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fmv-gold);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.step-text {
  color: var(--fmv-dark);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  padding-top: 4px;
}

/* Action button group */
.button-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary-action {
  background: linear-gradient(135deg, #EEDC82 0%, var(--fmv-gold) 50%, var(--fmv-gold-dark) 100%);
  color: var(--fmv-dark) !important;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 18px;
  border: none;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(197, 160, 40, 0.15);
  text-decoration: none;
  display: inline-block;
}

.btn-primary-action:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(197, 160, 40, 0.25);
  color: var(--fmv-dark) !important;
}

.btn-secondary-action {
  background: var(--fmv-bg);
  color: var(--fmv-dark) !important;
  font-weight: 700;
  padding: 18px 40px;
  border: 2px solid var(--fmv-border);
  border-radius: 18px;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary-action:hover {
  border-color: var(--fmv-gold);
  color: var(--fmv-dark) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Thank-you pages responsive */
@media (max-width: 768px) {
  .next-steps-box { padding: 32px; }

  .button-group { flex-direction: column; }

  .btn-primary-action,
  .btn-secondary-action { width: 100%; }

  .checkmark-icon { width: 100px; height: 100px; }
  .checkmark-icon i { font-size: 3rem; }
}


/* -------------------------------------------------
   25. CANCEL PAGE  (cancel.html)
   ------------------------------------------------- */
.dark-header {
  background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 100%);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.dark-header h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 1rem;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.dark-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.cancel-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.cancel-content { max-width: 700px; width: 100%; }

.cancel-section {
  margin-bottom: 3rem;
  padding: 0;
  text-align: center;
}

.cancel-section-title {
  font-size: 1.3rem;
  color: var(--fmv-dark);
  margin-bottom: 1rem;
  font-weight: 700;
}

.cancel-section-description {
  font-size: 1rem;
  color: var(--fmv-text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--fmv-gold) 0%, var(--fmv-gold-dark) 100%);
  margin: 2rem auto;
}

.support-link {
  display: inline-block;
  color: var(--fmv-dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--fmv-gold);
  transition: all 0.3s ease;
}

.support-link:hover {
  color: var(--fmv-gold);
  border-bottom-color: var(--fmv-gold-dark);
}

.support-link-container { margin-bottom: 3rem; text-align: center; }

.btn-keep-account {
  background: linear-gradient(135deg, #EEDC82 0%, var(--fmv-gold) 50%, var(--fmv-gold-dark) 100%);
  color: var(--fmv-dark) !important;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 18px;
  border: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(197, 160, 40, 0.15);
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  width: 100%;
}

.btn-keep-account:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(197, 160, 40, 0.25);
  color: var(--fmv-dark) !important;
}

.btn-cancel-account {
  background: #C64E47;
  color: #fff !important;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 18px;
  border: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(198, 78, 71, 0.2);
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  width: 100%;
}

.btn-cancel-account:hover {
  background: #b83e37;
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(198, 78, 71, 0.3);
  color: #fff !important;
}

.form-container-cancel { margin-bottom: 3rem; }

@media (max-width: 768px) {
  .cancel-container { padding: 40px 20px; }
  .dark-header      { padding: 40px 20px; }
  .dark-header h1   { font-size: 1.8rem; }
}


/* -------------------------------------------------
   26. CANCEL THANK-YOU / CANCEL-RETURN PAGES
   ------------------------------------------------- */
.reactivation-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.reactivation-content { text-align: center; max-width: 700px; }

.reactivation-heading {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.reactivation-subheading {
  font-size: 1.1rem;
  color: var(--fmv-text);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.welcome-benefits {
  background: var(--fmv-surface);
  border-radius: var(--radius-md);
  padding: 36px;
  margin-bottom: 3rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 1.25rem;
}

.benefit-item:last-child { margin-bottom: 0; }

.benefit-item-icon {
  width: 36px; height: 36px;
  background: var(--fmv-gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fmv-gold);
  flex-shrink: 0;
  font-size: 1.1rem;
}

.benefit-text {
  color: var(--fmv-dark);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* Cancel thank-you specific */
.cancel-heading {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
  font-style: italic;
}

.importance-badge {
  display: inline-block;
  background: linear-gradient(135deg, #EEDC82 0%, var(--fmv-gold) 50%, var(--fmv-gold-dark) 100%);
  color: var(--fmv-dark);
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(197, 160, 40, 0.2);
}

.cancel-message {
  font-size: 1.1rem;
  color: var(--fmv-text);
  margin-bottom: 3rem;
  line-height: 1.8;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--fmv-muted);
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .welcome-benefits { padding: 28px; }
}


/* -------------------------------------------------
   27. SPONSORED PAGES
   ------------------------------------------------- */
.sponsored-notice {
  font-size: 0.95rem;
  color: var(--fmv-muted);
  margin-top: 2rem;
  font-weight: 500;
}

/* Sponsored membership consent form */
.form-section-sponsored {
  flex: 1;
  padding: 80px 20px;
  background: var(--fmv-surface);
}

.form-container-sponsored {
  max-width: 700px;
  margin: 0 auto;
  background: var(--fmv-bg);
  border: 2px solid var(--fmv-border);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 8vw, 60px);
}

.dealer-badge {
  display: inline-block;
  background: rgba(197, 160, 40, 0.15);
  color: var(--fmv-gold);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 2rem;
}

.form-heading {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  margin-bottom: 2.5rem;
  letter-spacing: -0.01em;
}

.consent-section {
  background: rgba(197, 160, 40, 0.08);
  border: 2px solid rgba(197, 160, 40, 0.2);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 2rem;
}

.consent-heading {
  font-weight: 700;
  color: var(--fmv-dark);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.consent-text {
  color: var(--fmv-text);
  font-size: 0.95rem;
  line-height: 1.7;
}

.consent-text a {
  color: var(--fmv-gold);
  text-decoration: underline;
  transition: color 0.2s;
}

.consent-text a:hover { color: var(--fmv-gold-dark); }

.form-submit {
  background: linear-gradient(135deg, #EEDC82 0%, var(--fmv-gold) 50%, var(--fmv-gold-dark) 100%);
  color: var(--fmv-dark) !important;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 18px;
  border: none;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(197, 160, 40, 0.15);
  width: 100%;
}

.form-submit:hover:not(:disabled) {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(197, 160, 40, 0.25);
}

.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

@media (max-width: 768px) {
  .form-section-sponsored { padding: 60px 20px; }
  .form-container-sponsored { padding: clamp(32px, 6vw, 48px); }
  .form-heading { margin-bottom: 2rem; }
}


/* -------------------------------------------------
   28. UTILITY: text disclaimer (small footer note)
   ------------------------------------------------- */
.text-disclaimer {
  font-size: 0.7rem;
  margin-top: 4px;
}

/* Compact footer variant (thank-you / cancel / reactivation) */
.footer-premium-compact {
  background: var(--fmv-bg);
  border-top: 1px solid var(--fmv-border);
  padding: 40px 0 20px;
  margin-top: auto;
}


/* -------------------------------------------------
   29. COIN PRODUCT PAGE (coin.html)
   ------------------------------------------------- */

/* Page body offset for fixed ticker */
.coin-product-page {
  padding-bottom: 52px;
}

/* -- Utility Bar -- */
.coin-utility-bar {
  background: #006B6B;
  color: #d4efef;
  font-size: 0.82rem;
  padding: 7px 0;
  font-family: var(--font-body);
}

.coin-utility-link {
  color: #d4efef;
  text-decoration: none;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
}

.coin-utility-link:hover { color: #fff; }

/* -- Coin Navbar (solid white override) -- */
.navbar-coin {
  background: #fff;
  backdrop-filter: none;
  border-bottom: 1px solid var(--fmv-border);
  padding-bottom: 0;
}

.coin-search-row {
  border-top: 1px solid var(--fmv-border);
  padding: 10px 0;
  display: flex;
  justify-content: center;
  width: 100%;
}

.coin-search-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.coin-search-input {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 7px 12px 7px 34px;
  font-size: 0.88rem;
  width: 300px;
  font-family: var(--font-body);
  color: var(--fmv-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.coin-search-input:focus {
  outline: none;
  border-color: var(--fmv-gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 40, 0.12);
}

.coin-search-icon {
  position: absolute;
  left: 10px;
  color: var(--fmv-muted);
  font-size: 0.85rem;
  pointer-events: none;
}

/* -- Product Detail Section -- */
.coin-product-section {
  padding: 48px 0 32px;
}

.coin-image-wrapper {
  position: relative;
  border: 1px solid var(--fmv-border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--fmv-bg);
}

.coin-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  aspect-ratio: 1 / 1;
  transition: transform 0.4s ease;
}

.coin-image-wrapper:hover img {
  transform: scale(1.03);
}

.coin-zoom-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--fmv-border);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--fmv-muted);
  transition: background 0.2s, color 0.2s;
}

.coin-zoom-btn:hover {
  background: #fff;
  color: var(--fmv-dark);
}

.coin-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--fmv-dark);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.coin-price-row {
  margin-bottom: 1rem;
}

.coin-price-label {
  font-size: 0.9rem;
  color: var(--fmv-muted);
}

.coin-price-value {
  font-size: 1.35rem;
  font-weight: 700;
  color: #8B7320;
}

.coin-highlights-label {
  font-weight: 600;
  color: var(--fmv-dark);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.coin-highlights {
  padding-left: 1.4rem;
  margin-bottom: 1.5rem;
}

.coin-highlights li {
  color: var(--fmv-text);
  font-size: 0.93rem;
  margin-bottom: 0.35rem;
  line-height: 1.5;
}

.btn-contact {
  display: inline-block;
  background: #8B7320;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 10px 22px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  font-family: var(--font-body);
}

.btn-contact:hover {
  background: #7A6518;
  color: #fff;
  transform: translateY(-2px);
}

.coin-sku-row {
  font-size: 0.85rem;
  color: var(--fmv-muted);
  margin-top: 1rem;
  line-height: 2;
}

.coin-sku-row strong {
  color: var(--fmv-dark);
}

.coin-link {
  color: #006B6B;
  text-decoration: none;
  transition: color 0.2s;
}

.coin-link:hover {
  color: #004f4f;
  text-decoration: underline;
}

/* -- Tabs + Description -- */
.coin-desc-section {
  padding: 0 0 40px;
}

.coin-tab-nav {
  border-bottom: 1px solid var(--fmv-border);
  margin-bottom: 1.5rem;
}

.coin-tab-nav .nav-link {
  color: var(--fmv-text);
  border: 1px solid var(--fmv-border);
  border-bottom: none;
  border-radius: 4px 4px 0 0;
  padding: 8px 18px;
  font-size: 0.88rem;
  font-family: var(--font-body);
  font-weight: 500;
  background: var(--fmv-surface);
  margin-right: 3px;
  margin-bottom: -1px;
}

.coin-tab-nav .nav-link.active {
  background: var(--fmv-bg);
  border-bottom-color: var(--fmv-bg);
  color: var(--fmv-dark);
  font-weight: 600;
}

.coin-tab-nav .nav-link:hover:not(.active) {
  color: var(--fmv-dark);
  background: #f0f0f0;
}

.coin-tab-content p {
  color: var(--fmv-text);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.coin-tab-content .text-muted {
  font-size: 0.95rem;
}

/* -- Related Products -- */
.related-products-section {
  padding: 40px 0 32px;
}

.related-heading {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--fmv-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--fmv-border);
}

.related-coin-card {
  text-align: center;
  padding: 8px;
}

.related-coin-img-wrap {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 1px solid var(--fmv-border);
}

.related-coin-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-coin-card:hover .related-coin-img-wrap img {
  transform: scale(1.06);
}

.related-coin-title {
  display: block;
  color: #006B6B;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  margin-bottom: 0.4rem;
  line-height: 1.4;
}

.related-coin-title:hover {
  color: #004f4f;
  text-decoration: underline;
}

.related-star-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  margin-bottom: 0.3rem;
}

.related-star-row i { color: #F4A300; font-size: 0.85rem; }

.related-price-label {
  font-size: 0.8rem;
  color: var(--fmv-muted);
}

.related-price-value {
  font-weight: 700;
  color: var(--fmv-dark);
  font-size: 0.9rem;
}

/* -- Free Guides & Tools -- */
.guides-section {
  padding: 56px 0 72px;
}

.guides-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.guides-divider-line {
  flex: 1;
  height: 1px;
  background: var(--fmv-border);
}

.guides-divider-title {
  border: 1px solid var(--fmv-gold);
  padding: 9px 24px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fmv-dark);
  white-space: nowrap;
}

.guide-item {
  text-align: center;
}

.guide-icon {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: linear-gradient(135deg, #007878 0%, #005555 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guide-icon i {
  color: #fff;
  font-size: 1.9rem;
}

.guide-item:hover .guide-icon {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 107, 107, 0.35);
}

.guide-label {
  font-size: 0.88rem;
  color: var(--fmv-text);
  line-height: 1.4;
  font-weight: 500;
}

/* -- Teal Footer (coin page) -- */
.coin-footer {
  background: #006B6B;
  color: #c8e8e8;
  padding: 60px 0 0;
}

.coin-footer-heading {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.25rem;
}

.coin-footer-subheading {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-top: 1.75rem;
  margin-bottom: 0.9rem;
}

.coin-footer-body {
  color: #b5dede;
  font-size: 0.86rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.coin-footer-link {
  color: #b5dede;
  text-decoration: none;
  font-size: 0.86rem;
  transition: color 0.2s;
}

.coin-footer-link:hover { color: #fff; }

.coin-footer-list {
  list-style: disc;
  padding-left: 1.1rem;
  margin: 0;
}

.coin-footer-list li {
  margin-bottom: 0.5rem;
}

.coin-footer-col-border {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.coin-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #b5dede;
  font-size: 0.86rem;
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.coin-footer-contact-item i {
  font-size: 1rem;
  color: #c8e8e8;
  flex-shrink: 0;
  margin-top: 2px;
}

.coin-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--fmv-gold);
  font-size: 1.4rem;
  transition: color 0.2s, transform 0.2s;
  text-decoration: none;
}

.coin-social-icon:hover {
  color: #fff;
  transform: scale(1.15);
}

.coin-footer-copy {
  background: #005c5c;
  padding: 14px 0;
  text-align: center;
  font-size: 0.8rem;
  color: #a8d4d4;
  margin-top: 48px;
}

/* -- Bottom Ticker Bar -- */
.coin-ticker-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #111111;
  color: #fff;
  z-index: 1050;
  padding: 11px 0;
  font-size: 0.82rem;
  font-weight: 600;
  border-top: 1px solid #2a2a2a;
  font-family: var(--font-body);
}

.coin-ticker-group {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.ticker-label {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.ticker-val {
  color: #ffffff;
  font-weight: 600;
}

.ticker-pos {
  color: #00e676;
  font-weight: 600;
}

.ticker-neg {
  color: #ff5252;
  font-weight: 600;
}

.coin-view-chart {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  transition: color 0.2s;
  white-space: nowrap;
}

.coin-view-chart:hover { color: var(--fmv-gold); }

/* -- Zoom Modal -- */
.coin-zoom-modal .modal-content {
  background: #fff;
  border: none;
  border-radius: 8px;
}

.coin-zoom-modal .modal-body {
  padding: 8px;
}

.coin-zoom-modal img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* -- FMV-style coin page variant (coin.html) -- */
.coin-fmv-page .coin-link {
  color: var(--fmv-gold-text);
}
.coin-fmv-page .coin-link:hover {
  color: var(--fmv-gold-dark);
  text-decoration: underline;
}
.coin-fmv-page .coin-price-value {
  color: var(--fmv-gold-text);
}

/* FMV Related Product Cards */
.coin-fmv-page .related-coin-card {
  border: 1.5px solid var(--fmv-gold);
  border-radius: 10px;
  padding: 20px 16px 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.25s ease;
}
.coin-fmv-page .related-coin-card:hover {
  box-shadow: 0 6px 24px rgba(197, 160, 40, 0.18);
}
.coin-fmv-page .related-coin-img-wrap {
  width: 180px;
  height: 180px;
  border: none;
  background: transparent;
}
.coin-fmv-page .related-coin-title {
  color: #1a1a2e;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.45;
  margin-bottom: 1rem;
  flex: 1;
  cursor: default;
  text-decoration: none;
}
.coin-fmv-page .related-coin-title:hover {
  color: #1a1a2e;
  text-decoration: none;
}

/* SEE DETAILS button */
.related-coin-details-btn {
  display: block;
  width: 100%;
  background: var(--fmv-gold);
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  border: none;
  border-radius: 6px;
  padding: 12px 8px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease;
  font-family: var(--font-body);
}
.related-coin-details-btn:hover {
  background: var(--fmv-gold-dark);
  color: #fff;
  text-decoration: none;
}

.coin-fmv-page .guide-icon {
  background: linear-gradient(135deg, #EEDC82 0%, var(--fmv-gold) 60%, var(--fmv-gold-dark) 100%);
}
.coin-fmv-page .guide-item:hover .guide-icon {
  box-shadow: var(--shadow-gold);
}
.coin-fmv-page .guide-icon i {
  color: var(--fmv-dark);
}

/* -- Coin Page Responsive -- */
@media (max-width: 991px) {
  .coin-search-row { display: none; }
}

@media (max-width: 767px) {
  .coin-product-section { padding: 24px 0 16px; }
  .related-coin-img-wrap { width: 120px; height: 120px; }
  .guides-divider-title { font-size: 0.7rem; padding: 7px 14px; letter-spacing: 0.1em; }
  .coin-ticker-bar { font-size: 0.72rem; padding: 9px 0; }
  .coin-ticker-group { gap: 4px; }
  .coin-product-page { padding-bottom: 46px; }
  .coin-footer-col-border { border-left: none; border-top: 1px solid rgba(255, 255, 255, 0.15); padding-top: 1.5rem; margin-top: 0.5rem; }
}
