﻿/* ─── CAR360 Vehicle Detail Page ─────────────────────────────────────────── */

.c360-vehicle {
  max-width: 100vw;
  overflow-x: clip; /* clip does not create a scroll container — sticky children still work */
}

/* ── Breadcrumb ─────────────────────────────────────────────────────────── */

.c360-vehicle__breadcrumb-bar {
  background: var(--brand-500, #EC3D23);
  padding: 12px 0;
}

.c360-vehicle__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body, 'Manrope', sans-serif);
  font-size: .82rem;
  color: rgba(255,255,255,.8);
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.c360-vehicle__breadcrumb li {
  display: flex;
  align-items: center;
}

.c360-vehicle__breadcrumb a {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  transition: color .16s;
}

.c360-vehicle__breadcrumb a:hover {
  color: #fff;
}

.c360-vehicle__breadcrumb li:last-child {
  color: #fff;
  font-weight: 600;
}

/* ── Container & Layout ──────────────────────────────────────────────────── */

.c360-vehicle__container {
  max-width: 1200px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 24px;
  box-sizing: border-box;
}

.c360-vehicle__layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  padding-block: 48px;
  align-items: start;
}

/* ── Slider ──────────────────────────────────────────────────────────────── */

.c360-slider {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Track wrapper — clipping container */
.c360-slider__track-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--bg-light-alt, #FAF7F6);
  border: 1px solid var(--border-light, #E8E2E0);
}

/* Track — fills the wrapper absolutely so aspect-ratio drives height */
.c360-slider__track {
  position: absolute;
  inset: 0;
}

/* Each slide */
.c360-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(60px);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
}

.c360-slider__slide--prev {
  opacity: 0;
  transform: translateX(-60px);
}

.c360-slider__slide--active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.c360-slider__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Badges */
.c360-vehicle__cat-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding-inline: 14px;
  border-radius: 8px;
  background: rgba(15, 12, 10, 0.85);
  backdrop-filter: blur(6px);
  color: #fff;
  font-family: var(--font-body, 'Manrope', sans-serif);
  font-size: .70rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 2;
}

.c360-vehicle__unavailable-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding-inline: 14px;
  border-radius: 8px;
  background: rgba(220, 38, 38, 0.9);
  color: #fff;
  font-family: var(--font-body, 'Manrope', sans-serif);
  font-size: .70rem;
  font-weight: 700;
  letter-spacing: .05em;
  pointer-events: none;
  z-index: 2;
}

/* Counter — bottom right */
.c360-slider__counter {
  position: absolute;
  bottom: 14px;
  right: 16px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  color: #fff;
  font-family: var(--font-body, 'Manrope', sans-serif);
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  pointer-events: none;
  z-index: 2;
}

/* Arrows */
.c360-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: background .18s, opacity .18s;
  color: var(--text-title, #1A1A1A);
  opacity: 0;
}

.c360-slider__track-wrap:hover .c360-slider__arrow {
  opacity: 1;
}

.c360-slider__arrow--prev { left: 12px; }
.c360-slider__arrow--next { right: 12px; }

.c360-slider__arrow:hover {
  background: #fff;
}

/* Zoom button — top right of track */
.c360-slider__zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  color: var(--text-title, #1A1A1A);
  opacity: 0;
  transition: opacity .18s, background .18s;
}

.c360-slider__track-wrap:hover .c360-slider__zoom {
  opacity: 1;
}

.c360-slider__zoom:hover {
  background: #fff;
}

/* Thumbnails strip */
.c360-slider__thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.c360-slider__thumbs::-webkit-scrollbar {
  display: none;
}

.c360-slider__thumb {
  flex: 0 0 80px;
  height: 58px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--border-light, #E8E2E0);
  background: none;
  padding: 0;
  cursor: pointer;
  transition: border-color .18s;
}

.c360-slider__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.c360-slider__thumb:hover,
.c360-slider__thumb--active {
  border-color: var(--brand-500, #EC3D23);
}

/* ── Section title ───────────────────────────────────────────────────────── */

.c360-vehicle__section-title {
  font-family: var(--font-heading, 'Sora', sans-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-title, #1A1A1A);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-light, #E8E2E0);
}

/* ── Specs grid ──────────────────────────────────────────────────────────── */

.c360-vehicle__specs-section {
  margin-top: 32px;
}

.c360-vehicle__specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.c360-vehicle__spec-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-light-alt, #FAF7F6);
  border: 1px solid var(--border-light, #E8E2E0);
  border-radius: 12px;
  text-align: left;
}

.c360-vehicle__spec-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--brand-50, #FEEEEA);
  color: var(--brand-600, #C92F1A);
  flex-shrink: 0;
}

.c360-vehicle__spec-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.c360-vehicle__spec-label {
  font-family: var(--font-body, 'Manrope', sans-serif);
  font-size: .70rem;
  color: var(--text-muted, #767676);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.c360-vehicle__spec-value {
  font-family: var(--font-body, 'Manrope', sans-serif);
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-title, #1A1A1A);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Description ─────────────────────────────────────────────────────────── */

.c360-vehicle__description {
  margin-top: 32px;
}

.c360-vehicle__content {
  font-family: var(--font-body, 'Manrope', sans-serif);
  font-size: .95rem;
  line-height: 1.75;
  color: var(--text-body, #4A4A4A);
}

.c360-vehicle__content p { margin: 0 0 1em; }
.c360-vehicle__content ul, .c360-vehicle__content ol { padding-left: 1.5em; margin-bottom: 1em; }
.c360-vehicle__content li { margin-bottom: .4em; }

/* ── Conditions ──────────────────────────────────────────────────────────── */

.c360-vehicle__conditions {
  margin-top: 32px;
}

.c360-vehicle__conditions-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid var(--border-light, #E8E2E0);
  border-radius: 12px;
  overflow: hidden;
}

.c360-vehicle__condition-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-light, #fff);
}

.c360-vehicle__condition-item + .c360-vehicle__condition-item {
  border-top: 1px solid var(--border-light, #E8E2E0);
}

.c360-vehicle__condition-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--brand-50, #FEEEEA);
  color: var(--brand-500, #EC3D23);
  flex-shrink: 0;
  margin-top: 2px;
}

.c360-vehicle__condition-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.c360-vehicle__condition-title {
  font-family: var(--font-body, 'Manrope', sans-serif);
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-title, #1A1A1A);
}

.c360-vehicle__condition-note {
  font-family: var(--font-body, 'Manrope', sans-serif);
  font-size: .8rem;
  color: var(--text-muted, #767676);
  font-weight: 500;
  line-height: 1.4;
}

/* ── Booking sidebar card ────────────────────────────────────────────────── */

.c360-vehicle__sidebar {
  position: sticky;
  top: 100px;
}

.c360-vehicle__booking-card {
  background: var(--bg-light, #fff);
  border: 1px solid var(--border-light, #E8E2E0);
  border-radius: 16px;
  overflow: hidden;
}

/* Booking header */
.c360-vehicle__booking-header {
  padding: 20px 24px;
  background: var(--bg-light-alt, #FAF7F6);
  border-bottom: 1px solid var(--border-light, #E8E2E0);
}

.c360-vehicle__booking-brand {
  display: block;
  font-family: var(--font-body, 'Manrope', sans-serif);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand-500, #EC3D23);
  margin-bottom: 6px;
}

.c360-vehicle__booking-header-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.c360-vehicle__booking-header-row .c360-vehicle__booking-title {
  flex: 0 0 75%;
  margin: 0;
}

.c360-vehicle__booking-brand-logo {
  flex: 0 0 25%;
  width: 25%;
  height: auto;
  max-height: 44px;
  object-fit: contain;
  object-position: right center;
}

.c360-vehicle__booking-title {
  font-family: var(--font-heading, 'Sora', sans-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-title, #1A1A1A);
  margin: 0 0 12px;
  line-height: 1.2;
  margin-bottom: 0;
}

.c360-vehicle__availability {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body, 'Manrope', sans-serif);
  font-size: .8rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
}

.c360-vehicle__availability--yes {
  background: #D1FAE5;
  color: #065F46;
}

.c360-vehicle__availability--no {
  background: #FEE2E2;
  color: #991B1B;
}

/* Excerpt */
.c360-vehicle__booking-excerpt {
  font-family: var(--font-body, 'Manrope', sans-serif);
  font-size: .88rem;
  line-height: 1.6;
  color: var(--text-muted, #767676);
  margin: 0;
  padding: 16px 24px;
}

/* Pricing */
.c360-vehicle__pricing {
  padding: 20px 24px;
}

.c360-vehicle__price-block--main {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 12px;
}

.c360-vehicle__price-amount {
  font-family: var(--font-heading, 'Sora', sans-serif);
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-500, #EC3D23);
  line-height: 1;
}

.c360-vehicle__price-label {
  font-family: var(--font-body, 'Manrope', sans-serif);
  font-size: .85rem;
  color: var(--text-muted, #767676);
  font-weight: 500;
}

.c360-vehicle__price-alts {
  display: flex;
  gap: 16px;
}

.c360-vehicle__price-alt {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding: 8px 14px;
  background: var(--bg-light-alt, #FAF7F6);
  border-radius: 8px;
  border: 1px solid var(--border-light, #E8E2E0);
  flex: 1;
}

.c360-vehicle__price-alt-amount {
  font-family: var(--font-heading, 'Sora', sans-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-title, #1A1A1A);
}

.c360-vehicle__price-alt-label {
  font-family: var(--font-body, 'Manrope', sans-serif);
  font-size: .75rem;
  color: var(--text-muted, #767676);
}

/* Quick specs */
.c360-vehicle__quick-specs {
  list-style: none;
  padding: 16px 24px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-bottom: 1px solid var(--border-light, #E8E2E0);
}

.c360-vehicle__quick-specs li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body, 'Manrope', sans-serif);
  font-size: .87rem;
  font-weight: 600;
  color: var(--text-body, #4A4A4A);
}

.c360-vehicle__quick-specs li svg {
  flex-shrink: 0;
  color: var(--brand-500, #EC3D23);
}

/* CTA group */
.c360-vehicle__cta-group {
  padding: 8px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.c360-vehicle__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 10px;
  font-family: var(--font-body, 'Manrope', sans-serif);
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .18s, color .18s, border-color .18s;
  line-height: 1;
  text-align: center;
}

.c360-vehicle__cta--primary {
  background: var(--brand-500, #EC3D23);
  color: #fff;
}

.c360-vehicle__cta--primary:hover {
  background: var(--brand-600, #C92F1A);
  color: #fff;
}

.c360-vehicle__cta--secondary {
  background: transparent;
  color: var(--brand-500, #EC3D23);
  border: 2px solid var(--brand-500, #EC3D23);
}

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

/* Trust badges */
.c360-vehicle__trust {
  list-style: none;
  padding: 16px 24px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border-light, #E8E2E0);
}

.c360-vehicle__trust li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  text-align: left;
  padding: 10px 0;
  font-family: var(--font-body, 'Manrope', sans-serif);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-body, #4A4A4A);
  line-height: 1.3;
}

.c360-vehicle__trust li + li {
  border-top: 1px solid var(--border-light, #E8E2E0);
}

.c360-vehicle__trust li svg {
  flex-shrink: 0;
  color: var(--brand-500, #EC3D23);
}

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

@media (max-width: 1024px) {
  .c360-vehicle__layout {
    grid-template-columns: 1fr;
  }

  .c360-vehicle__sidebar {
    position: static;
  }

  /* Gallery first, then main content, sidebar last */
  .c360-vehicle__main { order: 0; }
  .c360-vehicle__sidebar { order: 1; }

  /* Add bottom padding so sticky bar doesn't overlap content */
  .c360-vehicle__layout {
    padding-bottom: 100px;
  }
}

@media (max-width: 768px) {

  .c360-vehicle__price-alts {
    flex-direction: column;
  }

  .c360-vehicle__layout {
    padding-block: 24px;
    gap: 24px;
  }

  .c360-vehicle__conditions-list li {
    flex-wrap: wrap;
  }

  .c360-vehicle__booking-card {
    border-radius: 12px;
  }
}

@media (max-width: 480px) {

  .c360-vehicle__container {
    padding-inline: 16px;
  }

  .c360-vehicle__specs-section,
  .c360-vehicle__description,
  .c360-vehicle__conditions {
    margin-top: 24px;
  }

  .c360-slider__thumbs {
    gap: 6px;
  }

  .c360-slider__thumb {
    flex: 0 0 64px;
    height: 48px;
  }
}

/* ── Mobile sticky bottom bar ────────────────────────────────────────────── */

.c360-vehicle__sticky-bar {
  display: none;
}

@media (max-width: 1024px) {
  .c360-vehicle__sticky-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--bg-dark, #181412);
    border-top: 1px solid var(--border-dark, #2E2624);
    padding: 12px 20px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    transition: transform .3s ease, opacity .3s ease;
  }

  .c360-vehicle__sticky-bar--hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
  }

  .c360-vehicle__sticky-left {
    display: flex;
    align-items: baseline;
    gap: 4px;
    min-width: 0;
  }

  .c360-vehicle__sticky-price {
    font-family: var(--font-heading, 'Sora', sans-serif);
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
  }

  .c360-vehicle__sticky-price small {
    font-size: .75rem;
    font-weight: 600;
  }

  .c360-vehicle__sticky-unit {
    font-family: var(--font-body, 'Manrope', sans-serif);
    font-size: .78rem;
    color: rgba(255,255,255,.55);
    font-weight: 500;
    white-space: nowrap;
  }

  .c360-vehicle__sticky-right {
    flex-shrink: 0;
  }

  .c360-vehicle__sticky-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 10px;
    background: var(--brand-500, #EC3D23);
    color: #fff;
    font-family: var(--font-body, 'Manrope', sans-serif);
    font-size: .88rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .18s;
    white-space: nowrap;
  }

  .c360-vehicle__sticky-cta:hover {
    background: var(--brand-600, #C92F1A);
    color: #fff;
  }
}

/* ── Google Reviews ─────────────────────────────────────────────────────── */

.c360-vehicle__reviews {
  padding-block: 56px;
  border-top: 1px solid var(--border-light, #E8E2E0);
}

/* ── Similar Vehicles ───────────────────────────────────────────────────── */

.c360-similar {
  padding-block: 56px 72px;
  border-top: 1px solid var(--border-light, #E8E2E0);
}

.c360-similar__title {
  font-family: var(--font-heading, 'Sora', sans-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-title, #1A1A1A);
  margin: 0 0 32px;
}

/* Grid resets list styles (cards use .c360-fleet__* classes from fleet-widget.css) */
.c360-similar__grid {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 600px) {
  .c360-similar {
    padding-block: 40px 56px;
  }

  .c360-similar__title {
    font-size: 1.2rem;
  }
}

/* ── Abonnement CTA ─────────────────────────────────────────────────────── */

.c360-abo {
  position: relative;
  background: var(--bg-dark, #181412);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.c360-abo__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(12, 8, 6, 0.92) 0%,
    rgba(12, 8, 6, 0.75) 50%,
    rgba(12, 8, 6, 0.30) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.c360-abo--has-image .c360-abo__overlay {
  background: linear-gradient(
    100deg,
    rgba(12, 8, 6, 0.88) 0%,
    rgba(12, 8, 6, 0.65) 50%,
    rgba(12, 8, 6, 0.15) 100%
  );
}

/* Top accent line */
.c360-abo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-500, #EC3D23) 0%, var(--brand-400, #F16548) 40%, transparent 100%);
  z-index: 2;
}

.c360-abo__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  padding-block: 72px;
}

/* ── LEFT ── */
.c360-abo__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.c360-abo__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body, 'Manrope', sans-serif);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-400, #F16548);
  margin-bottom: 18px;
}

.c360-abo__title {
  font-family: var(--font-heading, 'Sora', sans-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.15;
}

.c360-abo__desc {
  font-family: var(--font-body, 'Manrope', sans-serif);
  font-size: .95rem;
  color: rgba(255, 255, 255, 0.60);
  margin: 0 0 32px;
  line-height: 1.65;
  max-width: 420px;
}

.c360-abo__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 50px;
  padding-inline: 28px;
  border-radius: 10px;
  border: 1.5px solid var(--brand-500, #EC3D23);
  background: var(--brand-500, #EC3D23);
  color: #fff;
  font-family: var(--font-body, 'Manrope', sans-serif);
  font-size: .90rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .20s, border-color .20s, color .20s;
  white-space: nowrap;
}

.c360-abo__cta:hover {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.c360-abo__cta-icon {
  flex-shrink: 0;
  transition: transform .20s;
}

.c360-abo__cta:hover .c360-abo__cta-icon {
  transform: translateX(4px);
}

/* ── RIGHT — glass card ── */
.c360-abo__right {
  flex-shrink: 0;
}

.c360-abo__glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  padding: 32px 36px;
  min-width: 240px;
  text-align: center;
}

.c360-abo__from {
  display: block;
  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.55);
  margin-bottom: 10px;
}

.c360-abo__amount-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  margin-bottom: 0;
}

.c360-abo__amount {
  font-family: var(--font-heading, 'Sora', sans-serif);
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.c360-abo__currency {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 4px;
  text-align: left;
}

.c360-abo__currency strong {
  font-family: var(--font-heading, 'Sora', sans-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-400, #F16548);
  line-height: 1;
}

.c360-abo__currency span {
  font-family: var(--font-body, 'Manrope', sans-serif);
  font-size: .68rem;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}

.c360-abo__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 20px 0;
}

.c360-abo__perks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.c360-abo__perks li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body, 'Manrope', sans-serif);
  font-size: .80rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.3;
}

.c360-abo__perks li svg {
  flex-shrink: 0;
  color: var(--brand-400, #F16548);
}

@media (max-width: 860px) {
  .c360-abo__container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-block: 56px;
  }

  .c360-abo__glass-card {
    width: 100%;
    max-width: 340px;
  }

  .c360-abo__overlay {
    background: rgba(12, 8, 6, 0.80);
  }
}

@media (max-width: 480px) {
  .c360-abo__container {
    padding-block: 48px;
  }

  .c360-abo__title {
    font-size: 1.8rem;
  }

  .c360-abo__amount {
    font-size: 2.4rem;
  }
}
/* ── Lightbox ────────────────────────────────────────────────────────────── */

.c360-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.96);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.c360-lightbox[hidden] {
  display: none;
}

/* Main track */
.c360-lightbox__track {
  position: relative;
  width: 100%;
  flex: 1;
  overflow: hidden;
}

.c360-lightbox__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(60px);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}

.c360-lightbox__slide--active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.c360-lightbox__img {
  max-width: 100%;
  max-height: calc(100vh - 160px);
  object-fit: contain;
  display: block;
  border-radius: 6px;
  user-select: none;
  -webkit-user-drag: none;
}

/* Close button */
.c360-lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.20);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background .18s;
}

.c360-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* Arrows */
.c360-lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background .18s;
}

.c360-lightbox__arrow:hover {
  background: rgba(255, 255, 255, 0.22);
}

.c360-lightbox__arrow--prev { left: 20px; }
.c360-lightbox__arrow--next { right: 20px; }

/* Counter */
.c360-lightbox__counter {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body, 'Manrope', sans-serif);
  font-size: .80rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  pointer-events: none;
}

/* Thumbnails strip at bottom */
.c360-lightbox__thumbs {
  display: flex;
  gap: 8px;
  padding: 16px 24px;
  overflow-x: auto;
  scrollbar-width: none;
  max-width: 100%;
  flex-shrink: 0;
}

.c360-lightbox__thumbs::-webkit-scrollbar { display: none; }

.c360-lightbox__thumb {
  flex: 0 0 72px;
  height: 50px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.20);
  background: none;
  padding: 0;
  cursor: pointer;
  transition: border-color .18s;
  opacity: 0.55;
  transition: opacity .18s, border-color .18s;
}

.c360-lightbox__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.c360-lightbox__thumb:hover,
.c360-lightbox__thumb--active {
  border-color: var(--brand-500, #EC3D23);
  opacity: 1;
}

@media (max-width: 600px) {
  .c360-lightbox__arrow { display: none; }
  .c360-lightbox__img { max-height: calc(100vh - 140px); }
}
