:root {
  --color-brand-primary: #15428d;
  --color-surface-card: #e3d9d3;
}

/* Full screen signage */
html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #0b0f1a;
  overflow: hidden;
}

.swiper,
.swiper-wrapper,
.swiper-slide {
  height: 100vh;
}

.swiper-slide {
  position: relative;
}

/* Slide background image */
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

/* Dark subtle overlay for readability (very light) */
.slide-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 600px at 20% 40%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.25));
  pointer-events: none;
}

/* Blue accents (top bar + right bar) similar to your design */
.accent-top {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 56px;
  background: var(--color-brand-primary);
  opacity: 0.95;
}

.accent-right {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  width: 20%;
  height: 100%;
  background: var(--color-brand-primary);
  opacity: 0.95;
}

/* Right card */
.info-card {
  z-index: 2;
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: min(400px, 42vw);
  background: var(--color-surface-card);
  border-top-right-radius: 40px;
  padding-block: 60px;
  padding-inline: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--color-brand-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.brand img {
  width: clamp(200px, 100%, 100px);
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}

.title {
  text-align: center;
  color: var(--color-brand-primary);
  font-size: clamp(34px, 3.5vw, 54px);
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.caption {
  text-align: center;
  color: rgba(23, 74, 147, 0.9);
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 600;
  opacity: 0.95;
}

.price-wrap {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.price-pill {
  background: var(--color-brand-primary);
  color: var(--color-surface-card);
  border-bottom-left-radius: 20px;
  padding: 8px 26px;
  min-width: 70%;
  text-align: center;
  font-weight: 900;
  font-size: clamp(22px, 2.5vw, 34px);
  letter-spacing: 0.02em;
}

/* Swiper UI minimal (hidden for signage; you can enable if needed) */
.swiper-pagination {
  display: none;
}

.swiper-button-next,
.swiper-button-prev {
  display: none;
}

/* Small fallback message */
.empty {
  height: 100vh;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  text-align: center;
  padding: 24px;
}
