/* ============================================================
   FONEPRO — Catalogue Styles
   Used on: /repairs/, /mobile-phone/, /tablet/, /laptop/,
            /smartwatch/, brand pages, device pages
   ============================================================ */


/* ── Journey Stepper ──────────────────────────────────────── */
.fp-journey-bar   { margin-bottom: 24px; overflow: hidden; }
.fp-journey-steps { display: flex; align-items: center; gap: 0; }
.fp-journey-step  { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }

.fp-journey-num {
  width: 22px; height: 22px;
  border-radius: 50%;
  font-size: .6875rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fp-journey-num.current  { background: #10b981; color: #fff; box-shadow: 0 0 0 3px rgba(16,185,129,.2); }
.fp-journey-num.done     { background: #10b981; color: #fff; }
.fp-journey-num.upcoming { background: #e9eaec; color: #b0b7c3; }

.fp-journey-label { font-size: .8125rem; font-weight: 600; white-space: nowrap; }
.fp-journey-label.current  { color: #111; }
.fp-journey-label.done     { color: #10b981; }
.fp-journey-label.upcoming { display: none; }

.fp-journey-sep {
  width: 28px; height: 1.5px;
  background: #e5e7eb;
  margin: 0 6px;
  border-radius: 2px;
  flex-shrink: 0;
}

/* Clickable completed steps */
a.fp-journey-step { text-decoration: none; }
a.fp-journey-step:hover .fp-journey-num.done { transform: scale(1.1); }

/* ── Mobile: hide done labels, only show current step name ── */
@media (max-width: 640px) {
  .fp-journey-bar { overflow: visible; } /* let container handle clip */
  .fp-journey-steps { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 2px; }
  .fp-journey-label.done { display: none; }
  .fp-journey-step { gap: 4px; }
  .fp-journey-sep { width: 12px; margin: 0 3px; }
}

@media (max-width: 480px) {
  .fp-journey-sep { width: 10px; margin: 0 2px; }
}


/* ── Category Cards (repairs hub index) ───────────────────── */
.fp-cat-card {
  display: flex; flex-direction: column;
  text-decoration: none;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 20px;
  padding: 32px 28px;
  transition: all .2s;
  height: 100%;
}
.fp-cat-card:hover {
  border-color: #10b981;
  box-shadow: 0 8px 32px rgba(16,185,129,.12);
  transform: translateY(-3px);
}

.fp-cat-icon {
  width: 64px; height: 64px;
  background: #ecfdf5;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; color: #10b981;
  margin-bottom: 20px;
  transition: all .2s;
}
.fp-cat-card:hover .fp-cat-icon { background: #10b981; color: #fff; }

.fp-cat-name  { font-size: 1.125rem; font-weight: 800; color: #111; letter-spacing: -.02em; margin-bottom: 6px; }
.fp-cat-desc  { font-size: .875rem; color: #6b7280; margin-bottom: 16px; line-height: 1.5; flex: 1; }

.fp-cat-brands    { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.fp-cat-brand-tag { font-size: .75rem; font-weight: 600; color: #374151; background: #f3f4f6; border-radius: 6px; padding: 3px 8px; }

.fp-cat-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .875rem; font-weight: 700; color: #10b981;
  margin-top: auto;
}


/* ── Brand Cards (category page) ──────────────────────────── */


/* ── Step helpers ─────────────────────────────────────────── */
.fp-step-label { font-size: 1rem; font-weight: 700; color: #111; margin-bottom: 6px; }
.fp-step-sub   { font-size: .875rem; color: #6b7280; margin-bottom: 24px; }


/* ── Shared section wrappers ──────────────────────────────── */
.fp-section        { padding: 64px 0; }
.fp-section--grey  { background: #f9fafb; }
.fp-section--white { background: #fff; }
.fp-section--dark  { background: #111; }
.fp-step1-section  { background: #f9fafb; padding: 48px 0 56px; }
@media (max-width: 767px) {
  .fp-step1-section { padding-top: 20px; }
}

/* ── Category cards — compact 2-per-row on mobile ── */
@media (max-width: 767px) {
  .fp-cat-card {
    padding: 16px 14px;
    border-radius: 14px;
    align-items: center;
    text-align: center;
  }
  .fp-cat-icon {
    width: 44px; height: 44px;
    border-radius: 11px;
    font-size: 20px;
    margin-bottom: 10px;
  }
  .fp-cat-name { font-size: .9375rem; margin-bottom: 4px; }
  .fp-cat-desc { display: none; }
  .fp-cat-brands { display: none; }
  .fp-cat-arrow { font-size: .75rem; margin-top: 8px; }
}

.fp-section-head     { text-align: center; margin-bottom: 48px; }
.fp-section-head--sm { margin-bottom: 40px; }

.fp-section-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: #10b981; margin-bottom: 10px;
}
.fp-section-title {
  font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800;
  color: #111; letter-spacing: -.03em; margin-bottom: 10px;
}
.fp-section-sub        { color: #6b7280; font-size: .9375rem; max-width: 520px; margin: 0 auto; }
.fp-section-sub--wide  { max-width: none; }


/* ── Trust strip ──────────────────────────────────────────── */
.fp-trust-strip {
  position: relative;
  border-radius: 20px;
  padding: 40px 48px;
  margin-top: 48px;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #0f1f17 50%, #0a0a0a 100%);
}
.fp-trust-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.fp-trust-glow--left  { left: -60px; top: -60px; width: 260px; height: 260px; background: radial-gradient(circle, rgba(16,185,129,.18) 0%, transparent 70%); }
.fp-trust-glow--right { right: -60px; bottom: -60px; width: 220px; height: 220px; background: radial-gradient(circle, rgba(16,185,129,.12) 0%, transparent 70%); }
.fp-trust-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  border-radius: 20px;
}
.fp-trust-stats {
  position: relative; z-index: 2;
  display: flex; align-items: center;
  justify-content: space-around;
  flex-wrap: wrap; gap: 24px;
}
.fp-trust-stat      { text-align: center; min-width: 100px; }
.fp-trust-stat-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(16,185,129,.12);
  border: 1px solid rgba(16,185,129,.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  color: #10b981; font-size: 1.125rem;
}
.fp-trust-val   { font-size: 1.625rem; font-weight: 900; color: #fff; letter-spacing: -.03em; line-height: 1; }
.fp-trust-label { font-size: .75rem; font-weight: 500; color: rgba(255,255,255,.45); margin-top: 5px; text-transform: uppercase; letter-spacing: .08em; }


/* ── How It Works ─────────────────────────────────────────── */
.fp-hiw-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px 24px;
  height: 100%;
}
.fp-hiw-num {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: #111; color: #fff;
  font-size: 1.125rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.fp-hiw-num--active { background: #10b981; }
.fp-hiw-title       { font-size: 1rem; font-weight: 700; color: #111; margin-bottom: 8px; }
.fp-hiw-desc        { font-size: .875rem; color: #6b7280; margin: 0; line-height: 1.6; }

/* ── How It Works — horizontal scroll on mobile ── */
@media (max-width: 767px) {
  .fp-hiw-scroll-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-left: -12px;
    margin-right: -12px;
    padding: 4px 12px 12px;
  }
  .fp-hiw-scroll-wrap::-webkit-scrollbar { display: none; }
  .fp-hiw-col {
    flex: 0 0 220px !important;
    width: 220px !important;
    max-width: 220px !important;
  }
  .fp-hiw-card {
    padding: 20px 16px;
  }
}


/* ── Popular Repairs: brand links ─────────────────────────── */
.fp-subhead {
  font-size: .8125rem; font-weight: 700;
  color: #9ca3af; text-transform: uppercase;
  letter-spacing: .08em; margin-bottom: 14px;
}
/* ── Popular Repairs & Devices — horizontal scroll on mobile ── */
@media (max-width: 767px) {
  .fp-popular-scroll-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-left: -12px;
    margin-right: -12px;
    padding: 4px 12px 12px;
  }
  .fp-popular-scroll-wrap::-webkit-scrollbar { display: none; }
  .fp-popular-col {
    flex: 0 0 210px !important;
    width: 210px !important;
    max-width: 210px !important;
    padding-right: 12px !important;
  }
  .fp-popular-col:last-child {
    padding-right: 0 !important;
  }
  .fp-repair-link {
    justify-content: center;
    font-size: .8125rem;
    padding: 12px 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .fp-device-thumb { display: none !important; }
}

.fp-repair-link {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px; background: #fff;
  text-decoration: none;
  font-size: .875rem; font-weight: 600; color: #374151;
  transition: all .18s;
}
.fp-repair-link:hover    { border-color: #10b981; color: #10b981; }
.fp-repair-link i        { color: #10b981; font-size: 1rem; flex-shrink: 0; }


/* ── Device tabs ──────────────────────────────────────────── */
.fp-device-tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 32px; }
.fp-device-tab {
  padding: 8px 20px;
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
  font-size: .875rem; font-weight: 600;
  cursor: pointer;
  border: 1.5px solid #e5e7eb;
  background: #fff; color: #6b7280;
  transition: all .18s;
}
.fp-device-tab--active,
.fp-device-tab:hover { border-color: #10b981; background: #10b981; color: #fff; }


/* ── Device panels ────────────────────────────────────────── */
.fp-device-panel         { display: none; }
.fp-device-panel--active { display: block; }


/* ── Device cards ─────────────────────────────────────────── */
.fp-device-card {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  text-decoration: none; background: #fff;
  transition: all .18s;
}
.fp-device-card:hover  { border-color: #10b981; background: rgba(16,185,129,.04); }
.fp-device-thumb {
  width: 32px; height: 32px;
  border-radius: 8px; background: #f3f4f6;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #9ca3af; font-size: .875rem;
}
.fp-device-name { font-size: .8125rem; font-weight: 700; color: #111; line-height: 1.3; }
.fp-device-sub  { font-size: .75rem; color: #9ca3af; margin-top: 1px; }


/* ── Browse all ───────────────────────────────────────────── */
.fp-browse-all {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: .875rem; font-weight: 600; color: #374151;
  text-decoration: none; transition: all .18s;
}
.fp-browse-all:hover { border-color: #10b981; color: #10b981; }
.fp-browse-all i     { color: #10b981; }


/* ── FAQ ──────────────────────────────────────────────────── */
.fp-faq-item   { border: 1px solid #e5e7eb; border-radius: 12px; margin-bottom: 8px; overflow: hidden; background: #fff; }
.fp-faq-btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 20px; background: none; border: none;
  font-family: 'Inter', sans-serif; font-size: .9375rem; font-weight: 600;
  color: #111; cursor: pointer; text-align: left; gap: 16px;
}
.fp-faq-btn i    { color: #10b981; font-size: 1.125rem; flex-shrink: 0; }
.fp-faq-answer   { display: none; padding: 0 20px 18px; font-size: .9rem; color: #6b7280; line-height: 1.7; }

.fp-faq-footer        { text-align: center; margin-top: 32px; }
.fp-faq-footer-sub    { font-size: .9rem; color: #6b7280; margin-bottom: 12px; }
.fp-faq-footer-links  { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.fp-faq-contact-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px;
  border: 1.5px solid #e5e7eb; border-radius: 10px;
  font-size: .875rem; font-weight: 600; color: #374151;
  text-decoration: none; transition: all .18s;
}
.fp-faq-contact-link:hover { border-color: #10b981; color: #10b981; }


/* ── Newsletter (compact full-width banner) ───────────────── */
.fp-newsletter {
  position: relative;
  overflow: hidden;
  padding: 32px 0;
  background: linear-gradient(135deg, #0d1f17 0%, #0a1a10 60%, #0d1f17 100%);
  border-top: 1px solid rgba(16,185,129,.12);
  border-bottom: 1px solid rgba(16,185,129,.12);
}

.fp-newsletter-inner { position: relative; z-index: 2; padding-top: 0; padding-bottom: 0; }

.fp-newsletter-glow { position: absolute; border-radius: 50%; pointer-events: none; }
.fp-newsletter-glow--left  { left: -60px; top: -60px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(16,185,129,.14) 0%, transparent 70%); }
.fp-newsletter-glow--right { right: -60px; bottom: -60px; width: 260px; height: 260px; background: radial-gradient(circle, rgba(16,185,129,.09) 0%, transparent 70%); }

.fp-newsletter-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 36px 36px;
}

/* Horizontal layout: copy left, form right */
.fp-newsletter-body {
  position: relative; z-index: 2;
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
  min-height: 0;
}

.fp-newsletter-copy {
  flex: 0 1 auto; min-width: 0;
  display: flex; flex-direction: column; justify-content: center;
}

.fp-newsletter-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .6875rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: #10b981; margin-bottom: 4px;
}
.fp-newsletter-title {
  font-size: 1.125rem; font-weight: 800;
  color: #fff; letter-spacing: -.02em;
  margin: 0 0 3px;
}
.fp-newsletter-sub {
  font-size: .8125rem; color: rgba(255,255,255,.45);
  margin: 0; line-height: 1.5;
}

/* Form */
.fp-newsletter-form {
  flex: 1; max-width: 520px; min-width: 280px;
  display: flex; flex-direction: column; justify-content: center;
  align-self: center;
}

.fp-newsletter-field {
  display: flex;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: 10px; overflow: hidden;
  transition: border-color .2s;
}
.fp-newsletter-field:focus-within { border-color: #10b981; }

.fp-newsletter-input {
  flex: 1; padding: 11px 14px;
  background: transparent; border: none; outline: none;
  font-family: 'Inter', sans-serif; font-size: .875rem; color: #fff;
}
.fp-newsletter-input::placeholder { color: rgba(255,255,255,.3); }

.fp-newsletter-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 11px 18px;
  background: linear-gradient(160deg, #10b981 0%, #059669 100%);
  border: none; cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: .875rem; font-weight: 700; color: #fff;
  transition: opacity .18s; flex-shrink: 0;
}
.fp-newsletter-btn:hover    { opacity: .88; }
.fp-newsletter-btn:disabled { opacity: .6; cursor: not-allowed; }

.fp-newsletter-msg          { font-size: .8125rem; margin-top: 7px; min-height: 18px; }
.fp-newsletter-msg--success { color: #10b981; }
.fp-newsletter-msg--error   { color: #f87171; }

/* Stack on tablet / mobile */
@media (max-width: 768px) {
  .fp-newsletter        { padding: 28px 0; }
  .fp-newsletter-body   { flex-direction: column; align-items: flex-start; gap: 20px; }
  .fp-newsletter-form   { width: 100%; }
}


/* ── CTA banner ───────────────────────────────────────────── */
.fp-cta       { text-align: center; max-width: 600px; margin: 0 auto; }
.fp-cta-title { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; color: #fff; letter-spacing: -.03em; margin-bottom: 12px; }
.fp-cta-sub   { color: rgba(255,255,255,.6); font-size: .9375rem; margin-bottom: 32px; }
.fp-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(160deg, #10b981 0%, #059669 100%);
  color: #fff; border-radius: 12px;
  font-size: 1rem; font-weight: 700; text-decoration: none;
  box-shadow: 0 4px 20px rgba(16,185,129,.35);
  transition: opacity .18s;
}
.fp-cta-btn:hover  { opacity: .9; color: #fff; }
.fp-cta-badges     { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 28px; flex-wrap: wrap; }
.fp-cta-badge      { display: flex; align-items: center; gap: 7px; font-size: .8125rem; color: rgba(255,255,255,.5); }
.fp-cta-badge i    { color: #10b981; }


/* ── Repairs Hero (shared partial: includes/repairs-hero.php) ─ */
.fp-repairs-hero         { background: #0a0a0a; padding: 32px 0 30px; position: relative; }
.fp-repairs-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(16,185,129,.16) 0%, transparent 70%); pointer-events: none; overflow: hidden; }
.fp-repairs-hero::after  { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 48px 48px; pointer-events: none; overflow: hidden; }
.fp-repairs-hero-inner   { position: relative; z-index: 2; }

/* Breadcrumb */
.fp-hero-breadcrumb        { display: inline-flex; align-items: center; gap: 6px; font-size: .8125rem; color: rgba(255,255,255,.35); margin-bottom: 14px; }
.fp-hero-breadcrumb a      { color: rgba(255,255,255,.45); text-decoration: none; transition: color .15s; }
.fp-hero-breadcrumb a:hover { color: #10b981; }
.fp-hero-breadcrumb-sep    { font-size: 9px; }

/* H1 */
.fp-repairs-hero h1      { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 900; color: #fff; letter-spacing: -.04em; line-height: 1.05; margin-bottom: 6px; }
.fp-repairs-hero h1 span { color: #10b981; }
.fp-hero-sub             { font-size: .875rem; color: rgba(255,255,255,.45); margin-bottom: 16px; }

/* Trust pills */
.fp-hero-pills { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.fp-hero-pill  { display: inline-flex; align-items: center; gap: 5px; font-size: .75rem; font-weight: 600; color: rgba(255,255,255,.65); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 20px; padding: 4px 11px; }
.fp-hero-pill i { color: #10b981; font-size: .8125rem; }

/* Search bar */
.fp-search-wrap            { position: relative; max-width: 520px; }
.fp-search-input           { width: 100%; padding: 13px 54px 13px 18px; border-radius: 12px; border: 2px solid rgba(255,255,255,.1); font-family: 'Inter', sans-serif; font-size: .9375rem; color: #111; outline: none; box-shadow: 0 6px 32px rgba(0,0,0,.35); background: #fff; transition: border-color .2s; }
.fp-search-input:focus     { border-color: #10b981; }
.fp-search-input::placeholder { color: #9ca3af; }
.fp-search-btn             { position: absolute; right: 7px; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; border-radius: 9px; background: linear-gradient(160deg, #10b981, #059669); border: none; color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: .9375rem; box-shadow: 0 2px 10px rgba(16,185,129,.4); transition: opacity .15s; }
.fp-search-btn:hover       { opacity: .9; }

/* Search dropdown */
.fp-search-results         { position: absolute; top: calc(100% + 6px); left: 0; right: 0; background: #fff; border-radius: 12px; box-shadow: 0 12px 48px rgba(0,0,0,.2); z-index: 9999; overflow: hidden; max-height: 320px; overflow-y: auto; display: none; border: 1px solid #e5e7eb; }
.fp-search-result-item     { display: flex; align-items: center; gap: 12px; padding: 11px 16px; text-decoration: none; color: #111; border-bottom: 1px solid #f3f4f6; transition: background .15s; }
.fp-search-result-item:last-child { border-bottom: none; }
.fp-search-result-item:hover      { background: #ecfdf5; }
.fp-search-result-icon     { width: 32px; height: 32px; border-radius: 8px; background: #f3f4f6; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fp-search-result-cat-icon { color: #10b981; font-size: 14px; }
.fp-search-result-name     { font-size: .875rem; font-weight: 700; color: #111; }
.fp-search-result-sub      { font-size: .75rem; color: #9ca3af; margin-top: 1px; }
.fp-search-result-arrow    { color: #d1d5db; font-size: .875rem; }

/* Search empty state */
.fp-search-empty      { padding: 20px 16px; text-align: center; font-size: .875rem; color: #9ca3af; }
.fp-search-empty-icon { display: block; font-size: 1.5rem; margin-bottom: 6px; color: #d1d5db; }
.fp-search-empty-hint { font-size: .8125rem; }

/* Hint text below search bar */
.fp-search-hint      { font-size: .75rem; color: rgba(255,255,255,.3); margin-top: 8px; }
.fp-search-hint-icon { color: #10b981; }


/* ── Category page specific ──────────────────────────────── */
.fp-cat-step-head  { margin-bottom: 28px; }
.fp-cat-step-title { font-size: 1.25rem; font-weight: 800; color: #111; letter-spacing: -.025em; margin: 0 0 6px; }
.fp-cat-step-sub   { font-size: .875rem; color: #6b7280; margin: 0; }
.fp-check-icon     { font-size: .625rem; font-weight: 900; }

/* ── Empty state ─────────────────────────────────────────── */
.fp-empty-state      { text-align: center; padding: 60px 20px; }
.fp-empty-state-icon { display: block; font-size: 3rem; color: #d1d5db; margin-bottom: 16px; }
.fp-empty-state-text { color: #6b7280; font-size: .9375rem; margin-bottom: 24px; }

/* ── No-services fallback CTA ────────────────────────────── */
.fp-no-svc-card {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  padding: 20px;
  text-align: left;
}
.fp-no-svc-icon {
  width: 40px; height: 40px;
  background: #ecfdf5;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #10b981;
  margin-bottom: 10px;
}
.fp-no-svc-title {
  font-size: .9375rem;
  font-weight: 800; color: #111;
  margin-bottom: 6px;
}
.fp-no-svc-body {
  font-size: .8125rem; color: #6b7280;
  margin: 0 auto 14px;
  line-height: 1.5;
}
.fp-no-svc-actions {
  display: flex; gap: 8px; justify-content: flex-start; flex-wrap: wrap;
  margin-bottom: 14px;
}
.fp-no-svc-btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  background: #10b981; color: #fff;
  padding: 7px 16px; border-radius: 8px;
  font-weight: 700; font-size: .8125rem;
  text-decoration: none; transition: background .18s;
}
.fp-no-svc-btn-primary:hover { background: #059669; color: #fff; }
.fp-no-svc-btn-secondary {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1.5px solid #e5e7eb; color: #374151;
  padding: 7px 16px; border-radius: 8px;
  font-weight: 700; font-size: .8125rem;
  text-decoration: none; transition: border-color .18s, color .18s;
}
.fp-no-svc-btn-secondary:hover { border-color: #10b981; color: #10b981; }
.fp-no-svc-trust {
  display: flex; gap: 10px; justify-content: flex-start; flex-wrap: wrap;
  border-top: 1px solid #f3f4f6; padding-top: 12px; margin-bottom: 0;
}
.fp-no-svc-trust span {
  font-size: .7rem; font-weight: 600; color: #9ca3af;
  display: flex; align-items: center; gap: 3px;
}
.fp-no-svc-trust i { color: #10b981; font-size: .7rem; }

.fp-no-svc-sidebar-items {
  display: flex; flex-direction: column; gap: 10px;
  margin: 16px 0;
  border: 1.5px solid #f3f4f6;
  border-radius: 12px;
  padding: 14px 16px;
  background: #f9fafb;
}
.fp-no-svc-sidebar-item {
  display: flex; align-items: center; gap: 10px;
  font-size: .8125rem; font-weight: 600; color: #374151;
}
.fp-no-svc-sidebar-item i { color: #10b981; font-size: 1rem; flex-shrink: 0; }


/* ── Brand Page — Model List ──────────────────────────────── */
.fp-model-year-label {
  font-size: .6875rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: #9ca3af;
  padding: 20px 0 8px;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 8px;
}
.fp-model-year-label:first-child { padding-top: 0; }

.fp-model-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 4px; }

.fp-model-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  text-decoration: none;
  color: #111;
  transition: border-color .16s, box-shadow .16s, transform .16s;
}
.fp-model-link:hover {
  border-color: #10b981;
  background: rgba(16,185,129,.025);
  transform: translateX(3px);
  box-shadow: 0 2px 12px rgba(16,185,129,.08);
  color: #111;
}

.fp-model-left { display: flex; align-items: center; gap: 12px; }

.fp-model-icon {
  width: 34px; height: 34px; border-radius: 9px;
  background: #f3f4f6;
  display: flex; align-items: center; justify-content: center;
  color: #6b7280; font-size: .875rem;
  flex-shrink: 0;
  transition: background .16s, color .16s;
}
.fp-model-link:hover .fp-model-icon { background: #d1fae5; color: #10b981; }

.fp-model-name { font-size: .9375rem; font-weight: 700; }

.fp-model-cta {
  font-size: .8125rem; font-weight: 600; color: #10b981;
  display: flex; align-items: center; gap: 4px;
  white-space: nowrap; flex-shrink: 0;
}
.fp-model-link:hover .fp-model-cta { color: #059669; }

.fp-model-not-found {
  text-align: center;
  padding: 28px 0 8px;
}
.fp-model-not-found-text {
  font-size: .875rem; color: #6b7280; margin-bottom: 12px;
}

/* ── Brand Page — Sidebar ─────────────────────────────────── */
.fp-brand-sidebar {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  position: sticky;
  top: 90px;
}
.fp-brand-sidebar-head {
  font-size: .75rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: #9ca3af;
  padding: 16px 20px 12px;
  border-bottom: 1px solid #f3f4f6;
}
.fp-brand-sidebar-link {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 20px;
  text-decoration: none;
  font-size: .875rem; font-weight: 600; color: #374151;
  border-bottom: 1px solid #f9fafb;
  transition: background .15s, color .15s;
}
.fp-brand-sidebar-link:last-child { border-bottom: none; }
.fp-brand-sidebar-link i:first-child { color: #9ca3af; font-size: .875rem; }
.fp-brand-sidebar-link:hover { background: #ecfdf5; color: #10b981; }
.fp-brand-sidebar-link:hover i { color: #10b981; }


/* ── Device Page — Services section ──────────────────────── */
.fp-device-svc-title { font-size: 1.125rem; font-weight: 800; color: #111; letter-spacing: -.02em; margin-bottom: 2px; }
.fp-device-svc-sub   { color: #6b7280; font-size: .875rem; margin-bottom: 16px; }

.fp-svc-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  min-width: 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .fp-svc-list { grid-template-columns: 1fr; }
}

.fp-svc-card {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .18s, box-shadow .18s;
}
.fp-svc-card:hover    { border-color: #10b981; box-shadow: 0 2px 12px rgba(16,185,129,.08); }
.fp-svc-card.selected { border-color: #10b981; background: rgba(16,185,129,.04); box-shadow: 0 0 0 3px rgba(16,185,129,.12); }

.fp-svc-top       { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.fp-svc-left      { display: flex; gap: 10px; align-items: center; }

.fp-svc-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: #f3f4f6;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #374151;
  flex-shrink: 0;
  transition: background .18s, color .18s;
}
.fp-svc-card.selected .fp-svc-icon,
.fp-svc-card:hover    .fp-svc-icon { background: rgba(16,185,129,.12); color: #10b981; }

.fp-svc-name      { font-size: .875rem; font-weight: 700; color: #111; line-height: 1.2; }
.fp-svc-desc      { font-size: .75rem; color: #9ca3af; line-height: 1.4; margin-top: 2px; }

.fp-svc-price-col { text-align: right; flex-shrink: 0; }
.fp-svc-price     { font-size: 1rem; font-weight: 900; color: #10b981; white-space: nowrap; }
.fp-svc-price-vat { font-size: .6875rem; color: #9ca3af; font-weight: 500; }

.fp-svc-meta      { display: flex; gap: 10px; flex-wrap: wrap; padding-top: 8px; border-top: 1px solid #f3f4f6; margin-top: auto; }
.fp-svc-meta span { font-size: .7rem; color: #9ca3af; display: flex; align-items: center; gap: 3px; }


/* ── Device Page — Booking Sidebar ───────────────────────── */
.fp-book-sidebar {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 16px;
  padding: 18px;
  position: sticky;
  top: 90px;
}
.fp-book-sidebar-title  { font-size: .9375rem; font-weight: 800; color: #111; margin-bottom: 2px; }
.fp-book-device-name    { font-size: .8125rem; font-weight: 600; color: #6b7280; margin-bottom: 2px; }
.fp-book-hint           { font-size: .8125rem; color: #9ca3af; margin-bottom: 12px; }
.fp-book-empty          { font-size: .8125rem; color: #9ca3af; margin: 0; }

.fp-selected-tag        { display: flex; justify-content: space-between; align-items: center; background: #f9fafb; border-radius: 7px; padding: 6px 10px; margin-bottom: 5px; font-size: .8125rem; }
.fp-selected-tag-name   { font-weight: 600; color: #374151; }
.fp-selected-tag-price  { font-weight: 800; color: #10b981; }

.fp-book-total          { display: flex; justify-content: space-between; padding: 10px 0; border-top: 1.5px solid #e5e7eb; margin-top: 6px; margin-bottom: -10px; }
.fp-book-total-label    { font-size: .875rem; font-weight: 700; color: #374151; }
.fp-book-total-price    { font-size: 1.125rem; font-weight: 900; color: #10b981; }

.fp-booking-section       { border-top: 1px solid #f3f4f6; margin-top: 12px; padding-top: 12px; }
.fp-booking-section-title { font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #9ca3af; margin-bottom: 8px; }

.fp-type-cards     { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.fp-type-card      { display: flex; align-items: flex-start; gap: 8px; border: 1.5px solid #e5e7eb; border-radius: 9px; padding: 9px 12px; cursor: pointer; transition: border-color .16s, background .16s; }
.fp-type-card:hover    { border-color: #10b981; background: rgba(16,185,129,.03); }
.fp-type-card.selected { border-color: #10b981; background: rgba(16,185,129,.06); }
.fp-type-card i              { font-size: 1rem; color: #9ca3af; flex-shrink: 0; transition: color .16s; margin-top: 1px; }
.fp-type-card.selected i,
.fp-type-card:hover i        { color: #10b981; }
.fp-type-card-label  { font-size: .8125rem; font-weight: 700; color: #374151; }
.fp-type-card-sub    { font-size: .7rem; color: #9ca3af; font-weight: 500; margin-top: 1px; }

.fp-walkin-section   { margin-top: 10px; }
.fp-field-label      { font-size: .6875rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #6b7280; margin-bottom: 5px; }

/* ── Walk-in wizard ── */
.fp-wiz-label        { font-size: .6875rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #6b7280; margin-bottom: 8px; display: flex; align-items: center; gap: 5px; }
.fp-wiz-selected-row { display: flex; align-items: center; justify-content: space-between; background: #ecfdf5; border: 1px solid #bbf7d0; border-radius: 8px; padding: 7px 10px; margin-bottom: 10px; }
.fp-wiz-selected-info { display: flex; align-items: center; gap: 6px; font-size: .8125rem; font-weight: 600; color: #065f46; overflow: hidden; }
.fp-wiz-selected-info span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fp-wiz-change       { font-size: .75rem; font-weight: 700; color: #10b981; background: none; border: none; cursor: pointer; padding: 0; white-space: nowrap; flex-shrink: 0; text-decoration: underline; }
.mt-3                { margin-top: 1rem !important; }

.fp-loc-option       { display: flex; align-items: center; gap: 8px; padding: 8px 10px; border: 1.5px solid #e5e7eb; border-radius: 8px; cursor: pointer; transition: border-color .15s, background .15s; margin-bottom: 5px; }
.fp-loc-option:hover    { border-color: #10b981; background: rgba(16,185,129,.02); }
.fp-loc-option.selected { border-color: #10b981; background: rgba(16,185,129,.05); }
.fp-loc-name         { font-size: .8125rem; font-weight: 700; color: #374151; }
.fp-loc-addr         { font-size: .7rem; color: #9ca3af; }
.fp-loc-radio        { width: 14px; height: 14px; border-radius: 50%; border: 2px solid #d1d5db; flex-shrink: 0; transition: all .15s; }
.fp-loc-option.selected .fp-loc-radio { border-color: #10b981; background: #10b981; box-shadow: inset 0 0 0 2px #fff; }

.fp-date-grid        { display: grid; grid-template-columns: repeat(4,1fr); gap: 5px; margin-bottom: 10px; }
.fp-date-chip        { border: 1.5px solid #e5e7eb; border-radius: 7px; padding: 5px 3px; text-align: center; cursor: pointer; transition: border-color .15s, background .15s; }
.fp-date-chip:hover    { border-color: #10b981; }
.fp-date-chip.selected { border-color: #10b981; background: #10b981; }
.fp-date-chip.selected .fp-date-day,
.fp-date-chip.selected .fp-date-num  { color: #fff; }
.fp-date-day         { font-size: .55rem; text-transform: uppercase; font-weight: 700; color: #9ca3af; letter-spacing: .05em; }
.fp-date-num         { font-size: .8125rem; font-weight: 800; color: #374151; }

.fp-time-grid        { display: grid; grid-template-columns: repeat(3,1fr); gap: 5px; }
.fp-time-chip          { border: 1.5px solid #e5e7eb; border-radius: 7px; padding: 6px 3px; text-align: center; cursor: pointer; font-size: .75rem; font-weight: 700; color: #374151; transition: border-color .15s, background .15s, color .15s; }
.fp-time-chip:hover    { border-color: #10b981; }
.fp-time-chip.selected { border-color: #10b981; background: #10b981; color: #fff; }
.fp-time-chip.booked   { background: #f9fafb; border-color: #e5e7eb; color: #d1d5db; cursor: not-allowed; text-decoration: line-through; }
.fp-time-loading       { grid-column: 1/-1; font-size: .75rem; color: #9ca3af; padding: 8px 0; text-align: center; }

.fp-book-cta {
  display: block; width: 100%; padding: 11px;
  background: #10b981; color: #fff;
  font-weight: 700; font-size: .875rem;
  border-radius: 10px; border: none;
  text-align: center; text-decoration: none;
  margin-top: 12px;
  transition: background .18s;
  cursor: pointer;
}
.fp-book-cta:hover             { background: #059669; color: #fff; }
.fp-book-cta.disabled          { opacity: .4; cursor: not-allowed; pointer-events: none; }
.fp-book-cta--outline          { background: #fff; color: #374151; border: 1.5px solid #e5e7eb; margin-top: 8px; }
.fp-book-cta--outline:hover    { background: #f9fafb; color: #111; }
.fp-book-no-payment          { text-align: center; font-size: .7rem; color: #9ca3af; margin-top: 8px; margin-bottom: 0; }
.fp-book-divider             { border-color: #f3f4f6; margin: 14px 0 12px; }
.fp-book-why-title           { font-size: .6875rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #9ca3af; margin-bottom: 10px; }
.fp-book-why-item            { display: flex; gap: 8px; margin-bottom: 9px; align-items: flex-start; }
.fp-book-why-icon            { color: #10b981; margin-top: 1px; flex-shrink: 0; font-size: .875rem; }
.fp-book-why-label           { font-size: .8125rem; font-weight: 700; color: #111; }
.fp-book-why-sub             { font-size: .75rem; color: #6b7280; }

/* Slide transition */
.fp-slide         { overflow: hidden; transition: max-height .3s ease, opacity .3s ease; }
.fp-slide.hidden  { max-height: 0 !important; opacity: 0; pointer-events: none; }
.fp-slide.visible { opacity: 1; }


/* ── Device Page — Related chips ─────────────────────────── */
.fp-related-chips     { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.fp-related-chip      { display: inline-flex; align-items: center; gap: 6px; padding: 9px 18px; border: 1.5px solid #e5e7eb; border-radius: 99px; font-size: .875rem; font-weight: 600; color: #374151; text-decoration: none; transition: border-color .15s, color .15s, background .15s; }
.fp-related-chip:hover      { border-color: #10b981; color: #10b981; background: rgba(16,185,129,.04); }
.fp-related-chip--all       { border-color: #10b981; color: #10b981; }
.fp-related-chip--all:hover { background: rgba(16,185,129,.08); }


/* ════════════════════════════════════════════════════════════════
   MOBILE REPAIR BAR — device page fixed bottom UI
   ════════════════════════════════════════════════════════════════ */

/* 1. Hide standard bottom nav on device page */
.fp-device-page .fp-bottom-nav { display: none !important; }

/* 2. Mini-bar */
.fp-mrb {
  display: none; /* mobile only */
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1040;
  background: #fff;
  border-top: 1.5px solid #e5e7eb;
  padding: 10px 16px 14px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.08);
}
.fp-mrb-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.fp-mrb-info { flex: 1; min-width: 0; }
.fp-mrb-count {
  display: block; font-size: .8125rem; font-weight: 600; color: #374151;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.fp-mrb-price {
  display: block; font-size: 1.0625rem; font-weight: 800; color: #10b981; line-height: 1.2;
}
.fp-mrb-btn {
  display: flex; align-items: center; gap: 6px;
  background: #111; color: #fff;
  border: none; border-radius: 10px;
  padding: 10px 16px; font-size: .875rem; font-weight: 700;
  cursor: pointer; white-space: nowrap; flex-shrink: 0;
  transition: background .15s;
}
.fp-mrb-btn:hover { background: #222; }
.fp-mrb-btn i { font-size: 14px; transition: transform .25s; }

/* 3. Overlay */
.fp-mrb-overlay {
  display: none; position: fixed; inset: 0; z-index: 1045;
  background: rgba(0,0,0,.45);
}
.fp-mrb-overlay.open { display: block; }

/* 4. Slide-up sheet */
.fp-mrb-sheet {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1050;
  background: #fff; border-radius: 20px 20px 0 0;
  padding: 0 0 24px;
  transform: translateY(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  max-height: 88vh; overflow-y: auto;
}
.fp-mrb-sheet.open { transform: translateY(0); }

.fp-mrb-sheet-handle {
  display: flex; justify-content: center; padding: 12px 0 8px; cursor: pointer;
}
.fp-mrb-sheet-pill {
  width: 40px; height: 4px; border-radius: 2px; background: #d1d5db;
}
.fp-mrb-sheet-head { padding: 0 20px 12px; border-bottom: 1px solid #f3f4f6; }
.fp-mrb-sheet-title { font-size: 1.0625rem; font-weight: 800; color: #111; margin: 0 0 2px; }
.fp-mrb-sheet-device { font-size: .8125rem; color: #6b7280; font-weight: 500; }
.fp-mrb-sheet-body { padding: 16px 20px; }
.fp-mrb-sheet-total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 20px; border-top: 2px solid #111; margin: 0 20px;
  font-weight: 800; font-size: 1rem;
}
.fp-mrb-sheet-footer { padding: 16px 20px 0; }
.fp-mrb-sheet-note { font-size: .8125rem; color: #9ca3af; text-align: center; margin: 0; }

/* 5. Show bar + add padding on mobile only */
@media (max-width: 991px) {
  .fp-device-page .fp-mrb { display: block; }
  .fp-device-page main { padding-bottom: 80px; }
}

/* Booking sections inside the mobile sheet */
.fp-mrb-sheet .fp-booking-section { margin: 0 20px; }
.fp-mrb-sheet .fp-booking-section.hidden { display: none; }

/* ── Dark-background blue overrides (bright blue for dark sections) ── */
.fp-repairs-hero::before {
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(96,165,250,.18) 0%, transparent 70%);
}
.fp-repairs-hero h1 span    { color: #34d399; }
.fp-hero-pill i              { color: #34d399; }
.fp-hero-breadcrumb a:hover  { color: #34d399; }
.fp-search-hint-icon         { color: #34d399; }
.fp-trust-stat-icon {
  background: rgba(96,165,250,.12);
  border: 1px solid rgba(96,165,250,.22);
  color: #34d399;
}
