/* Advice Home / token micro-site — Bootstrap 5 companion styles (brand: #b99235) */

:root {
  --ah-primary: #b99235;
  --ah-primary-light: #d4b060;
  --ah-primary-dark: #967a28;
  --ah-primary-ink: #5c4a1a;
  --ah-ink: #0f172a;
  --ah-muted: #64748b;
  --ah-surface: #faf8f3;
  --ah-glass: rgba(255, 255, 255, 0.92);
  --ah-nav-h: 84px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--ah-nav-h) + 12px);
}

body.advice-home-body {
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  color: var(--ah-ink);
  padding-top: 0;
  background: var(--ah-surface);
  /* Bootstrap 5 — align components with logo gold */
  --bs-primary: #b99235;
  --bs-primary-rgb: 185, 146, 53;
  --bs-link-color: var(--ah-primary-dark);
  --bs-link-hover-color: #7a6120;
  --bs-focus-ring-color: rgba(185, 146, 53, 0.45);
}

/* Primary buttons (CDN Bootstrap keeps blue hovers unless overridden) */
body.advice-home-body .btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #b99235;
  --bs-btn-border-color: #a8822e;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #967a28;
  --bs-btn-hover-border-color: #8a7028;
  --bs-btn-focus-shadow-rgb: 185, 146, 53;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #8a7028;
  --bs-btn-active-border-color: #7a6120;
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #c4a85a;
  --bs-btn-disabled-border-color: #c4a85a;
}

/* Header: own row above hero — not overlapping the slider */
.ah-header-bar {
  position: relative;
  z-index: 1030;
  background: linear-gradient(180deg, #fff 0%, #fefdfb 100%);
  box-shadow: 0 1px 0 rgba(185, 146, 53, 0.2), 0 8px 32px rgba(15, 23, 42, 0.06);
}

.ah-navbar {
  min-height: var(--ah-nav-h);
  background: transparent !important;
  border-bottom: none;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.ah-navbar.ah-navbar--scrolled {
  background: linear-gradient(180deg, #fff 0%, #faf8f3 100%) !important;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}

/* Logo badge — rounded frame, warm panel, gold rim */
.ah-logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.7rem;
  background: linear-gradient(150deg, #ffffff 0%, #fdfbf7 40%, #f8f0dc 100%);
  border: 2px solid rgba(185, 146, 53, 0.5);
  border-radius: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 10px 32px rgba(185, 146, 53, 0.28),
    0 2px 10px rgba(15, 23, 42, 0.06);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.25s ease;
}

.ah-navbar-brand:hover .ah-logo-badge,
.ah-navbar-brand:focus-visible .ah-logo-badge {
  transform: translateY(-3px);
  border-color: rgba(185, 146, 53, 0.85);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 14px 40px rgba(185, 146, 53, 0.38),
    0 4px 14px rgba(15, 23, 42, 0.08);
}

.ah-logo-badge__img {
  height: 48px;
  width: auto;
  max-height: 48px;
  border-radius: 12px;
  object-fit: contain;
  display: block;
}

.ah-logo-badge--footer {
  padding: 0.55rem 0.85rem;
  border-radius: 20px;
}

.ah-logo-badge--footer .ah-logo-badge__img {
  height: 42px;
  max-height: 42px;
  border-radius: 14px;
}

.ah-nav-link-main-site {
  color: var(--ah-muted) !important;
  font-weight: 600 !important;
}

.ah-nav-link-main-site:hover {
  color: var(--ah-primary) !important;
}

.ah-nav-link {
  position: relative;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ah-ink) !important;
  padding: 0.5rem 0.85rem !important;
  transition: color 0.2s ease;
}

.ah-nav-link::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.25rem;
  height: 2px;
  background: linear-gradient(90deg, var(--ah-primary), var(--ah-primary-light));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 2px;
}

.ah-nav-link:hover::after,
.ah-nav-link:focus::after {
  transform: scaleX(1);
}

.ah-nav-link:hover {
  color: var(--ah-primary) !important;
}

.ah-btn-login {
  border-radius: 999px;
  font-weight: 600;
  padding: 0.45rem 1.15rem;
  animation: ah-pulse-soft 3s ease-in-out infinite;
}

@keyframes ah-pulse-soft {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(185, 146, 53, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(185, 146, 53, 0);
  }
}

/* Hero — full width below header; gold hairline between bar and slider */
.ah-header-bar + .ah-hero-wrap::before {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(185, 146, 53, 0.2) 15%,
    var(--ah-primary) 35%,
    var(--ah-primary-light) 50%,
    var(--ah-primary) 65%,
    rgba(185, 146, 53, 0.2) 85%,
    transparent 100%
  );
}

.ah-hero-wrap {
  margin-top: 0;
  position: relative;
}

.ah-hero-carousel .carousel-item {
  min-height: min(72vh, 560px);
}

.ah-hero-slide {
  min-height: min(85vh, 560px);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ah-hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(15, 23, 42, 0.78) 0%,
    rgba(92, 74, 26, 0.45) 45%,
    rgba(185, 146, 53, 0.28) 55%,
    rgba(15, 23, 42, 0.62) 100%
  );
}

.ah-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  max-width: 720px;
  padding: 2rem 1rem;
}

.ah-hero-content h1 {
  font-weight: 700;
  letter-spacing: -0.02em;
  animation: ah-fade-up 0.85s ease both;
}

.ah-hero-content p {
  font-size: 1.1rem;
  opacity: 0.95;
  animation: ah-fade-up 0.85s ease 0.12s both;
}

@keyframes ah-fade-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ah-hero-carousel .carousel-control-prev,
.ah-hero-carousel .carousel-control-next {
  width: 3rem;
  opacity: 0.85;
}

/* Hero on narrow viewports: full artwork (text baked into slides) stays visible */
@media (max-width: 767.98px) {
  .ah-hero-carousel .carousel-item {
    min-height: min(42vh, 300px);
  }

  .ah-hero-slide {
    min-height: min(42vh, 300px);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    /* Letterbox behind `contain` — matches dark edge of overlay */
    background-color: #12151c;
  }

  .ah-hero-content {
    padding: 1rem 0.75rem;
  }

  .ah-hero-content .btn-lg {
    font-size: 1rem;
    padding: 0.5rem 1.25rem;
  }
}

/* Sections */
.ah-section {
  padding: 3.5rem 0;
}

.ah-section-title {
  font-weight: 700;
  color: var(--ah-ink);
  margin-bottom: 0.75rem;
}

.ah-highlight-bar {
  background: linear-gradient(135deg, #faf6eb 0%, #f3ead4 100%);
  border-left: 4px solid var(--ah-primary);
  color: var(--ah-primary-ink);
  border-radius: 0 12px 12px 0;
  padding: 1rem 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.ah-card-pro {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
}

.ah-card-pro:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(185, 146, 53, 0.22);
}

.ah-card-pro img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.ah-price-pill {
  display: inline-block;
  background: linear-gradient(135deg, var(--ah-primary-dark) 0%, var(--ah-primary) 45%, var(--ah-primary-light) 100%);
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
  font-weight: 700;
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
}

/* WhatsApp “Purchase Token” — soft blink (no outer ring: card has overflow:hidden) */
.ah-purchase-blink {
  animation: ah-purchase-blink 1.35s ease-in-out infinite;
}

@keyframes ah-purchase-blink {
  0%,
  100% {
    opacity: 1;
    filter: brightness(1);
  }
  50% {
    opacity: 0.72;
    filter: brightness(1.15);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ah-purchase-blink {
    animation: none;
  }
}

/* Image CRM — modal (clean “Contact us” card, blue accents) */
/* LTR: page may be RTL (Urdu); modal header must keep title left, close right */
.ah-crm-modal {
  direction: ltr;
}

.ah-crm-modal .modal-dialog.modal-sm {
  max-width: min(100% - 1.5rem, 400px);
}

.ah-crm-modal .ah-crm-modal__shell {
  border: none;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(15, 23, 42, 0.06);
}

.ah-crm-modal .ah-crm-modal__header {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 1rem 1.1rem 0.85rem;
}

.ah-crm-modal .ah-crm-modal__title {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0f172a;
  margin: 0;
  line-height: 1.2;
  text-align: left;
}

.ah-crm-modal .ah-crm-modal__close {
  flex-shrink: 0;
  margin: 0;
  margin-left: auto;
  padding: 0.5rem;
  opacity: 0.55;
}

.ah-crm-modal .ah-crm-modal__close:hover {
  opacity: 1;
}

.ah-crm-modal .ah-crm-modal__body {
  background: #fff;
  padding: 1.35rem 1.35rem 1.5rem;
  color: #0f172a;
}

.ah-crm-modal .ah-crm-agent__photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid #e5e7eb;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}

.ah-crm-modal .ah-crm-agent__name {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  font-weight: 700;
  text-align: center;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.ah-crm-modal .ah-crm-agent__role {
  margin: 0 0 1.25rem;
  text-align: center;
  font-size: 0.9375rem;
  color: #64748b;
  font-weight: 500;
}

.ah-crm-modal .ah-crm-agent__contacts {
  margin: 0 0 1.35rem;
  padding: 0;
}

.ah-crm-modal .ah-crm-agent__row {
  display: grid;
  grid-template-columns: minmax(5.5rem, 38%) 1fr;
  gap: 0.35rem 0.75rem;
  align-items: baseline;
  margin-bottom: 0.65rem;
}

.ah-crm-modal .ah-crm-agent__row:last-child {
  margin-bottom: 0;
}

.ah-crm-modal .ah-crm-agent__contacts dt {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
}

.ah-crm-modal .ah-crm-agent__contacts dd {
  margin: 0;
  font-size: 0.9375rem;
}

.ah-crm-modal .ah-crm-agent__link {
  color: #0d6efd;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ah-crm-modal .ah-crm-agent__link:hover {
  color: #0a58ca;
}

.ah-crm-modal .ah-crm-modal__cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0d6efd;
  text-decoration: none;
  border: 2px solid #0d6efd;
  border-radius: 999px;
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
}

.ah-crm-modal .ah-crm-modal__cta:hover {
  background: rgba(13, 110, 253, 0.08);
  color: #0a58ca;
  border-color: #0a58ca;
}

.ah-crm-modal .ah-crm-modal__lead {
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0 0 1rem;
}

.ah-crm-modal .ah-crm-modal__input {
  border-radius: 10px;
  border-color: #e2e8f0;
  font-size: 0.875rem;
}

.ah-crm-modal .ah-crm-modal__input:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

.ah-crm-modal .ah-crm-modal__submit {
  display: block;
  width: 100%;
  padding: 0.65rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: #0d6efd;
  border: none;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.ah-crm-modal .ah-crm-modal__submit:hover {
  background: #0a58ca;
}

.ah-crm-modal .ah-crm-modal__submit:active {
  transform: scale(0.99);
}

.ah-image-crm-wrap .ah-crm-grid-card img {
  cursor: pointer;
}

.ah-image-crm-wrap .ratio iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.ah-urdu-block {
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 2rem;
  direction: rtl;
  text-align: right;
  line-height: 2;
  font-size: 1.15rem;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
}

.ah-urdu-block .ah-urdu-lead {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ah-primary-ink);
}

.ah-logo-inline {
  text-align: center;
  direction: ltr;
  margin: 1.25rem 0;
}

.ah-logo-inline img {
  max-width: 180px;
  height: auto;
}

/* Footer — no newsletter */
.ah-footer {
  position: relative;
  background: linear-gradient(165deg, #1a1628 0%, #0f0d14 42%, #0a090e 100%);
  color: #e2e8f0;
  margin-top: 3rem;
  overflow: hidden;
}

.ah-footer__accent {
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--ah-primary-dark), var(--ah-primary), var(--ah-primary-light), var(--ah-primary), transparent);
  opacity: 0.95;
}

.ah-footer-heading {
  color: var(--ah-primary-light);
  letter-spacing: 0.12em;
}

.ah-footer-brand__kicker {
  color: var(--ah-primary);
  letter-spacing: 0.2em;
}

.ah-footer-brand__tag {
  line-height: 1.65;
  max-width: 26rem;
}

.ah-footer-cta {
  border-color: rgba(185, 146, 53, 0.55) !important;
  color: #fefce8 !important;
}

.ah-footer-cta:hover {
  background: rgba(185, 146, 53, 0.2) !important;
  border-color: var(--ah-primary-light) !important;
  color: #fff !important;
}

.ah-footer-icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(185, 146, 53, 0.12);
  color: var(--ah-primary-light);
  font-size: 0.9rem;
}

.ah-footer-link-strong {
  color: #f8fafc !important;
  font-weight: 600;
  text-decoration: none;
}

.ah-footer-link-strong:hover {
  color: var(--ah-primary-light) !important;
}

.ah-footer-links a {
  color: #a8b3c4;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.ah-footer-links a:hover {
  color: var(--ah-primary-light);
  transform: translateX(4px);
}

.ah-footer-bottom {
  border-top: 1px solid rgba(185, 146, 53, 0.15);
}

.ah-footer-social-btn {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--ah-primary-light);
  border: 1px solid rgba(185, 146, 53, 0.45);
  background: rgba(185, 146, 53, 0.08);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.ah-footer-social-btn:hover {
  color: #1a1628;
  background: linear-gradient(145deg, var(--ah-primary-light), var(--ah-primary));
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(185, 146, 53, 0.35);
}

.ah-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.ah-reveal.ah-reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .ah-nav-link::after {
    display: none;
  }
}

/* -------------------------------------------------------------------------
   Token property detail (token5marla.php) — premium layout
   ------------------------------------------------------------------------- */
.token5-page .token5-main {
  position: relative;
  background: radial-gradient(ellipse 85% 55% at 50% -15%, rgba(185, 146, 53, 0.12), transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--ah-surface) 35%, #fff 100%);
}

.token5-page .ah-header-bar + .token5-bc-bar::before {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(185, 146, 53, 0.25) 12%,
    #b99235 35%,
    #d4b060 50%,
    #b99235 65%,
    rgba(185, 146, 53, 0.25) 88%,
    transparent 100%
  );
}

.token5-bc-bar {
  position: relative;
  background: linear-gradient(165deg, #fff 0%, #fdfbf7 38%, #faf6eb 100%);
  border-bottom: 1px solid rgba(185, 146, 53, 0.2);
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.05);
}

.token5-bc-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(185, 146, 53, 0.06) 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
  opacity: 0.5;
}

.token5-bc-eyebrow {
  color: var(--ah-primary-dark);
  letter-spacing: 0.18em;
  position: relative;
  z-index: 1;
}

.token5-bc-trail {
  position: relative;
  z-index: 1;
}

.token5-bc-sep {
  color: rgba(185, 146, 53, 0.55);
  font-size: 0.75rem;
  user-select: none;
}

.token5-bc-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1rem 0.45rem 0.85rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #5c4a1a;
  background: #fff;
  border: 1px solid rgba(185, 146, 53, 0.28);
  box-shadow: 0 4px 18px rgba(185, 146, 53, 0.12);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, color 0.2s ease;
}

.token5-bc-chip i {
  color: var(--ah-primary);
  font-size: 0.85rem;
}

.token5-bc-chip:hover {
  color: #3d3314;
  border-color: rgba(185, 146, 53, 0.55);
  box-shadow: 0 8px 28px rgba(185, 146, 53, 0.22);
  transform: translateY(-2px);
}

.token5-bc-chip--current {
  background: linear-gradient(135deg, #967a28, #b99235, #c9a84a);
  color: #fff !important;
  border-color: transparent;
  box-shadow: 0 8px 28px rgba(185, 146, 53, 0.35);
  cursor: default;
  padding-left: 1rem;
  padding-right: 1rem;
}

.token5-page-header__kicker {
  color: var(--ah-primary);
  letter-spacing: 0.14em;
}

.token5-page-header__title {
  letter-spacing: -0.02em;
  line-height: 1.15;
  background: linear-gradient(120deg, #0f172a 0%, #3d3314 55%, var(--ah-primary-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

@supports not (background-clip: text) {
  .token5-page-header__title {
    -webkit-text-fill-color: unset;
    color: #0f172a;
  }
}

.token5-page-header__lead {
  max-width: 36rem;
}

.token5-gallery-shell {
  position: relative;
  padding: 1rem 1rem 1.15rem;
  border-radius: 24px;
  background: linear-gradient(155deg, #fff 0%, #faf6eb 55%, #f5ecd8 100%);
  border: 1px solid rgba(185, 146, 53, 0.28);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.token5-gallery-label {
  color: var(--ah-primary-dark);
  letter-spacing: 0.12em;
}

.token5-page .token5-carousel .carousel-item img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  background: linear-gradient(180deg, #f8f4eb 0%, #ebe4d4 100%);
}

.token5-page .token5-carousel .carousel-inner {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(185, 146, 53, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.token5-page .token5-carousel .carousel-indicators {
  margin-bottom: 0.65rem;
}

.token5-page .token5-carousel .carousel-indicators [type="button"] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background-color: rgba(15, 23, 42, 0.2);
  transition: width 0.3s ease, border-radius 0.3s ease, background-color 0.25s ease, transform 0.25s ease;
}

.token5-page .token5-carousel .carousel-indicators [type="button"].active {
  width: 1.75rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ah-primary-dark), var(--ah-primary));
  transform: scaleY(1.1);
}

.token5-page .token5-carousel .carousel-control-prev,
.token5-page .token5-carousel .carousel-control-next {
  width: 2.75rem;
  height: 2.75rem;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(185, 146, 53, 0.35);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.12);
  opacity: 1;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.token5-page .token5-carousel .carousel-control-prev {
  left: 0.65rem;
}

.token5-page .token5-carousel .carousel-control-next {
  right: 0.65rem;
}

.token5-page .token5-carousel .carousel-control-prev:hover,
.token5-page .token5-carousel .carousel-control-next:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 10px 28px rgba(185, 146, 53, 0.25);
}

.token5-page .token5-carousel .carousel-control-prev-icon,
.token5-page .token5-carousel .carousel-control-next-icon {
  filter: brightness(0) saturate(100%) invert(52%) sepia(32%) saturate(638%) hue-rotate(5deg) brightness(92%) contrast(88%);
  width: 1.35rem;
  height: 1.35rem;
}

.token5-aside-card {
  position: relative;
  padding: 1.5rem 1.5rem 1.65rem;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(185, 146, 53, 0.2);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07);
  overflow: hidden;
}

.token5-aside-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ah-primary-dark), var(--ah-primary), var(--ah-primary-light));
  opacity: 0.95;
}

.token5-pill-stat {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 999px;
  color: #5c4a1a;
  background: rgba(185, 146, 53, 0.1);
  border: 1px solid rgba(185, 146, 53, 0.22);
}

.token5-pill-stat i {
  color: var(--ah-primary-dark);
}

.token5-pill-stat--accent {
  background: linear-gradient(135deg, rgba(185, 146, 53, 0.18), rgba(212, 176, 96, 0.2));
  border-color: rgba(185, 146, 53, 0.35);
}

.token5-price {
  display: inline-block;
  background: linear-gradient(135deg, #967a28, #b99235, #d4b060);
  color: #fff;
  font-weight: 700;
  padding: 0.75rem 1.35rem;
  border-radius: 14px;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 10px 28px rgba(185, 146, 53, 0.35);
  letter-spacing: 0.01em;
}

.token5-table-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.05);
}

.token5-page .token5-table {
  border-color: rgba(185, 146, 53, 0.45) !important;
  margin-bottom: 0 !important;
}

.token5-page .token5-table thead th {
  background: linear-gradient(135deg, #967a28, #b99235);
  color: #fff;
  font-weight: 600;
  border-color: rgba(185, 146, 53, 0.55) !important;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.token5-page .token5-table td,
.token5-page .token5-table th {
  border-color: rgba(185, 146, 53, 0.32) !important;
  vertical-align: middle;
}

.token5-page .token5-table tbody td {
  background: #fff;
  font-size: 1rem;
}

.token5-cta-shine {
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(185, 146, 53, 0.4);
}

.token5-cta-shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  animation: token5-cta-shine 3.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes token5-cta-shine {
  0% {
    left: -120%;
  }
  40%,
  100% {
    left: 160%;
  }
}

.token5-blink {
  animation: token5-blink 1.2s ease-in-out infinite;
}

@keyframes token5-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.72;
  }
}

.token5-tagline {
  padding-top: 0.25rem;
  border-top: 1px dashed rgba(185, 146, 53, 0.35);
}

.token5-summary {
  position: relative;
  background: linear-gradient(145deg, #fff 0%, #faf6eb 40%, #f3ead4 100%);
  border: 1px solid rgba(185, 146, 53, 0.35);
  border-radius: 18px;
  padding: 1.25rem 1.35rem 1.25rem 3.25rem;
  line-height: 1.75;
  box-shadow: 0 10px 36px rgba(15, 23, 42, 0.06);
}

.token5-summary__icon {
  position: absolute;
  left: 1rem;
  top: 1rem;
  font-size: 1.5rem;
  color: rgba(185, 146, 53, 0.35);
  line-height: 1;
}

.token5-summary p {
  margin: 0;
}

.token5-tabs-head__eyebrow {
  color: var(--ah-primary);
  letter-spacing: 0.16em;
}

.token5-tabs-rail {
  border-radius: 20px;
  background: linear-gradient(145deg, #fff, #faf8f3);
  border: 1px solid rgba(185, 146, 53, 0.2);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.05);
}

.token5-page .nav-pills .nav-link {
  color: var(--ah-ink);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(185, 146, 53, 0.22);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.token5-page .nav-pills .nav-link:hover {
  border-color: rgba(185, 146, 53, 0.45);
  color: var(--ah-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(185, 146, 53, 0.15);
}

.token5-page .nav-pills .nav-link.active,
.token5-page .nav-pills .nav-link.active:hover {
  background: linear-gradient(135deg, #967a28, #b99235) !important;
  color: #fff !important;
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(185, 146, 53, 0.35);
  transform: translateY(-1px);
}

.token5-tab-card {
  border: 1px solid rgba(185, 146, 53, 0.22);
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 14px 44px rgba(15, 23, 42, 0.07);
  background: #fff;
}

.token5-tab-card h3 {
  background: linear-gradient(100deg, #8a7028 0%, #b99235 45%, #c9a84a 100%);
  color: #fff;
  padding: 0.85rem 1.15rem;
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.token5-tab-card .table {
  margin-bottom: 0;
}

.token5-tab-card tbody th {
  width: 38%;
  background: #fdfbf7;
  color: #5c4a1a;
  font-weight: 600;
}

.token5-tab-card tbody tr:nth-child(even) td,
.token5-tab-card tbody tr:nth-child(even) th {
  background-color: rgba(185, 146, 53, 0.04);
}

.token5-tab-card tbody tr:hover td,
.token5-tab-card tbody tr:hover th {
  background-color: rgba(185, 146, 53, 0.1) !important;
  transition: background-color 0.2s ease;
}

.token5-highlight-features {
  margin-top: 1.15rem;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  border: 1px solid rgba(185, 146, 53, 0.35);
  background: linear-gradient(135deg, #fff 0%, #faf8f3 55%, #f5ecd8 100%);
  font-weight: 600;
  font-size: 0.95rem;
  color: #5c4a1a;
  line-height: 1.65;
  box-shadow: 0 6px 22px rgba(15, 23, 42, 0.05);
}

@media (max-width: 575.98px) {
  .token5-bc-chip {
    font-size: 0.82rem;
    padding: 0.4rem 0.75rem;
  }

  .token5-page .token5-carousel .carousel-control-prev,
  .token5-page .token5-carousel .carousel-control-next {
    width: 2.35rem;
    height: 2.35rem;
  }

  .token5-summary {
    padding-left: 1.15rem;
    padding-top: 2.5rem;
  }

  .token5-summary__icon {
    left: 50%;
    transform: translateX(-50%);
    top: 0.65rem;
  }
}
