/**
 * Product 563 layout styles — RDL-Oi Series.
 * Enqueued only on this product page.
 */

.rdl-pl--563 {
  --rdl-pl-red: #E00100;
  --rdl-pl-red-hover: #C40100;
  --rdl-pl-red-glow: rgba(224, 1, 0, 0.28);
  --rdl-pl-ink: #3a3a3a;
  color: #fff;
  width: 100%;
}

.rdl-pl--563 *,
.rdl-pl--563 *::before,
.rdl-pl--563 *::after {
  box-sizing: border-box;
}

.rdl-pl--563 .rdl-reveal,
.rdl-pl--563 .rdl-reveal-left,
.rdl-pl--563 .rdl-reveal-right {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.rdl-pl--563 .rdl-reveal { transform: translateY(32px); }
.rdl-pl--563 .rdl-reveal-left { transform: translateX(-32px); }
.rdl-pl--563 .rdl-reveal-right { transform: translateX(32px); }

.rdl-pl--563 .rdl-reveal.rdl-visible,
.rdl-pl--563 .rdl-reveal-left.rdl-visible,
.rdl-pl--563 .rdl-reveal-right.rdl-visible {
  opacity: 1;
  transform: none;
}

.rdl-pl--563 .rdl-delay-1 { transition-delay: 0.08s; }
.rdl-pl--563 .rdl-delay-2 { transition-delay: 0.16s; }
.rdl-pl--563 .rdl-delay-3 { transition-delay: 0.24s; }

.rdl-pl--563 .rdl-pl-wrap {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.rdl-pl--563 .rdl-pl-wrap--wide {
  max-width: 1480px;
}

@media (min-width: 768px) {
  .rdl-pl--563 .rdl-pl-wrap { padding: 0 32px; }
}

.rdl-pl--563 .rdl-pl-section {
  padding: 56px 0;
}

.rdl-pl--563 .rdl-pl-section--last {
  padding-bottom: 72px;
}

@media (min-width: 768px) {
  .rdl-pl--563 .rdl-pl-section { padding: 80px 0; }
  .rdl-pl--563 .rdl-pl-section--last { padding-bottom: 96px; }
}

.rdl-pl--563 .rdl-pl-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--rdl-pl-red);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  box-shadow: 0 8px 24px var(--rdl-pl-red-glow);
}

/* ── Hero ─────────────────────────────────────────────────────────── */

.rdl-pl--563 .rdl-pl-hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  overflow: hidden;
  background: #050505;
}

.rdl-pl--563 .rdl-pl-hero__img {
  display: block;
  width: 100%;
  height: auto;
}

.rdl-pl--563 .rdl-pl-hero__copy {
  position: absolute;
  top: calc(var(--rdl-header-offset, 96px) + 20px);
  left: 20px;
  right: auto;
  bottom: auto;
  z-index: 2;
  width: max-content;
  max-width: calc(100% - 40px);
  margin: 0;
  padding: 0;
  text-align: left;
}

@media (min-width: 768px) {
  .rdl-pl--563 .rdl-pl-hero__copy {
    left: 32px;
    max-width: calc(100% - 64px);
  }
}

.rdl-pl--563 .rdl-pl-hero__title,
.rdl-pl--563 .rdl-pl-hero__sub {
  text-align: left;
}

.rdl-pl--563 .rdl-pl-hero__title {
  margin: 0;
  font-size: clamp(1.7rem, 4.4vw, 3.6rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.08;
  color: #fff;
  text-transform: uppercase;
}

.rdl-pl--563 .rdl-pl-hero__sub {
  margin: 10px 0 0;
  font-size: clamp(0.78rem, 1.6vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.3;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
}

/* ── Features ─────────────────────────────────────────────────────── */

.rdl-pl--563 .rdl-pl-section--features {
  position: relative;
  isolation: isolate;
  padding: 72px 0;
  background: #f4f6f8;
  overflow: hidden;
}

.rdl-pl--563 .rdl-pl-features__sky {
  position: absolute;
  inset: -24px;
  z-index: 0;
  background-color: #f4f6f8;
  background-image: var(--rdl-pl-feature-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(22px) saturate(0.35);
}

.rdl-pl--563 .rdl-pl-features__sky::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(247, 248, 250, 0.7);
}

.rdl-pl--563 .rdl-pl-section--features .rdl-pl-wrap {
  position: relative;
  z-index: 1;
}

.rdl-pl--563 .rdl-pl-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 16px;
}

@media (min-width: 960px) {
  .rdl-pl--563 .rdl-pl-section--features {
    padding: 96px 0 108px;
  }

  .rdl-pl--563 .rdl-pl-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 72px 40px;
    max-width: 1080px;
    margin: 0 auto;
  }
}

.rdl-pl--563 .rdl-pl-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.rdl-pl--563 .rdl-pl-feature__icon {
  width: 80px;
  height: 80px;
  padding: 13px;
  border: 2px solid #4a4a4a;
  border-radius: 18px;
  color: #4a4a4a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rdl-pl--563 .rdl-pl-feature__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.rdl-pl--563 .rdl-pl-feature__label {
  margin: 0;
  max-width: 220px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: var(--rdl-pl-ink);
}

@media (min-width: 768px) {
  .rdl-pl--563 .rdl-pl-feature__icon {
    width: 88px;
    height: 88px;
    padding: 16px;
    border-radius: 20px;
  }

  .rdl-pl--563 .rdl-pl-feature__label {
    font-size: 1.05rem;
  }
}

/* ── Full-width brochure images ───────────────────────────────────── */

.rdl-pl--563 .rdl-pl-shot {
  width: 100%;
  background: #f4f6f8;
}

.rdl-pl--563 .rdl-pl-shot img {
  display: block;
  width: 100%;
  height: auto;
}

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

.rdl-pl--563 .rdl-pl-section--specs {
  background: #111;
}

.rdl-pl--563 .rdl-pl-specs-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
}

.rdl-pl--563 .rdl-pl-specs {
  width: 100%;
  min-width: 1080px;
  border-collapse: collapse;
  color: #fff;
}

.rdl-pl--563 .rdl-pl-specs th,
.rdl-pl--563 .rdl-pl-specs td {
  padding: 12px 14px;
  font-size: 0.8125rem;
  line-height: 1.4;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.rdl-pl--563 .rdl-pl-specs thead th {
  padding: 16px 10px 18px;
  background: transparent;
  font-weight: 600;
}

.rdl-pl--563 .rdl-pl-specs thead .rdl-pl-pill {
  min-width: 72px;
}

.rdl-pl--563 .rdl-pl-specs thead th:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  background: #111;
}

.rdl-pl--563 .rdl-pl-specs tbody th {
  text-align: left;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  white-space: nowrap;
  position: sticky;
  left: 0;
  z-index: 1;
  background: #111;
  box-shadow: 8px 0 12px -8px rgba(0, 0, 0, 0.55);
}

.rdl-pl--563 .rdl-pl-specs tbody td {
  text-align: center;
}

.rdl-pl--563 .rdl-pl-specs tbody tr:nth-child(odd) td,
.rdl-pl--563 .rdl-pl-specs tbody tr:nth-child(odd) th {
  background: #191919;
}

.rdl-pl--563 .rdl-pl-specs tbody tr:nth-child(even) td,
.rdl-pl--563 .rdl-pl-specs tbody tr:nth-child(even) th {
  background: #111;
}

.rdl-pl--563 .rdl-pl-specs tbody td[colspan] {
  text-align: center;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  white-space: normal;
}

.rdl-pl--563 .rdl-pl-specs tbody td {
  white-space: normal;
}

@media (min-width: 768px) {
  .rdl-pl--563 .rdl-pl-specs th,
  .rdl-pl--563 .rdl-pl-specs td {
    padding: 13px 16px;
    font-size: 0.875rem;
  }
}

.rdl-pl--563 #rdl-pl-specs {
  scroll-margin-top: calc(var(--rdl-header-offset, 96px) + 24px);
}

/* ── Quote ────────────────────────────────────────────────────────── */

.rdl-pl--563 .rdl-pl-quote {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.rdl-pl--563 .rdl-pl-quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border: 0;
  border-radius: 999px;
  background: var(--rdl-pl-red);
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  cursor: pointer;
  box-shadow: 0 8px 24px var(--rdl-pl-red-glow);
  transition: background 0.2s ease, transform 0.2s ease;
}

.rdl-pl--563 .rdl-pl-quote-btn:hover {
  background: var(--rdl-pl-red-hover);
  transform: translateY(-1px);
}

html {
  scroll-behavior: smooth;
}
