.main-nav a.active {
  color: #d7bb52;
}

/* ---------- PAGE / BREADCRUMB HERO ---------- */
.page-hero {
  background: linear-gradient(120deg, #22A39A 0%, #22A39A 100%);
  color: #fff;
  padding: 70px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 85% 20%, rgba(255,255,255,.08) 0, transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(255,255,255,.06) 0, transparent 40%);
  pointer-events: none;
}

.page-hero h1 {
  font-size: 2.8rem;
  margin-bottom: .5rem;
  position: relative;
}

.page-hero p {
  font-size: var(--font-size-large);
  opacity: .92;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.page-hero .crumbs {
  font-size: .95rem;
  opacity: .8;
  margin-bottom: 14px;
  position: relative;
}

.page-hero .crumbs a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px dotted rgba(255,255,255,.5);
}

.page-hero .crumbs a:hover {
  border-bottom-color: #fff;
}

/* ---------- ORDER STEPS ---------- */
.steps-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.step-card {
  flex: 1 1 240px;
  max-width: 280px;
  background: #fff;
  border-radius: 14px;
  padding: 30px 22px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
  position: relative;
  transition: transform .3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-card .step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #22A39A;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 16px;
}

.step-card h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.step-card p {
  font-size: .95rem;
  margin-bottom: 0;
  color: #555;
}

/* ---------- TRUST BADGES ---------- */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 150px;
}

.trust-badge .icon-circle {
  width: 74px;
  height: 74px;
  background-color: rgba(34,163,154,.12);
  color: #174A49;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 16px;
}

.trust-badge .icon-circle svg {
  width: 34px;
  height: 34px;
}

.trust-badge span {
  font-weight: 600;
  font-size: .95rem;
  color: #22A39A;
}

/* ---------- TIMELINE (about page) ---------- */
.timeline {
  position: relative;
  margin: 0 auto;
  max-width: 800px;
  padding-left: 30px;
  border-left: 3px solid #d7bb52;
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
  padding-left: 26px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -39px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #22A39A;
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px #d7bb52;
}

.timeline-item h4 {
  color: #22A39A;
  margin-bottom: 6px;
}

.timeline-item span.year {
  color: #d7bb52;
  font-weight: 700;
  letter-spacing: .5px;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: linear-gradient(90deg, #22A39A 0%, #22A39A 100%);
  color: #fff;
  border-radius: 18px;
  padding: 50px 30px;
  text-align: center;
}

.cta-banner h2 {
  margin-bottom: 12px;
}

.cta-banner p {
  opacity: .92;
  max-width: 600px;
  margin: 0 auto 24px;
}

/* ---------- AUTHENTICITY / VERIFY BOX (official page) ---------- */
.authentic-box {
  background: #fff8e6;
  border: 2px solid #d7bb52;
  border-radius: 14px;
  padding: 26px 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.authentic-box .warn-icon {
  font-size: 2rem;
  color: #c99a1e;
  flex-shrink: 0;
}

.authentic-box h4 {
  color: #22A39A;
  margin-bottom: 8px;
}

.authentic-box p {
  margin-bottom: 0;
  color: #555;
}

.verify-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.verify-item {
  background: #fff;
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 3px 10px rgba(0,0,0,.06);
}

.verify-item i {
  color: #22A39A;
  font-size: 1.3rem;
}

/* ---------- "BEST" RIBBON ---------- */
.best-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #E44D26;
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: .5px;
  box-shadow: 0 3px 8px rgba(0,0,0,.2);
}

/* ---------- STICKY MOBILE BUY BAR (buy page) ---------- */
.sticky-buy-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9998;
  background: #fff;
  box-shadow: 0 -4px 16px rgba(0,0,0,.12);
  padding: 12px 16px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sticky-buy-bar strong {
  color: #22A39A;
}

@media (max-width: 768px) {
  .sticky-buy-bar {
    display: flex;
  }
  body {
    padding-bottom: 70px;
  }
}

/* ---------- FAQ ACCORDION THEME ---------- */
.accordion-button:not(.collapsed) {
  color: #22A39A;
  background-color: #eaf6f5;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: #22A39A;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 768px) {
  .page-hero {
    padding: 55px 0 45px;
  }
  .page-hero h1 {
    font-size: 2.1rem;
  }
  .verify-grid {
    grid-template-columns: 1fr;
  }
  .timeline {
    padding-left: 22px;
  }
  .timeline-item {
    padding-left: 20px;
  }
  .authentic-box {
    flex-direction: column;
    text-align: center;
  }
  [data-aos-delay] {
    transition-delay: 0s !important;
  }
}