/* ═══════════════════════════════════════════════════════
   OUTDOOR LIVING PAGE — Visscher Product Page Styles
   ═══════════════════════════════════════════════════════ */

/* ─── Hero ────────────────────────────────────────── */
.ol-hero {
  position: relative;
  height: 85vh;
  min-height: 600px;
  max-height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ol-hero-bg {
  position: absolute;
  inset: 0;
}

.ol-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.ol-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(13, 27, 42, 0.82) 0%,
    rgba(13, 27, 42, 0.65) 50%,
    rgba(13, 27, 42, 0.90) 100%);
}

.ol-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
}

.ol-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--color-white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.28);
}

.ol-hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 2.5rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.ol-hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Trust Bar ──────────────────────────────────── */
.ol-trust-bar {
  background: var(--color-dark);
  padding: 2.5rem 0;
  border-top: 3px solid var(--color-primary);
}

.ol-trust-grid {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.ol-trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}

.ol-trust-item svg {
  flex-shrink: 0;
  color: var(--color-primary-light);
  width: 32px;
  height: 32px;
}

.ol-trust-icon-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.ol-trust-item strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.01em;
}

.ol-trust-item span {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ─── Intro ──────────────────────────────────────── */
.ol-intro {
  padding: var(--section-padding) 0;
}

.ol-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ol-intro-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.ol-intro-text p:first-child {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-dark);
}

.ol-intro-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ─── Product Grid ───────────────────────────────── */
.ol-products {
  padding: var(--section-padding) 0;
  background: var(--color-surface);
}

.ol-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.ol-product-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 360px;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  background: var(--color-dark);
}

.ol-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.ol-product-card-img {
  position: absolute;
  inset: 0;
}

.ol-product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ol-product-card:hover .ol-product-card-img img {
  transform: scale(1.06);
}

.ol-product-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem 1.5rem 1.5rem;
  background: linear-gradient(
    to top,
    rgba(13, 27, 42, 0.92) 0%,
    rgba(13, 27, 42, 0.7) 50%,
    transparent 100%);
  z-index: 2;
}

.ol-product-card-info h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.ol-product-card-info p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* ─── Product Detail Sections ────────────────────── */
.ol-detail {
  padding: var(--section-padding) 0;
}

.ol-detail:nth-child(even) {
  background: var(--color-surface);
}

.ol-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Alternate image-left / image-right */
.ol-detail-right .ol-detail-grid {
  direction: rtl;
}

.ol-detail-right .ol-detail-grid > * {
  direction: ltr;
}

.ol-detail-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ─── Interactive Gallery ────────────────────────── */
.ol-gallery-main {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
}

.ol-gallery-hero {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: opacity 0.25s ease;
}

.ol-gallery-zoom {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.ol-gallery-main:hover .ol-gallery-zoom {
  opacity: 1;
}

.ol-gallery-thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.ol-thumb {
  flex: 1;
  height: 70px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  opacity: 0.55;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.ol-thumb:hover {
  opacity: 0.85;
}

.ol-thumb.active {
  opacity: 1;
  border-color: var(--color-primary);
}

/* ─── Lightbox Modal ─────────────────────────────── */
.ol-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ol-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.ol-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}

.ol-lightbox-img {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  transition: opacity 0.2s ease;
}

.ol-lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.ol-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.ol-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.ol-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.25);
}

.ol-lightbox-prev { left: 1.5rem; }
.ol-lightbox-next { right: 1.5rem; }

.ol-lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.ol-detail-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-primary-ultra-light);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.ol-detail-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.ol-detail-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

/* Spec list */
.ol-spec-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.ol-spec-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.92rem;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}

.ol-spec-list li:last-child {
  border-bottom: none;
}

.ol-spec-list svg {
  flex-shrink: 0;
  color: var(--color-primary);
}

/* Config cards — full-width row below grid */
.ol-config-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-dark);
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.01em;
}

.ol-config-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.ol-config-scroll::-webkit-scrollbar {
  height: 4px;
}

.ol-config-scroll::-webkit-scrollbar-track {
  background: var(--color-border);
  border-radius: 2px;
}

.ol-config-scroll::-webkit-scrollbar-thumb {
  background: var(--color-primary-light);
  border-radius: 2px;
}

.ol-config-card {
  flex: 0 0 180px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  text-align: center;
  scroll-snap-align: start;
  transition: var(--transition);
}

.ol-config-card:hover {
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-sm);
}

.ol-config-card img {
  height: 110px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin: 0 auto 0.5rem;
  background: linear-gradient(135deg, #e8ecf1 0%, #d5dbe3 100%);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
}

.ol-config-card strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.2rem;
}

.ol-config-card span {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  line-height: 1.3;
}

.ol-color-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: 1.5rem;
}

/* Accessories (sauna) */
.ol-accessories {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.ol-accessories strong {
  display: block;
  font-size: 0.85rem;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.ol-accessories span {
  display: block;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  padding: 0.2rem 0;
}

/* Gallery strip */
.ol-gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.ol-gallery-strip img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.3s ease;
}

.ol-gallery-strip img:hover {
  transform: scale(1.03);
}

/* ─── About Visscher ─────────────────────────────── */
.ol-about {
  padding: var(--section-padding) 0;
  background: var(--color-dark);
  color: var(--color-white);
}

.ol-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.ol-visscher-logo {
  height: 60px;
  width: auto;
  margin-bottom: 1.5rem;
}

.ol-about-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.ol-about-list li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 1.5rem;
  position: relative;
}

.ol-about-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary-light);
  font-weight: 700;
}

.ol-about-yard {
  width: 100%;
  border-radius: var(--radius-md);
  margin-top: 0.5rem;
}

.ol-about-zee h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--color-white);
}

.ol-about-zee blockquote {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  border-left: 3px solid var(--color-primary);
  padding-left: 1.5rem;
  margin: 0 0 2rem;
  font-style: italic;
}

.ol-usps-img {
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius-sm);
}

/* ─── Quote Form ─────────────────────────────────── */
.ol-quote {
  padding: var(--section-padding) 0;
}

.ol-quote-inner {
  max-width: 700px;
  margin: 0 auto;
}

.ol-quote-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.ol-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.ol-form-full {
  grid-column: 1 / -1;
}

.ol-form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.4rem;
}

.ol-form-group input,
.ol-form-group select,
.ol-form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: var(--transition);
}

.ol-form-group input:focus,
.ol-form-group select:focus,
.ol-form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-ultra-light);
}

.ol-form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.ol-radio-wrap {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.25rem;
}

.ol-radio {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.92rem;
  cursor: pointer;
  color: var(--color-text);
}

.ol-radio input[type="radio"] {
  width: auto;
  accent-color: var(--color-primary);
}

.ol-submit-btn {
  display: block;
  width: 100%;
  margin-top: 1.5rem;
  text-align: center;
  justify-content: center;
}

.ol-success-msg {
  text-align: center;
  padding: 3rem 1rem;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.ol-success-msg h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-dark);
}

.ol-success-msg p {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 500px;
}

/* ─── FAQ Accordion ──────────────────────────────── */
.ol-faq {
  padding: var(--section-padding) 0;
  background: var(--color-surface);
}

.ol-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.ol-faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--transition);
}

.ol-faq-item[open] {
  box-shadow: var(--shadow-sm);
  border-color: var(--color-primary-light);
}

.ol-faq-item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: var(--transition);
}

.ol-faq-item summary::-webkit-details-marker {
  display: none;
}

.ol-faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.ol-faq-item[open] summary::after {
  content: '−';
}

.ol-faq-item summary:hover {
  color: var(--color-primary);
}

.ol-faq-item p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .ol-intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ol-product-grid {
    grid-template-columns: 1fr;
  }

  .ol-product-card {
    min-height: 280px;
  }

  .ol-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ol-detail-right .ol-detail-grid {
    direction: ltr;
  }

  /* On mobile, image always first for right-layout sections */
  .ol-detail-right .ol-detail-image {
    order: -1;
  }

  .ol-about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .ol-gallery-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .ol-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* ── Hero mobile — matching homepage hero proportions ── */
  .ol-hero {
    height: 100vh;
    min-height: 600px;
    max-height: none;
  }

  .ol-hero-content {
    padding: 0 1.25rem;
  }

  .ol-hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .ol-hero-subtitle {
    font-size: clamp(0.88rem, 1.5vw, 1rem);
    line-height: 1.65;
    margin-bottom: 2rem;
  }

  .ol-hero-actions {
    flex-direction: row;
    justify-content: center;
    gap: 0.75rem;
  }

  .ol-hero-actions .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
  }

  /* ── Trust bar mobile ── */
  .ol-trust-bar {
    padding: 1.75rem 0;
  }

  .ol-trust-grid {
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 0 1rem;
  }

  .ol-trust-item strong {
    font-size: 0.92rem;
  }

  .ol-trust-item span {
    font-size: 0.78rem;
  }

  .ol-trust-item svg {
    width: 24px;
    height: 24px;
  }

  .ol-trust-icon-img {
    width: 28px;
    height: 28px;
  }

  /* ── Intro section mobile ── */
  .ol-intro {
    padding: 3.5rem 0;
  }

  .ol-intro-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
  }

  .ol-intro-text p:first-child {
    font-size: 1.05rem;
    font-weight: 600;
  }

  /* ── Product cards mobile ── */
  .ol-products {
    padding: 3.5rem 0;
    overflow-x: hidden;
  }

  .ol-product-card {
    min-height: 240px;
  }

  .ol-product-card-info h3 {
    font-size: 1.15rem;
  }

  /* ── Detail sections mobile ── */
  .ol-detail {
    padding: 3.5rem 0;
    overflow: hidden;
  }

  .ol-detail > .container {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .ol-detail-content {
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  .ol-detail-title {
    font-size: 1.6rem;
  }

  .ol-detail-desc {
    font-size: 0.95rem;
  }

  .ol-spec-list li {
    font-size: 0.85rem;
    gap: 0.6rem;
  }

  .ol-spec-list svg {
    width: 16px;
    height: 16px;
    min-width: 16px;
  }

  /* ── Gallery thumbnails — horizontal scroll on mobile ── */
  .ol-gallery {
    max-width: 100%;
  }

  .ol-gallery-main {
    max-width: 100%;
  }

  .ol-gallery-thumbs {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.6rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.25rem;
  }

  .ol-thumb {
    flex: 0 0 80px;
    height: 60px;
    scroll-snap-align: start;
  }

  /* ── Config cards mobile ── */
  .ol-config-heading {
    font-size: 1rem;
    margin: 2rem 0 0.75rem;
  }

  .ol-config-card {
    flex: 0 0 150px;
  }

  .ol-config-card img {
    height: 90px;
  }

  /* ── About section mobile ── */
  .ol-about {
    padding: 3.5rem 0;
  }

  .ol-about-zee h3 {
    font-size: 1.2rem;
  }

  .ol-about-zee blockquote {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  /* ── Quote CTA mobile ── */
  .ol-quote {
    padding: 3.5rem 0;
  }

  .ol-quote-inner {
    padding: 0 0.5rem;
  }

  .ol-quote .section-title {
    font-size: 1.6rem;
  }

  .ol-quote .section-subtitle {
    font-size: 0.95rem;
  }

  .ol-quote .btn {
    width: 100%;
    justify-content: center;
  }

  /* ── FAQ mobile ── */
  .ol-faq {
    padding: 3.5rem 0;
  }

  .ol-faq-item summary {
    padding: 1rem 1.25rem;
    font-size: 0.92rem;
  }

  .ol-faq-item p {
    padding: 0 1.25rem 1rem;
    font-size: 0.88rem;
  }

  /* ── Gallery strip mobile ── */
  .ol-gallery-strip {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .ol-gallery-strip img {
    height: 140px;
  }
}

@media (max-width: 480px) {
  .ol-hero {
    min-height: 550px;
  }

  .ol-hero-title {
    font-size: 2.2rem;
  }

  .ol-hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .ol-hero-actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}
