/* ─── CAR360 CTA + Brands Widget ─────────────────────────────────────────── */

.c360-ctab {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-dark, #181412);
  background-image: var(--ctab-bg, none);
  background-size: cover;
  background-position: center right;
  width: 100%;
}

/* ── Overlay ─────────────────────────────────────────────────────────────── */

.c360-ctab__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(12, 8, 6, 0.92) 0%,
    rgba(12, 8, 6, 0.70) 45%,
    rgba(12, 8, 6, 0.20) 100%
  );
  pointer-events: none;
}

/* ── CTA area ────────────────────────────────────────────────────────────── */

.c360-ctab__cta-area {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
}

.c360-ctab__cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
  max-width: 600px;
  width: 100%;
}

.c360-ctab__heading {
  font-family: var(--font-heading, 'Sora', sans-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.20;
}

.c360-ctab__btn {
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding-inline: 32px;
  border-radius: 8px;
  border: 1.5px solid #fff;
  background: #fff;
  font-family: var(--font-body, 'Manrope', sans-serif);
  font-size: .88rem;
  font-weight: 700;
  color: var(--brand-500, #EC3D23);
  text-decoration: none;
  letter-spacing: .02em;
  transition: background 0.22s, border-color 0.22s, color 0.22s;
  white-space: nowrap;
}

.c360-ctab__btn:hover {
  background: var(--brand-500, #EC3D23);
  border-color: var(--brand-500, #EC3D23);
  color: #fff;
}

/* ── Separator ───────────────────────────────────────────────────────────── */

.c360-ctab__sep {
  position: relative;
  z-index: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.10);
  margin-inline: 32px;
}

/* ── Brands area ─────────────────────────────────────────────────────────── */

.c360-ctab__brands-area {
  position: relative;
  z-index: 1;
  padding: 28px 0 32px;
  overflow: hidden;
}

.c360-ctab__brands-label {
  display: block;
  text-align: center;
  font-family: var(--font-body, 'Manrope', sans-serif);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* ── Track wrapper (clip + fade edges) ───────────────────────────────────── */

.c360-ctab__track-wrap {
  overflow: hidden;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 12%,
    #000 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 12%,
    #000 88%,
    transparent 100%
  );
}

/* ── Infinite scroll track ───────────────────────────────────────────────── */

.c360-ctab__track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: ctab-scroll var(--ctab-speed, 20s) linear infinite;
}

.c360-ctab__track:hover {
  animation-play-state: paused;
}

@keyframes ctab-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Individual brand item ───────────────────────────────────────────────── */

.c360-ctab__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 0.55;
  transition: opacity 0.22s;
  text-decoration: none;
}

.c360-ctab__brand:hover {
  opacity: 1;
}

.c360-ctab__brand img {
  height: 32px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  display: block;
}

/* Fallback text when no logo image */
.c360-ctab__brand-name {
  font-family: var(--font-heading, 'Sora', sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: #fff;
  white-space: nowrap;
  text-transform: uppercase;
}

.c360-ctab__empty {
  text-align: center;
  color: rgba(255, 255, 255, 0.40);
  font-size: .84rem;
  padding: 16px;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .c360-ctab__cta-area {
    padding: 56px 24px;
  }

  .c360-ctab__sep {
    margin-inline: 20px;
  }

  .c360-ctab__track {
    gap: 40px;
  }
}
