/* vehicles/vehicle-comparison.php — comparison page styles. Extracted 2026-05-20. */

  /* ============ HERO ============ */
  .cmp-hero {
    position: relative;
    padding: 140px 0 0;
    background: #030303;
    overflow: hidden;
    isolation: isolate;
    /* Tall enough that the full 1672x941 hero image renders without being
       cropped at the top — heading sits over the upper (sky) portion, cars
       sit at the bottom edge of the section. Matches the services hero. */
    min-height: 820px;
  }
  /* Owner will supply a hero image. Until then, use the same fleet-hero asset
     as a placeholder so the layout reads correctly. Swap by changing the
     `--cmp-hero-img` CSS var on the section. */
  .cmp-hero-bg {
    /* Image fills the entire hero section — top to bottom, edge to edge.
       No mask, no overlay tint. Heading sits over the upper (sky) portion;
       cars naturally sit at the bottom because the source image places them there. */
    position: absolute; inset: 0;
    background-image: var(--cmp-hero-img);
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    z-index: 0;
  }
  .cmp-hero::before, .cmp-hero::after {
    content: ""; position: absolute; top: 0; bottom: 0; width: 18%; z-index: 1; pointer-events: none;
  }
  .cmp-hero::before { left: 0;  background: linear-gradient(90deg,  #030303 0%, rgba(3,3,3,0) 100%); }
  .cmp-hero::after  { right: 0; background: linear-gradient(270deg, #030303 0%, rgba(3,3,3,0) 100%); }
  .cmp-hero-inner { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; padding: 0 24px 56px; text-align: left; display: flex; flex-direction: column; min-height: 640px; }
  .cmp-hero-eyebrow { color: #D4AF37; font-size: 11px; font-weight: 700; letter-spacing: 0.38em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px; }
  .cmp-hero-eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #D4AF37; }
  .cmp-hero-title { font-family: var(--font-heading); font-weight: 400; color: #fff; font-size: clamp(2.2rem, 5.6vw, 4.4rem); line-height: 1.05; margin: 0; font-style: italic; }
  .cmp-hero-sub { color: rgba(255,255,255,0.78); font-size: 1rem; line-height: 1.65; font-weight: 300; max-width: 720px; margin: 22px 0 0; }
  .cmp-hero-trust {
    margin: auto auto 0;
    max-width: 1080px;
    display: flex; justify-content: center; flex-wrap: wrap; gap: 14px;
  }
  /* Gold-bordered rounded pill — same shape language as the concierge
     WhatsApp/Request Recommendation CTAs in the band below. */
  .cmp-hero-trust-item {
    display: inline-flex; align-items: center; gap: 14px;
    padding: 12px 22px 12px 14px;
    background: rgba(3,3,3,0.55);
    border: 1px solid rgba(212,175,55,0.45);
    border-radius: 999px;
    backdrop-filter: blur(6px);
    text-align: left;
  }
  .cmp-hero-trust-ic { color: #D4AF37; width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(212,175,55,0.55); border-radius: 50%; flex-shrink: 0; background: rgba(212,175,55,0.06); }
  .cmp-hero-trust-title { color: #fff; font-size: 11.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin: 0 0 2px; }
  .cmp-hero-trust-desc { color: rgba(255,255,255,0.6); font-size: 11.5px; margin: 0; }
  @media (max-width: 880px) {
    .cmp-hero { padding-top: 110px; padding-bottom: 40px; min-height: 460px; }
    .cmp-hero-inner { min-height: 0; padding-bottom: 0; }
    .cmp-hero-trust { margin: 28px 0 0; justify-content: flex-start; }
    .cmp-hero-trust-item { padding: 10px 18px 10px 12px; }
    .cmp-hero-trust-title, .cmp-hero-trust-desc { font-size: 10.5px; }
  }

  /* ============ POPULAR USE CASES ============ */
  .cmp-cases { background: #030303; padding: 70px 0 30px; }
  .cmp-section-title { text-align: center; margin-bottom: 36px; }
  .cmp-section-eyebrow { display: block; color: #D4AF37; font-size: 10px; font-weight: 800; letter-spacing: 0.36em; text-transform: uppercase; margin-bottom: 10px; }
  .cmp-section-heading { font-family: var(--font-heading); color: #fff; font-weight: 300; font-style: italic; font-size: clamp(28px, 4vw, 42px); margin: 0; line-height: 1.15; }
  .cmp-cases-grid {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px;
  }
  @media (max-width: 980px) { .cmp-cases-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
  @media (max-width: 560px) {
    .cmp-cases-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; padding: 0 16px; }
    .cmp-case { aspect-ratio: 3 / 4; padding: 12px; }
    .cmp-case-title { font-size: 14px; line-height: 1.2; }
    .cmp-case-desc { font-size: 11px; line-height: 1.4; }
    .cmp-case-badge { font-size: 8px; padding: 4px 7px; top: 10px; left: 10px; letter-spacing: 0.18em; }
  }
  .cmp-case {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #050505;
    border: 1px solid rgba(255,255,255,0.06);
    aspect-ratio: 4 / 5;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 18px;
    transition: border-color 0.3s ease, transform 0.3s ease;
  }
  .cmp-case:hover { border-color: rgba(212,175,55,0.3); transform: translateY(-2px); }
  .cmp-case-bg {
    position: absolute; inset: 0;
    background-image: var(--cmp-case-img);
    background-size: cover;
    background-position: center;
    opacity: 0.65;
    z-index: 0;
    transition: opacity 0.3s ease;
  }
  .cmp-case:hover .cmp-case-bg { opacity: 0.85; }
  .cmp-case::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(3,3,3,0.1) 0%, rgba(3,3,3,0.85) 75%, #030303 100%);
    z-index: 1;
  }
  .cmp-case-badge {
    position: absolute; top: 14px; left: 14px; z-index: 3;
    background: #D4AF37; color: #030303;
    padding: 5px 10px; border-radius: 4px;
    font-size: 9px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase;
  }
  .cmp-case-content { position: relative; z-index: 3; }
  .cmp-case-title { font-family: var(--font-heading); color: #fff; font-size: 17px; font-weight: 700; margin: 0 0 6px; }
  .cmp-case-desc { color: rgba(255,255,255,0.72); font-size: 12.5px; line-height: 1.5; margin: 0; }

  /* ============ UNIFIED COMPARE PANEL (filters → selector → table as one card) ============ */
  .cmp-panel { background: #030303; padding: 36px 0 60px; }
  .cmp-panel-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }
  /* Inner sections drop their own backgrounds + padding — the panel owns the frame. */
  .cmp-panel .cmp-filter-section,
  .cmp-panel .cmp-selector-section,
  .cmp-panel .cmp-table-section { background: transparent; padding: 0; }
  .cmp-panel .cmp-filter-row,
  .cmp-panel .cmp-selector-inner,
  .cmp-panel .cmp-table-wrap { max-width: none; padding-left: 0; padding-right: 0; }
  /* Connect them: filter row at top, selector body in middle, table at bottom.
     Shared bordered card. */
  .cmp-panel .cmp-filter-row {
    border: 1px solid rgba(212,175,55,0.22);
    border-bottom: 0;
    border-radius: 16px 16px 0 0;
    background: rgba(212,175,55,0.04);
    padding: 18px 24px 0;
    margin: 0;
  }
  .cmp-panel .cmp-chip { margin-bottom: -1px; }
  .cmp-panel .cmp-selector-inner {
    border-left: 1px solid rgba(212,175,55,0.22);
    border-right: 1px solid rgba(212,175,55,0.22);
    border-bottom: 1px solid rgba(212,175,55,0.18);
    background: rgba(212,175,55,0.02);
    padding: 22px 24px;
    border-radius: 0;
  }
  .cmp-panel .cmp-table-wrap {
    border-top: 0 !important;
    border-radius: 0 0 16px 16px !important;
  }
  @media (max-width: 640px) {
    .cmp-panel { padding: 22px 0 40px; }
    .cmp-panel-inner { padding: 0 12px; }
    .cmp-panel .cmp-filter-row { padding: 14px 12px 0; }
    .cmp-panel .cmp-selector-inner { padding: 16px 14px; }
  }

  /* ============ FILTER CHIPS ============ */
  .cmp-filter-section { background: #030303; padding: 28px 0 8px; }
  .cmp-filter-row {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; justify-content: center; flex-wrap: wrap; gap: 12px;
    border-bottom: 1px solid rgba(212,175,55,0.18);
    padding-bottom: 14px;
  }
  .cmp-chip {
    padding: 10px 22px;
    background: transparent; border: 0;
    color: rgba(255,255,255,0.7);
    font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -16px;
    transition: color 0.2s ease, border-color 0.2s ease;
  }
  .cmp-chip:hover { color: #fff; }
  .cmp-chip.is-active { color: #D4AF37; border-bottom-color: #D4AF37; }

  /* ============ COMPARISON TABLE ============ */
  .cmp-table-section { background: #030303; padding: 4px 0 40px; }
  .cmp-table-wrap {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    border: 1px solid rgba(212,175,55,0.22);
    border-radius: 16px;
    overflow: hidden;
    background:
      radial-gradient(ellipse 80% 60% at 50% 30%, rgba(212,175,55,0.04) 0%, transparent 70%),
      #050505;
  }
  .cmp-table { width: 100%; border-collapse: collapse; }
  .cmp-table thead th {
    text-align: left;
    color: #D4AF37;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 16px 14px;
    border-bottom: 1px solid rgba(212,175,55,0.18);
  }
  .cmp-table tbody td {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    vertical-align: middle;
  }
  .cmp-table tbody tr:last-child td { border-bottom: 0; }
  .cmp-table tbody tr:hover td { background: rgba(212,175,55,0.04); }
  /* Filter-chip hides — beats mobile grid/flex `!important` declarations */
  .cmp-table tbody tr.is-hidden { display: none !important; }

  .cmp-cell-check {
    width: 36px;
    text-align: center;
  }
  .cmp-check-label { display: inline-flex; align-items: center; gap: 0; cursor: pointer; }
  .cmp-check-text { display: none; }  /* desktop: checkbox alone; mobile re-shows */
  .cmp-cell-check input[type="checkbox"] {
    appearance: none;
    width: 18px; height: 18px;
    border: 1px solid rgba(212,175,55,0.4);
    border-radius: 3px;
    background: transparent;
    cursor: pointer;
    position: relative;
  }
  .cmp-cell-check input[type="checkbox"]:checked {
    background: #D4AF37;
    border-color: #D4AF37;
  }
  .cmp-cell-check input[type="checkbox"]:checked::after {
    content: "\2713";
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    color: #030303; font-size: 13px; font-weight: 800;
  }
  .cmp-cell-img { width: 80px; }
  .cmp-cell-img img { width: 70px; height: 50px; object-fit: contain; filter: drop-shadow(0 4px 6px rgba(0,0,0,0.5)); }
  .cmp-cell-name { color: #fff; font-weight: 700; min-width: 150px; }
  .cmp-cell-name-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
  .cmp-badge {
    background: rgba(212,175,55,0.15);
    color: #D4AF37;
    font-size: 9px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase;
    padding: 3px 8px; border-radius: 3px; border: 1px solid rgba(212,175,55,0.3);
  }
  .cmp-cell-best { color: rgba(255,255,255,0.7); font-size: 12.5px; max-width: 320px; }
  .cmp-actions { display: flex; gap: 8px; }
  .cmp-action-btn {
    text-align: center;
    padding: 7px 14px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
  }
  .cmp-action-btn.is-outline { border: 1px solid rgba(255,255,255,0.18); color: #fff; }
  .cmp-action-btn.is-outline:hover { border-color: #D4AF37; color: #D4AF37; }
  .cmp-action-btn.is-solid { background: #D4AF37; color: #030303; }
  .cmp-action-btn.is-solid:hover { background: #b8962f; }
  .cmp-table-footer {
    padding: 10px 16px;
    color: rgba(255,255,255,0.5);
    font-size: 11px;
    border-top: 1px solid rgba(255,255,255,0.04);
  }
  /* Hide table on small screens, show stacked cards instead */
  @media (max-width: 880px) {
    .cmp-table thead { display: none; }
    .cmp-table, .cmp-table tbody, .cmp-table tr, .cmp-table td { display: block; }
    .cmp-table tr {
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 12px;
      padding: 12px;
      margin: 12px 0;
    }
    .cmp-table tbody td { border-bottom: 0; padding: 6px 0; }
    .cmp-table tbody td::before {
      content: attr(data-label);
      display: inline-block;
      min-width: 90px;
      color: #D4AF37;
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin-right: 8px;
    }
    .cmp-cell-img img { width: 90px; height: 64px; }
  }

  /* MOBILE 2×2 grid (≤640px): 16 stacked cards = 14k+ scroll. Convert to
     2-column grid with compact cards. Each card keeps image + name + class
     + pax + bags + footer "Add to compare" toggle (label-wrapped checkbox
     drives the 3-slot selector below). Best-for + Book/View actions hidden
     on mobile — filter chips + tapping the card's compare toggle plus the
     side-by-side selector below carry the workflow. */
  @media (max-width: 640px) {
    .cmp-table-wrap { padding: 0 12px; }
    .cmp-table tbody {
      display: grid !important;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      padding: 8px 6px 14px;
    }
    .cmp-table tbody tr {
      margin: 0 !important;
      padding: 0 !important;
      display: flex !important;
      flex-direction: column;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 12px;
      background: #0a0a0a;
    }
    .cmp-table tbody tr.is-selected {
      border-color: rgba(212,175,55,0.55);
      background: rgba(212,175,55,0.05);
    }
    .cmp-table tbody tr td {
      padding: 3px 10px !important;
      font-size: 12px;
    }
    .cmp-table tbody tr td::before { display: none !important; }
    .cmp-table tbody tr .cmp-cell-img {
      padding: 0 !important;
      order: -1;
      background: transparent;
    }
    .cmp-table tbody tr .cmp-cell-img img {
      width: 100% !important;
      height: 96px !important;
      object-fit: contain;
      padding: 6px 8px;
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
    }
    /* Kill the gold radial in the table-wrap + the row-hover tint on mobile */
    .cmp-table-wrap {
      background: #050505 !important;
      border-color: rgba(255,255,255,0.06) !important;
    }
    .cmp-table tbody tr:hover td { background: transparent !important; }
    .cmp-table tbody tr .cmp-cell-name {
      padding: 8px 10px 2px !important;
      font-weight: 700;
      color: #fff;
      font-size: 12.5px;
      line-height: 1.2;
    }
    .cmp-table tbody tr .cmp-cell-name-row { gap: 6px; }
    .cmp-table tbody tr .cmp-badge { font-size: 8px; padding: 2px 5px; letter-spacing: 0.16em; }
    .cmp-table tbody tr .cmp-cell-best,
    .cmp-table tbody tr td:has(.cmp-actions) {
      display: none !important;
    }
    .cmp-table tbody tr td[data-label="Class"] {
      color: #D4AF37;
      font-size: 9px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      padding-top: 0 !important;
    }
    .cmp-table tbody tr td[data-label="Passengers"],
    .cmp-table tbody tr td[data-label="Luggage"] {
      display: inline-block !important;
      color: rgba(255,255,255,0.75);
      font-size: 11px;
    }
    .cmp-table tbody tr td[data-label="Passengers"]::before {
      content: "PAX " !important;
      display: inline !important;
      min-width: 0;
      font-size: 9px;
      letter-spacing: 0.14em;
      color: rgba(212,175,55,0.75);
    }
    .cmp-table tbody tr td[data-label="Luggage"]::before {
      content: "BAGS " !important;
      display: inline !important;
      min-width: 0;
      font-size: 9px;
      letter-spacing: 0.14em;
      color: rgba(212,175,55,0.75);
    }
    /* Footer compare-toggle: full-width tap target inside the card */
    .cmp-table tbody tr .cmp-cell-check {
      width: auto !important;
      text-align: left;
      order: 99;
      padding: 0 !important;
      margin-top: 8px;
      border-top: 1px solid rgba(255,255,255,0.06);
    }
    .cmp-table tbody tr .cmp-check-label {
      display: flex !important;
      align-items: center;
      gap: 8px;
      width: 100%;
      padding: 10px 12px;
      cursor: pointer;
    }
    .cmp-table tbody tr .cmp-check-text {
      display: inline !important;
      color: rgba(255,255,255,0.7);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }
    .cmp-table tbody tr:has(.cmp-row-check:checked) .cmp-check-text {
      color: #D4AF37;
    }
    .cmp-table tbody tr:has(.cmp-row-check:checked) {
      border-color: rgba(212,175,55,0.55);
      background: rgba(212,175,55,0.05);
    }
    .cmp-table tbody tr .cmp-cell-check input[type="checkbox"] {
      width: 16px; height: 16px;
      flex-shrink: 0;
    }
  }

  /* ============ COMPARE SIDE BY SIDE SELECTOR ============ */
  .cmp-selector-section { background: #030303; padding: 30px 0 4px; }
  .cmp-selector-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    background: linear-gradient(90deg, rgba(212,175,55,0.06) 0%, rgba(212,175,55,0.02) 100%);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 14px;
    padding: 22px 26px;
    display: grid;
    grid-template-columns: minmax(230px, 1.2fr) repeat(3, minmax(0, 1fr)) auto;
    gap: 14px;
    align-items: center;
  }
  .cmp-selector-label { display: flex; align-items: center; gap: 12px; }
  .cmp-selector-label-ic { color: #D4AF37; width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center; }
  .cmp-selector-label-title { color: #fff; font-size: 13px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; margin: 0 0 2px; white-space: nowrap; }
  .cmp-selector-label-sub { color: rgba(255,255,255,0.55); font-size: 11px; margin: 0; }
  .cmp-slot {
    border: 1px dashed rgba(212,175,55,0.32);
    border-radius: 10px;
    padding: 14px;
    min-height: 64px;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    color: rgba(255,255,255,0.55);
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    cursor: default;
  }
  .cmp-slot.is-filled {
    border-style: solid;
    border-color: rgba(212,175,55,0.55);
    color: #fff;
    background: rgba(212,175,55,0.05);
  }
  .cmp-slot-add { display: inline-flex; align-items: center; gap: 8px; }
  .cmp-slot-add span { font-size: 16px; line-height: 1; color: #D4AF37; font-weight: 300; }
  .cmp-selector-actions { display: flex; flex-direction: column; gap: 6px; align-items: stretch; }
  .cmp-selector-go {
    background: #D4AF37; color: #030303;
    padding: 9px 14px; border-radius: 999px;
    font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
    text-align: center;
    border: 0; cursor: pointer;
    transition: background 0.2s ease, opacity 0.2s ease;
    white-space: nowrap;
  }
  .cmp-selector-go:disabled { opacity: 0.45; cursor: not-allowed; }
  .cmp-selector-go:not(:disabled):hover { background: #b8962f; }
  .cmp-selector-clear {
    background: transparent; border: 0;
    color: rgba(255,255,255,0.6);
    font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
    cursor: pointer;
    padding: 2px 0;
  }
  .cmp-selector-clear:hover { color: #D4AF37; }
  @media (max-width: 880px) {
    .cmp-selector-inner { grid-template-columns: 1fr; }
    .cmp-selector-actions { flex-direction: row; justify-content: space-between; align-items: center; }
  }

  /* ============ THREE THINGS TO CONSIDER ============ */
  .cmp-consider { background: #030303; padding: 60px 0; }
  .cmp-consider-grid {
    max-width: 1100px; margin: 0 auto; padding: 0 24px;
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px;
  }
  @media (max-width: 800px) { .cmp-consider-grid { grid-template-columns: 1fr; } }
  .cmp-consider-item { display: flex; gap: 18px; align-items: flex-start; }
  .cmp-consider-ic {
    flex-shrink: 0; width: 56px; height: 56px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid rgba(212,175,55,0.45);
    border-radius: 50%;
    color: #D4AF37;
  }
  .cmp-consider-ic :is(picture, svg, img) { width: 28px; height: 28px; }
  .cmp-consider-title { color: #fff; font-family: var(--font-heading); font-size: 17px; font-weight: 700; margin: 0 0 6px; }
  .cmp-consider-desc { color: rgba(255,255,255,0.65); font-size: 13px; line-height: 1.55; margin: 0; max-width: 280px; }

  /* ============ FAQ ============ */
  .cmp-faq { background: #030303; padding: 30px 0 70px; }
  .cmp-faq-grid {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px 22px;
  }
  @media (max-width: 880px) { .cmp-faq-grid { grid-template-columns: 1fr; } }
  .cmp-faq-item {
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 0;
  }
  .cmp-faq-item[open] { border-color: rgba(212,175,55,0.35); }
  .cmp-faq-summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 20px;
    color: #fff;
    font-size: 13.5px;
    font-weight: 600;
    display: flex; justify-content: space-between; align-items: center; gap: 14px;
  }
  .cmp-faq-summary::-webkit-details-marker { display: none; }
  .cmp-faq-plus {
    width: 24px; height: 24px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%; border: 1px solid rgba(212,175,55,0.5);
    color: #D4AF37; flex-shrink: 0;
    transition: transform 0.25s ease;
  }
  .cmp-faq-item[open] .cmp-faq-plus { transform: rotate(45deg); }
  .cmp-faq-body { padding: 0 20px 18px; color: rgba(255,255,255,0.7); font-size: 13px; line-height: 1.65; }

  /* ============ CONCIERGE CTA ============ */
  .cmp-concierge { background: #030303; padding: 0 0 80px; }
  .cmp-concierge-inner {
    max-width: 1200px; margin: 0 auto; padding: 48px 42px;
    border: 1px solid rgba(212,175,55,0.30);
    border-radius: 18px;
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 28px; align-items: center;
  }
  /* concierge bg + smoke handled by .concierge-bg in assets/css/concierge.css */
  .cmp-concierge-body { display: flex; flex-direction: column; gap: 14px; }
  .cmp-concierge-eyebrow { color: #D4AF37; font-size: 10px; font-weight: 800; letter-spacing: 0.36em; text-transform: uppercase; }
  .cmp-concierge-title { font-family: var(--font-heading); color: #fff; font-size: clamp(26px, 3vw, 36px); font-weight: 300; font-style: italic; margin: 0; }
  .cmp-concierge-sub { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.55; margin: 0; max-width: 460px; }
  .cmp-concierge-trust { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 4px; }
  .cmp-concierge-trust span { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.65); font-size: 11px; letter-spacing: 0.06em; }
  .cmp-concierge-trust span picture, .cmp-concierge-trust span svg, .cmp-concierge-trust span img { color: #D4AF37; width: 14px; height: 14px; }
  .cmp-concierge-actions { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }
  .cmp-concierge-btn {
    text-align: center;
    padding: 14px 22px;
    border-radius: 999px;
    font-size: 11px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  }
  .cmp-concierge-btn.is-whatsapp { background: rgba(37,211,102,0.15); color: #25D366; border: 1px solid rgba(37,211,102,0.5); }
  .cmp-concierge-btn.is-whatsapp:hover { background: #25D366; color: #fff; }
  .cmp-concierge-btn.is-solid { background: #D4AF37; color: #030303; border: 1px solid #D4AF37; }
  .cmp-concierge-btn.is-solid:hover { background: #b8962f; border-color: #b8962f; }
  @media (max-width: 880px) {
    .cmp-concierge-inner { grid-template-columns: 1fr; padding: 28px; }
  }

  /* Hide global ambient + nav gutter mask */
  .ambient-light { display: none !important; }
  body > div[aria-hidden="true"][style*="height: 145px"] { display: none !important; }

  /* ============ SLOT BUTTON RESET + REMOVE × ============ */
  button.cmp-slot {
    font: inherit;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
    position: relative;
  }
  button.cmp-slot:not(.is-filled):hover {
    border-color: rgba(212,175,55,0.6);
    background: rgba(212,175,55,0.04);
  }
  .cmp-slot.is-filled { cursor: default; }
  .cmp-slot-name { flex: 1; text-align: center; }
  .cmp-slot-remove {
    position: absolute;
    top: 6px; right: 10px;
    color: rgba(255,255,255,0.55);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 50%;
    transition: color 0.2s ease, background 0.2s ease;
  }
  .cmp-slot-remove:hover { color: #D4AF37; background: rgba(212,175,55,0.1); }

  /* ============ PICKER MODAL ============ */
  .cmp-picker { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; }
  .cmp-picker[hidden] { display: none; }
  .cmp-picker-backdrop {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.72);
    backdrop-filter: blur(4px);
    cursor: pointer;
  }
  .cmp-picker-panel {
    position: relative;
    width: min(720px, calc(100vw - 32px));
    max-height: calc(100vh - 64px);
    background: #0a0a0a;
    border: 1px solid rgba(212,175,55,0.32);
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.6);
    display: flex; flex-direction: column;
    overflow: hidden;
  }
  .cmp-picker-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(212,175,55,0.18);
  }
  .cmp-picker-head h3 {
    font-family: var(--font-heading);
    color: #fff; font-size: 18px; font-weight: 400; font-style: italic;
    margin: 0;
  }
  .cmp-picker-close {
    background: transparent; border: 0;
    color: rgba(255,255,255,0.6); font-size: 26px; line-height: 1;
    cursor: pointer; padding: 0 4px;
    transition: color 0.2s ease;
  }
  .cmp-picker-close:hover { color: #D4AF37; }
  .cmp-picker-grid {
    overflow-y: auto;
    padding: 12px 12px 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  @media (min-width: 640px) {
    .cmp-picker-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      padding: 14px 14px 30px;
    }
  }
  .cmp-picker-tile {
    /* Mobile: horizontal list row (thumb left, name+class right) */
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #050505;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 0;
    cursor: pointer;
    text-align: left;
    overflow: hidden;
    position: relative;
    transition: border-color 0.2s ease, transform 0.15s ease;
    width: 100%;
  }
  @media (min-width: 640px) {
    .cmp-picker-tile { flex-direction: column; align-items: stretch; }
  }
  .cmp-picker-tile:hover:not(:disabled) { border-color: rgba(212,175,55,0.55); transform: translateY(-1px); }
  .cmp-picker-tile:disabled { cursor: not-allowed; opacity: 0.45; }
  .cmp-picker-tile.is-selected { border-color: rgba(212,175,55,0.55); background: rgba(212,175,55,0.05); }
  .cmp-picker-tile-img {
    display: block;
    flex-shrink: 0;
    width: 92px;
    height: 64px;
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 100%);
  }
  @media (min-width: 640px) {
    .cmp-picker-tile-img { width: 100%; height: 78px; }
  }
  .cmp-picker-tile-img img {
    width: 100%; height: 100%;
    object-fit: contain;
    padding: 6px 8px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
  }
  .cmp-picker-tile-body {
    display: flex; flex-direction: column;
    padding: 10px 14px 16px;
    gap: 4px;
    flex: 1;
    min-width: 0;
  }
  @media (min-width: 640px) {
    .cmp-picker-tile-body { padding: 10px 12px 18px; }
  }
  .cmp-picker-tile-name {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    word-break: break-word;
  }
  @media (min-width: 640px) {
    .cmp-picker-tile-name { font-size: 12.5px; }
  }
  .cmp-picker-tile-class {
    color: #D4AF37; font-size: 9.5px;
    line-height: 1.2;
    letter-spacing: 0.16em; text-transform: uppercase;
  }
  .cmp-picker-tile-tick {
    position: absolute; top: 8px; right: 10px;
    width: 22px; height: 22px; border-radius: 50%;
    background: #D4AF37; color: #030303;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 800;
  }
