/**
 * Streamline Property Detail - Luxury beach retreat design
 * Ocean blue accents, coral CTAs, spacious layout. Fully responsive.
 *
 * @package Streamline_Integration
 */

/* Brand design tokens */
.streamline-detail {
  --streamline-primary: #2a7c88;
  --streamline-primary-dark: #1f5c66;
  --streamline-coral: #ea8974;
  --streamline-coral-hover: #e07860;
  --streamline-sand: #f9f6f3;
  --streamline-sand-soft: #faf8f5;
  --streamline-text: #333333;
  --streamline-text-muted: #666666;
  --streamline-border: 1px solid rgba(0, 0, 0, 0.08);
  --streamline-border-light: 1px solid rgba(0, 0, 0, 0.06);
  --streamline-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  --streamline-shadow-card: 0 4px 20px rgba(0, 0, 0, 0.06);
  --streamline-shadow-soft: 0 1px 8px rgba(0, 0, 0, 0.03);
  --streamline-gap: 1.75rem;
  --streamline-section-pad: 110px;
  --streamline-radius: 16px;
  --streamline-radius-sm: 8px;
  --streamline-container: 1200px;
  --streamline-text-max: 680px;
  --streamline-star-color: #ea8974;
  --streamline-calendar-available: #3d8f99;
  --streamline-calendar-unavailable: #ece9e6;
  --streamline-hero-bg: none;
  /* Aliases for compatibility */
  --streamline-teal: var(--streamline-primary);
  --streamline-teal-dark: var(--streamline-primary-dark);
  --streamline-orange: var(--streamline-coral);
  --streamline-orange-hover: var(--streamline-coral-hover);
}

/* Layout */
.streamline-detail {
  scroll-behavior: smooth;
  position: relative;
}

/* Headings color within property detail */
.streamline-detail h2,
.streamline-detail h3,
.streamline-detail h4,
.streamline-detail h5,
.streamline-detail h6 {
  color: #1c71a0;
}

.streamline-detail__content {
  max-width: var(--streamline-container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Desktop: inline section hidden (booking lives in hero float) */
.streamline-detail__booking-inline {
  scroll-margin-top: 1.5rem;
}

.streamline-detail__booking-inline:empty {
  display: none;
}

/* Mobile inline booking styles (applied inside @media max-width:900px below) */

/* Cinematic Hero - full bleed, 90vh, dramatic */
.streamline-detail__hero-cinematic {
  position: relative;
  width: 100vw;
  min-height: 90vh;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  display: flex;
  align-items: flex-end;
  background-color: var(--streamline-sand);
  background-image: var(--streamline-hero-bg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

@media (prefers-reduced-motion: reduce) {
  .streamline-detail__hero-cinematic {
    background-attachment: scroll;
  }
}

.streamline-detail__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.35) 35%,
    rgba(0, 0, 0, 0.08) 60%,
    transparent 85%
  );
  pointer-events: none;
}

.streamline-detail__hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  max-width: var(--streamline-container);
  margin: 0 auto;
  padding: 48px 24px 64px;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Form on right: swap visual order via flex order */
.streamline-detail__hero-inner--form-right .streamline-detail__booking-float {
  order: 2;
}
.streamline-detail__hero-inner--form-right .streamline-detail__hero-content {
  order: 1;
}

.streamline-detail__hero-content {
  flex: 1;
  min-width: 0;
}

.streamline-detail__title {
  margin: 0 0 0.35rem;
  font-size: clamp(3.25rem, 6vw, 4.5rem);
  line-height: 1.05;
  font-weight: 600;
  color: #fff;
  text-shadow:
    0 2px 20px rgba(0, 0, 0, 0.35),
    0 4px 40px rgba(0, 0, 0, 0.2);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
}

.streamline-detail__tagline {
  margin: 0 0 0;
  font-size: 1.1875rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
}

.streamline-detail__primary-desc {
  margin: 0.5rem 0 0;
  font-size: 1rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.streamline-detail__hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}

.streamline-detail__review-summary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.streamline-detail__review-summary-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition:
    opacity 0.2s,
    text-decoration 0.2s;
  padding: 0.15rem 0;
}

.streamline-detail__review-summary-link:hover {
  opacity: 0.95;
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.streamline-detail__review-summary .streamline-reviews__star {
  color: var(--streamline-star-color);
}

.streamline-detail__review-count {
  font-weight: 500;
}

.streamline-detail__review-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.1em;
  font-size: 1.1875rem;
  line-height: 1;
}

.streamline-detail__review-stars .streamline-reviews__star {
  color: var(--streamline-star-color);
  font-size: 1.1875rem;
}

.streamline-detail__review-stars .streamline-reviews__star--empty {
  color: currentColor;
  opacity: 0.5;
}

.streamline-detail__hero-divider {
  display: none;
  width: 1px;
  height: 1em;
  background: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

.streamline-detail__hero-meta--has-reviews .streamline-detail__hero-divider {
  display: block;
}

.streamline-detail__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  align-items: flex-start;
  margin: 0;
}

.streamline-detail__stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  transition: transform 0.25s ease;
}

.streamline-detail__stat:hover {
  transform: translateY(-2px);
}

.streamline-detail__stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.95);
}

.streamline-detail__stat-icon .streamline-stat-icon,
.streamline-detail__stat-icon svg {
  width: 36px;
  height: 24px;
}

.streamline-detail__stat-label {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}

/* Glassmorphism booking float - smaller, more transparent */
.streamline-detail__booking-float {
  flex-shrink: 0;
}

.streamline-detail__booking-float .streamline-booking__card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.06),
    0 8px 32px rgba(0, 0, 0, 0.04);
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  min-width: 320px;
  max-width: 380px;
}

.streamline-detail__booking-float--compact .streamline-booking__card {
  min-width: 300px;
  max-width: 360px;
  padding: 1.15rem 1.35rem;
}

/* Arrival - typography only, no box */
.streamline-arrival {
  padding: 90px 24px 90px;
  text-align: center;
}

.streamline-arrival__text {
  margin: 0 auto;
  max-width: 680px;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.75;
  color: var(--streamline-text);
  font-weight: 400;
  letter-spacing: 0.03em;
}

/* Full-width immersive gallery slider */
.streamline-gallery-slider {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  height: 65vh;
  min-height: 400px;
  margin-bottom: var(--streamline-section-pad);
  overflow: hidden;
  cursor: pointer;
}

.streamline-gallery-slider__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.streamline-gallery-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.streamline-gallery-slider__slide--active {
  opacity: 1;
  pointer-events: auto;
}

.streamline-gallery-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.streamline-gallery-slider__prev,
.streamline-gallery-slider__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-size: 1.125rem;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  transition:
    background 0.3s,
    transform 0.25s,
    opacity 0.25s;
  z-index: 2;
}

.streamline-gallery-slider__prev:hover,
.streamline-gallery-slider__next:hover {
  background: rgba(234, 137, 116, 0.85);
  transform: translateY(-50%) scale(1.05);
}

.streamline-gallery-slider__prev {
  left: 1.5rem;
}

.streamline-gallery-slider__next {
  right: 1.5rem;
}

.streamline-gallery-slider__counter {
  position: absolute;
  bottom: 1.25rem;
  right: 1.5rem;
  padding: 0.35rem 0.75rem;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 12px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #fff;
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  .streamline-gallery-slider__slide {
    transition: none;
  }
}

/* Gallery */
.streamline-gallery,
.streamline-detail__gallery {
  margin-bottom: var(--streamline-section-pad);
}

.streamline-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  border-radius: var(--streamline-radius);
  overflow: hidden;
  box-shadow: var(--streamline-shadow);
}

.streamline-gallery__grid .streamline-gallery__item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.streamline-gallery__item {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 1;
}

.streamline-gallery__item:first-child {
  aspect-ratio: 16/10;
}

/* Scroll-triggered reveal */
.streamline-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.streamline-reveal.streamline-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .streamline-reveal {
    opacity: 1;
    transform: none;
  }
  .streamline-reveal.streamline-visible {
    opacity: 1;
  }
}

@keyframes streamline-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.streamline-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  animation: streamline-fade-in 0.6s ease forwards;
}

.streamline-gallery__item:hover img {
  transform: scale(1.05);
}

/* Staggered editorial layout for detail page */
.streamline-gallery--staggered .streamline-gallery__grid {
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.5rem;
  min-height: 420px;
}

.streamline-gallery--staggered
  .streamline-gallery__grid
  .streamline-gallery__item:first-child {
  grid-column: 1;
  grid-row: 1 / -1;
  aspect-ratio: auto;
  min-height: 100%;
}

.streamline-gallery--staggered
  .streamline-gallery__grid
  .streamline-gallery__item:nth-child(2),
.streamline-gallery--staggered
  .streamline-gallery__grid
  .streamline-gallery__item:nth-child(3) {
  aspect-ratio: 16/10;
}

.streamline-gallery--staggered
  .streamline-gallery__grid
  .streamline-gallery__item:nth-child(n + 4) {
  display: none;
}

.streamline-gallery__view-all {
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 1.25rem auto 0;
  padding: 0.875rem 1.5rem;
  border: none;
  border-radius: var(--streamline-radius-sm);
  background: var(--streamline-coral);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition:
    background 0.2s,
    opacity 0.2s;
  text-align: center;
}

.streamline-gallery__view-all:hover {
  background: var(--streamline-coral-hover);
}

.streamline-gallery__view-all:focus {
  outline: 2px solid var(--streamline-primary);
  outline-offset: 2px;
}

/* Lightbox */
.streamline-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.92);
}

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

.streamline-lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.streamline-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s;
}

.streamline-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.streamline-lightbox__prev,
.streamline-lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s;
}

.streamline-lightbox__prev {
  left: 1rem;
}

.streamline-lightbox__next {
  right: 1rem;
}

.streamline-lightbox__prev:hover,
.streamline-lightbox__next:hover {
  background: rgba(255, 255, 255, 0.3);
}

.streamline-lightbox__counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
}

/* Description - split layout */
.streamline-description {
  margin-bottom: var(--streamline-section-pad);
  padding: var(--streamline-section-pad) 0;
  background: var(--streamline-sand-soft);
}

.streamline-description--split {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 4.5rem;
  align-items: start;
  max-width: var(--streamline-container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.streamline-description--split .streamline-description__side {
  position: sticky;
  top: calc(var(--admin-bar-height, 0px) + 2rem);
}

.streamline-description--split .streamline-description__title {
  margin: 0 0 1.5rem;
  padding-left: 1rem;
  border-left: 4px solid var(--streamline-primary);
  font-size: clamp(2.375rem, 4.2vw, 3.125rem);
  font-weight: 600;
  color: var(--streamline-primary);
  text-align: left;
  text-transform: none;
  letter-spacing: 0;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  line-height: 1.25;
}

.streamline-description--split .streamline-description__title::after {
  display: none;
}

.streamline-description--split .streamline-description__body {
  min-width: 0;
  max-width: 580px;
}

.streamline-description__title {
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--streamline-primary);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.streamline-description__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  margin: 1rem auto 0;
  background: var(--streamline-primary);
  opacity: 0.5;
}

.streamline-description__content {
  max-width: 100%;
  margin: 0;
  line-height: 1.9;
  color: var(--streamline-text);
  font-size: 1.0625rem;
}

.streamline-description__content p {
  margin: 0 0 1.5rem;
}

.streamline-description__content p:first-child {
  margin-top: 0;
}

.streamline-description__content p:last-child {
  margin-bottom: 0;
}

.streamline-description__content p + p {
  margin-top: 0;
}

.streamline-description__notice {
  padding: 1.5rem 1.75rem;
  margin: 1.25rem auto;
  line-height: 1.75;
  border-left: 3px solid rgba(42, 124, 136, 0.4);
  background: rgba(42, 124, 136, 0.05);
  font-size: 0.9375rem;
  max-width: 800px;
}

.streamline-description__notice strong:first-child {
  font-weight: 600;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.95;
}

.streamline-description__content ul,
.streamline-description__content ol {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
}

.streamline-description__content ul {
  list-style-type: disc;
}

.streamline-description__content ol {
  list-style-type: decimal;
}

.streamline-description__content li {
  margin-bottom: 0.35rem;
}

.streamline-description__content li:last-child {
  margin-bottom: 0;
}

.streamline-description__content a {
  color: var(--streamline-primary);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.streamline-description__content a:hover {
  color: var(--streamline-primary-dark);
  text-decoration-thickness: 2px;
}

.streamline-description__content strong,
.streamline-description__content b {
  font-weight: 600;
}

.streamline-description__content h3,
.streamline-description__content h4 {
  margin: 1.25rem 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--streamline-primary);
}

.streamline-description__content h3:first-child,
.streamline-description__content h4:first-child {
  margin-top: 0;
}

.streamline-description__content blockquote {
  margin: 1rem 0;
  padding-left: 1rem;
  border-left: 3px solid var(--streamline-primary);
  font-style: italic;
  opacity: 0.95;
}

/* Description read more / read less */
.streamline-description--collapsible .streamline-description__content {
  position: relative;
  transition: max-height 0.3s ease;
}

.streamline-description--collapsible.streamline-description--collapsed
  .streamline-description__content {
  max-height: 160px;
  overflow: hidden;
}

.streamline-description--collapsible.streamline-description--collapsed
  .streamline-description__content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4em;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--streamline-sand) 80%
  );
  pointer-events: none;
}

.streamline-description__toggle {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.35rem 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  background: none;
  border: none;
  color: var(--streamline-primary);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  cursor: pointer;
  transition: opacity 0.2s;
}

.streamline-description__toggle:hover {
  opacity: 0.8;
  color: var(--streamline-primary-dark);
}

/* Lifestyle strips - alternating image/text */
.streamline-lifestyle {
  margin-bottom: var(--streamline-section-pad);
}

.streamline-lifestyle__strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 420px;
  margin-bottom: 0;
}

.streamline-lifestyle__strip--image-right .streamline-lifestyle__media {
  order: 2;
}

.streamline-lifestyle__strip--image-right .streamline-lifestyle__content {
  order: 1;
}

.streamline-lifestyle__strip--text-only {
  min-height: 0;
}

.streamline-lifestyle__strip--text-only .streamline-lifestyle__content {
  max-width: 700px;
}

.streamline-lifestyle__media {
  position: relative;
  overflow: hidden;
}

.streamline-lifestyle__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
  display: block;
  transition: transform 0.3s ease;
}

.streamline-lifestyle__strip:hover .streamline-lifestyle__media img,
.streamline-lifestyle__media:hover img {
  transform: scale(1.05);
}

.streamline-lifestyle__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 3.5rem;
  background: var(--streamline-sand-soft);
}

.streamline-lifestyle__title {
  margin: 0 0 1rem;
  font-size: clamp(1.625rem, 2.75vw, 2.25rem);
  font-weight: 600;
  color: var(--streamline-primary);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  line-height: 1.25;
}

.streamline-lifestyle__desc {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--streamline-text);
}

/* Amenities & Features - section background rhythm: white */
.streamline-amenities-features {
  padding: 120px 24px 120px;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
  background: #fff;
}

.streamline-amenities-features__title {
  margin: 0 0 1rem;
  padding-bottom: 1rem;
  font-size: 2rem;
  font-weight: 600;
  color: #1c71a0;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  text-align: center;
  border-bottom: 1px solid rgba(28, 113, 160, 0.2);
}

.streamline-amenities-features__box {
  max-width: 960px;
  margin: 2.5rem auto 0;
  padding: 70px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.streamline-amenities-features__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 60px;
}

.amenities-features .amenity-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
}

.amenities-features .ct-fancy-icon {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  margin-top: 2px;
}

.amenities-features .ct-fancy-icon svg {
  width: 22px;
  height: 22px;
  fill: #f9d5cb;
  transition: transform 0.2s ease;
}

.amenities-features .amenity-item:hover .ct-fancy-icon svg {
  transform: translateX(4px);
}

.amenities-features .amenity-text {
  font-size: 1rem;
  line-height: 1.65;
  color: #2b2b2b;
  transition: color 0.2s ease;
}

.amenities-features .amenity-item:hover .amenity-text {
  color: #1a1a1a;
}

/* Amenities - 3 luxury feature blocks (standalone shortcode) */
.streamline-amenities {
  margin-bottom: var(--streamline-section-pad);
  padding: var(--streamline-section-pad) 0;
  background: #fff;
}

.streamline-amenities--blocks .streamline-amenities__blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--streamline-container);
  margin: 0 auto;
  padding: 0 24px;
}

.streamline-amenities__block {
  padding: 2.5rem 2rem;
  border-radius: var(--streamline-radius);
  background: var(--streamline-sand-soft);
  text-align: center;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.streamline-amenities__block:hover {
  transform: translateY(-2px);
  box-shadow: var(--streamline-shadow-soft);
}

.streamline-amenities__block-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  color: var(--streamline-primary);
}

.streamline-amenities__block-icon svg {
  width: 32px;
  height: 32px;
}

.streamline-amenities__block-title {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--streamline-primary);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  line-height: 1.3;
}

.streamline-amenities__block-desc {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--streamline-text-muted);
}

.streamline-amenities__title {
  margin: 0 0 2rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1c71a0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.streamline-amenities__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  margin: 1rem auto 0;
  background: var(--streamline-primary);
  opacity: 0.5;
}

.streamline-amenities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 2.5rem;
}

.streamline-amenities__column {
  padding: 1.25rem;
  border-radius: var(--streamline-radius-sm);
  transition: background 0.2s ease;
}

.streamline-amenities__column:hover {
  background: rgba(42, 124, 136, 0.04);
}

.streamline-amenities__column-title {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1c71a0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.streamline-amenities__column--outdoor
  .streamline-amenities__column-title::before {
  content: "🏖";
  font-size: 1.125rem;
}

.streamline-amenities__column--indoor
  .streamline-amenities__column-title::before {
  content: "🏠";
  font-size: 1.125rem;
}

.streamline-amenities__column--premium
  .streamline-amenities__column-title::before {
  content: "✨";
  font-size: 1.125rem;
}

.streamline-amenities__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.streamline-amenities__list li {
  position: relative;
  padding: 8px 0 8px 26px;
  font-size: 15px;
  line-height: 1.6;
  color: #2b2b2b;
  transition: color 0.2s ease;
}

.streamline-amenities__list li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 8px;
  color: #f9d5cb;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
}

.streamline-amenities__column:hover .streamline-amenities__list li {
  color: var(--streamline-text);
}

/* Reviews - section background rhythm: white, consistent elevation */
.streamline-reviews {
  margin: 0;
  padding: 120px 24px 120px;
  background: #fff;
}

.streamline-reviews--no-reviews {
  display: none;
}

.streamline-reviews__header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.streamline-reviews__title {
  margin: 0 0 0.5rem;
  padding-bottom: 1rem;
  font-size: 2rem;
  font-weight: 600;
  color: #1c71a0;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  text-transform: none;
  letter-spacing: 0;
  border-bottom: 1px solid rgba(28, 113, 160, 0.2);
}

.streamline-reviews__title::after {
  display: none;
}

.streamline-reviews__summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: var(--streamline-text-muted);
}

.streamline-reviews__summary-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.15em;
  font-size: 1.375rem;
  line-height: 1;
}

.streamline-reviews__summary-stars .streamline-reviews__star {
  color: var(--streamline-star-color);
}

.streamline-reviews__summary-stars .streamline-reviews__star--empty {
  color: currentColor;
  opacity: 0.35;
}

.streamline-reviews__summary-count {
  font-weight: 500;
}

.streamline-reviews__loading {
  font-size: 0.9375rem;
  opacity: 0.8;
}

.streamline-reviews__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 2.5rem;
  max-width: var(--streamline-container);
  margin: 0 auto;
  padding: 0 24px;
}

.streamline-reviews__item {
  position: relative;
  padding: 28px 28px 28px 3.25rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 20px;
  background: #fff;
  width: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  animation: streamline-review-fade 0.5s ease forwards;
}

.streamline-reviews__quote {
  position: absolute;
  top: 28px;
  left: 28px;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--streamline-primary);
  opacity: 0.12;
  font-family: Georgia, serif;
  pointer-events: none;
}

.streamline-reviews__view-all-wrap {
  grid-column: 1 / -1;
  text-align: center;
  margin: 1rem 0 0;
}

.streamline-reviews__view-all {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--streamline-primary);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: color 0.2s;
}

.streamline-reviews__view-all:hover {
  color: var(--streamline-primary-dark);
}

@keyframes streamline-review-fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .streamline-reviews__item {
    animation: none;
  }
}

.streamline-reviews__header {
  margin-bottom: 16px;
}

.streamline-reviews__header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 1.5em;
}

.streamline-reviews__author {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--streamline-text);
  flex-shrink: 0;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.streamline-reviews__stars {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.1em;
  height: 1.25em;
  flex-shrink: 0;
  font-size: 1.0625rem;
  line-height: 1;
}

.streamline-reviews__date {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--streamline-text-muted, rgba(0, 0, 0, 0.55));
  margin-top: 0.25rem;
}

.streamline-reviews__item-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 11px;
  color: var(--streamline-text);
}

.streamline-reviews__comments {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--streamline-text);
}

.streamline-reviews__star {
  color: var(--streamline-star-color);
}

.streamline-reviews__star--full {
  opacity: 1;
}
.streamline-reviews__star--half {
  opacity: 0.6;
}
.streamline-reviews__star--empty {
  color: currentColor;
  opacity: 0.35;
}

/* Plan Your Stay - lightweight, balanced within hierarchy */
.streamline-availability {
  margin: 0;
  padding: 140px 24px 140px;
  width: 100%;
  box-sizing: border-box;
  background: #f5f2ee;
}

.streamline-availability__wrapper {
  max-width: 820px;
  margin: 0 auto;
  padding: 50px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.streamline-availability__title {
  margin: 0 0 2rem;
  padding-bottom: 1rem;
  font-size: 2rem;
  font-weight: 600;
  color: #1c71a0;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  text-align: center;
  text-transform: none;
  letter-spacing: 0;
  border-bottom: 1px solid rgba(28, 113, 160, 0.2);
}

.streamline-availability__title::after {
  display: none;
}

.streamline-availability__legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 0.25rem;
  margin-bottom: 1.25rem;
  font-size: 0.8125rem;
  color: var(--streamline-text-muted);
}

.streamline-availability__legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.streamline-availability__legend-item::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 3px;
  flex-shrink: 0;
}

.streamline-availability__legend-item--available::before {
  background: var(--streamline-calendar-available);
}

.streamline-availability__legend-item--unavailable::before {
  background: var(--streamline-calendar-unavailable);
}

.streamline-availability__legend-item--arrive::before {
  background: linear-gradient(
    135deg,
    var(--streamline-calendar-unavailable) 50%,
    var(--streamline-calendar-available) 50%
  );
}

.streamline-availability__legend-item--depart::before {
  background: linear-gradient(
    225deg,
    var(--streamline-calendar-available) 50%,
    var(--streamline-calendar-unavailable) 50%
  );
}

.streamline-availability__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
}

.streamline-availability__nav {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.streamline-availability__calendars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.25rem;
  transition: opacity 0.2s ease;
}

.streamline-availability__note {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--streamline-text-muted);
  text-align: center;
  line-height: 1.5;
}

.streamline-availability__prev,
.streamline-availability__next {
  padding: 0.5rem 1rem;
  border: var(--streamline-border);
  border-radius: var(--streamline-radius-sm);
  background: #fff;
  font-size: 0.875rem;
  cursor: pointer;
  color: var(--streamline-text);
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
}

.streamline-availability__prev:hover,
.streamline-availability__next:hover {
  background: var(--streamline-coral);
  border-color: var(--streamline-coral);
  color: #fff;
}

.streamline-availability__prev:focus,
.streamline-availability__next:focus {
  outline: 2px solid var(--streamline-coral);
  outline-offset: 2px;
}

.streamline-availability__error {
  color: #c00;
  font-size: 0.9375rem;
}

.streamline-calendar {
  font-size: 0.75rem;
}

.streamline-calendar__title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.8125rem;
  color: var(--streamline-text);
}

.streamline-calendar__head,
.streamline-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.streamline-calendar__head span {
  font-weight: 500;
  opacity: 0.7;
}

.streamline-calendar__day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  min-height: 26px;
  position: relative;
}

.streamline-calendar__day--available {
  background: var(--streamline-calendar-available);
  color: #fff;
}

.streamline-calendar__day--unavailable,
.streamline-calendar__day--blocked,
.streamline-calendar__day--past {
  background: var(--streamline-calendar-unavailable);
  color: #999;
}

.streamline-calendar__day--arrive {
  background: linear-gradient(
    135deg,
    var(--streamline-calendar-unavailable) 50%,
    var(--streamline-calendar-available) 50%
  );
  color: #333;
}
.streamline-calendar__day--arrive .streamline-calendar__day-num {
  color: inherit;
}

.streamline-calendar__day--depart {
  background: linear-gradient(
    225deg,
    var(--streamline-calendar-available) 50%,
    var(--streamline-calendar-unavailable) 50%
  );
  color: #fff;
}
.streamline-calendar__day--depart .streamline-calendar__day-num {
  color: inherit;
}

.streamline-calendar__blank {
  aspect-ratio: 1;
  min-height: 22px;
}

/* Booking card */
.streamline-booking__mobile-trigger {
  display: none;
}

.streamline-booking__card {
  position: sticky;
  top: calc(var(--admin-bar-height, 0px) + 1.5rem);
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 20px;
  box-shadow:
    0 18px 38px rgba(16, 36, 48, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.45) inset;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(246, 249, 250, 0.82) 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.streamline-booking__form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.streamline-booking__row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.streamline-booking__row--inline {
  display: grid;
  grid-template-columns: auto minmax(56px, 1fr) auto minmax(56px, 1fr);
  align-items: end;
  gap: 0.55rem 0.65rem;
}

.streamline-booking__row--inline > label {
  flex-shrink: 0;
  white-space: nowrap;
}

.streamline-booking__row label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(36, 56, 64, 0.95);
  letter-spacing: 0.02em;
}

.streamline-booking__input,
.streamline-booking__select {
  width: 100%;
  padding: 0.62rem 0.75rem;
  border: 1px solid rgba(34, 72, 92, 0.16);
  border-radius: 10px;
  font-size: 0.9375rem;
  background: rgba(255, 255, 255, 0.94);
  color: #1f2d34;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.75) inset;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.streamline-booking__input:hover,
.streamline-booking__select:hover {
  border-color: rgba(34, 72, 92, 0.26);
}

.streamline-booking__input:focus,
.streamline-booking__select:focus {
  outline: none;
  border-color: rgba(42, 124, 136, 0.55);
  box-shadow: 0 0 0 3px rgba(42, 124, 136, 0.14);
  background: #fff;
}

.streamline-booking__row--inline > label {
  flex-shrink: 0;
  white-space: nowrap;
}

.streamline-booking__row--inline .streamline-booking__select {
  width: auto;
  min-width: 3.25rem;
  flex-shrink: 0;
}

.streamline-booking__status {
  font-size: 0.875rem;
  margin: 0.25rem 0;
}

.streamline-booking__status:empty {
  min-height: 0;
  margin: 0;
  padding: 0;
}

.streamline-booking__status.streamline-booking__status--success {
  color: #0a6e0a;
}

.streamline-booking__status.streamline-booking__status--error {
  color: #c00;
}

.streamline-booking__actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.streamline-booking__btn {
  width: 100%;
  padding: 0.78rem 1.1rem;
  border: none;
  border-radius: 10px;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    opacity 0.2s,
    background 0.2s,
    transform 0.25s ease;
}

.streamline-booking__btn:hover:not(:disabled) {
  opacity: 0.92;
}

.streamline-booking__btn:focus,
.streamline-booking__btn:focus-visible {
  outline: 2px solid var(--streamline-primary);
  outline-offset: 2px;
}

.streamline-booking__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.streamline-booking__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

.streamline-booking__card-title {
  margin: 0;
  font-size: 1.9rem;
  font-weight: 700;
  color: #1c71a0;
  line-height: 1.2;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  flex: 1;
  min-width: 0;
}

.streamline-booking__card-close {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: none;
  background: rgba(0, 0, 0, 0.06);
  color: var(--streamline-text);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}

.streamline-booking__card-close:hover {
  background: rgba(0, 0, 0, 0.1);
  color: var(--streamline-text);
}

.streamline-booking__row--date .streamline-booking__date-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.streamline-booking__row--date .streamline-booking__input[readonly] {
  cursor: pointer;
  background: #fff;
}

.streamline-booking__date-icon {
  position: absolute;
  right: 0.75rem;
  width: 1.25rem;
  height: 1.25rem;
  pointer-events: none;
  opacity: 0.62;
  color: #4b5d65;
}

.streamline-booking__date-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E") center/contain no-repeat;
}

.streamline-booking__btn--search {
  background: linear-gradient(
    180deg,
    var(--streamline-coral) 0%,
    var(--streamline-coral-hover) 100%
  );
  color: #fff;
  box-shadow: 0 7px 18px rgba(234, 137, 116, 0.35);
}

.streamline-booking__btn--search:hover:not(:disabled) {
  background: var(--streamline-coral-hover);
  transform: scale(1.03);
}

.streamline-booking__btn--inquiry {
  background: rgba(255, 255, 255, 0.72);
  color: var(--streamline-primary);
  border: 1px solid rgba(42, 124, 136, 0.24);
}

.streamline-booking__btn--inquiry:hover:not(:disabled) {
  background: rgba(42, 124, 136, 0.06);
  border-color: rgba(42, 124, 136, 0.25);
}

/* Pricing summary (shown after Search Availability) */
.streamline-booking__pricing {
  margin-top: 1.5rem;
  padding: 1rem;
  border-top: 1px solid rgba(35, 70, 82, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.64);
}

.streamline-booking__pricing-title {
  margin: 0 0 0.65rem;
  font-size: 1.65rem;
  font-weight: 600;
  color: #1c71a0;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
}

.streamline-booking__pricing-list {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.streamline-booking__pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.18rem 0;
}

.streamline-booking__pricing-row + .streamline-booking__pricing-row {
  border-top: 1px solid rgba(33, 62, 74, 0.08);
}

.streamline-booking__pricing-row dt {
  margin: 0;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--streamline-text);
}

.streamline-booking__pricing-row dd {
  margin: 0;
  font-size: 0.95rem;
  color: var(--streamline-text);
}

.streamline-booking__pricing-row--total dt,
.streamline-booking__pricing-row--total dd {
  font-weight: 700;
  font-size: 1.18rem;
}

.streamline-booking__pricing-actions {
  margin-top: 0.85rem;
}

.streamline-booking__btn--book {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(
    180deg,
    var(--streamline-primary) 0%,
    var(--streamline-primary-dark) 100%
  );
  color: #fff;
  padding: 0.78rem 1.1rem;
  border-radius: 10px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  box-shadow: 0 8px 20px rgba(24, 82, 90, 0.28);
  transition:
    opacity 0.2s,
    background 0.2s,
    transform 0.25s ease;
}

.streamline-booking__btn--book:hover {
  opacity: 0.92;
  color: #fff;
  background: linear-gradient(
    180deg,
    var(--streamline-primary) 0%,
    var(--streamline-primary-dark) 100%
  );
  transform: translateY(-1px);
}

/* Calendar: backdrop overlay only; dropdown is under date inputs in form */
.streamline-booking__calendar-popup {
  position: fixed;
  inset: 0;
  z-index: 100000;
  pointer-events: none;
}

.streamline-booking__calendar-popup[hidden] {
  display: none;
}

.streamline-booking__calendar-popup:not([hidden]) {
  pointer-events: auto;
}

.streamline-booking__calendar-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

/* Calendar dropdown sits under Arrival/Departure inputs (in document flow) */
.streamline-booking__calendar-wrap {
  position: relative;
  z-index: 2;
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
}

.streamline-booking__calendar-wrap[hidden] {
  display: none !important;
}

/* When calendar is open, card stacks above backdrop so dropdown is visible */
.streamline-booking__card.streamline-booking__card--calendar-open {
  position: relative;
  z-index: 100001;
}

.streamline-booking__calendar-dropdown {
  position: relative;
  z-index: 3;
  background: #fff;
  border-radius: var(--streamline-radius);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 1rem;
  max-width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  max-height: 320px;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.streamline-booking__calendar-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  gap: 0.75rem;
  flex-wrap: nowrap;
}

.streamline-booking__calendar-range {
  flex: 1 1 auto;
  display: block;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.25;
  color: var(--streamline-text);
  min-width: 0;
}

.streamline-booking__calendar-header-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.streamline-booking__calendar-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  min-width: 34px;
  min-height: 34px;
  padding: 0;
  padding-bottom: 1px;
  border: 1px solid rgba(35, 70, 82, 0.16);
  background: #fff;
  color: var(--streamline-text);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 34px;
  text-align: center;
  cursor: pointer;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.streamline-booking__calendar-close:hover {
  background: rgba(42, 124, 136, 0.08);
  border-color: rgba(42, 124, 136, 0.4);
}

.streamline-booking__calendar-nav {
  display: flex;
  gap: 0.45rem;
}

.streamline-booking__calendar-prev,
.streamline-booking__calendar-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  min-width: 34px;
  min-height: 34px;
  padding: 0;
  padding-bottom: 2px;
  border: 1px solid rgba(35, 70, 82, 0.16);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--streamline-text);
  line-height: 34px;
  text-align: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.streamline-booking__calendar-prev:hover,
.streamline-booking__calendar-next:hover {
  background: rgba(42, 124, 136, 0.08);
  border-color: rgba(42, 124, 136, 0.4);
}

.streamline-booking__calendar-prev:focus-visible,
.streamline-booking__calendar-next:focus-visible,
.streamline-booking__calendar-close:focus-visible {
  outline: 2px solid var(--streamline-primary);
  outline-offset: 2px;
}

.streamline-booking__calendar-grid {
  min-width: 0;
  width: 100%;
}

.streamline-booking-calendar .streamline-calendar__head,
.streamline-booking-calendar .streamline-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.streamline-booking-calendar .streamline-calendar__head {
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--streamline-text);
  opacity: 0.8;
}

.streamline-booking-calendar .streamline-calendar__day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  min-height: 32px;
  cursor: default;
  font-size: 0.8125rem;
}

.streamline-booking-calendar .streamline-calendar__day--blocked {
  cursor: not-allowed;
  opacity: 0.7;
}

.streamline-booking-calendar .streamline-calendar__day[data-selectable="1"] {
  cursor: pointer;
}

.streamline-booking-calendar .streamline-calendar__day[data-selectable="1"]:hover {
  opacity: 0.9;
  filter: brightness(1.05);
}

.streamline-booking-calendar .streamline-calendar__day--selected-arrival,
.streamline-booking-calendar .streamline-calendar__day--selected-departure {
  outline: 2px solid var(--streamline-primary);
  outline-offset: 1px;
}

/* Request More Information popup */
.streamline-inquiry-popup {
  position: fixed;
  inset: 0;
  z-index: 100001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  pointer-events: none;
}

.streamline-inquiry-popup[hidden] {
  display: none;
}

.streamline-inquiry-popup:not([hidden]) {
  pointer-events: auto;
}

.streamline-inquiry-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.streamline-inquiry-popup__content {
  position: relative;
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.25),
    0 0 1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}

.streamline-inquiry-popup__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition:
    background 0.2s,
    color 0.2s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  display: flex;
  align-items: center;
  justify-content: center;
}

.streamline-inquiry-popup__close:hover,
.streamline-inquiry-popup__close:focus {
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.streamline-inquiry-popup .streamline-inquiry-popup__title {
  margin: 0;
  padding: 1.25rem 3.5rem 1.25rem 1.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  background: linear-gradient(
    135deg,
    var(--streamline-primary) 0%,
    var(--streamline-primary-dark) 100%
  );
  color: #fff !important; /* Override .streamline-detail h2 which uses blue - must be white on teal header */
}

/* Custom inquiry form (replaces iframe) */
.streamline-inquiry-popup__body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 1.25rem 1.5rem 1.5rem;
}

.streamline-inquiry-form-wrap {
  max-width: 100%;
}

.streamline-inquiry__error-header {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  color: #b91c1c;
  background: #fef2f2;
  border-radius: 8px;
  border: 1px solid #fecaca;
}

.streamline-inquiry__error-header[hidden] {
  display: none !important;
}

.streamline-inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.25rem;
  row-gap: 1rem;
}

.streamline-inquiry__row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.streamline-inquiry__row--half {
  grid-column: span 1;
}

.streamline-inquiry__row:not(.streamline-inquiry__row--half) {
  grid-column: 1 / -1;
}

.streamline-inquiry__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}

.streamline-inquiry__required {
  color: #dc2626;
}

.streamline-inquiry__input,
.streamline-inquiry__select,
.streamline-inquiry__textarea {
  min-height: 44px;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #fff;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.streamline-inquiry__input:focus,
.streamline-inquiry__select:focus,
.streamline-inquiry__textarea:focus {
  outline: none;
  border-color: var(--streamline-primary, #159895);
  box-shadow: 0 0 0 3px rgba(21, 152, 149, 0.15);
}

.streamline-inquiry__input[aria-invalid="true"],
.streamline-inquiry__select[aria-invalid="true"],
.streamline-inquiry__textarea[aria-invalid="true"] {
  border-color: #dc2626;
}

.streamline-inquiry__textarea {
  min-height: 88px;
  resize: vertical;
}

.streamline-inquiry__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23374151' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.25rem;
}

.streamline-inquiry__error {
  font-size: 0.8125rem;
  color: #b91c1c;
}

.streamline-inquiry__error:empty {
  display: none;
}

.streamline-inquiry__actions {
  grid-column: 1 / -1;
  margin-top: 0.5rem;
}

.streamline-inquiry__submit {
  min-height: 48px;
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--streamline-primary, #159895) 0%,
    var(--streamline-primary-dark, #1a5f7a) 100%
  );
  border: none;
  border-radius: 8px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition: opacity 0.2s;
}

.streamline-inquiry__submit:hover:not(:disabled) {
  opacity: 0.95;
}

.streamline-inquiry__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.streamline-inquiry-popup__thank-you {
  padding: 1.5rem 0;
  text-align: center;
}

.streamline-inquiry-popup__thank-you-message {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.5;
  color: #374151;
}

@media (max-width: 480px) {
  .streamline-inquiry-form {
    grid-template-columns: 1fr;
  }

  .streamline-inquiry__row--half {
    grid-column: 1 / -1;
  }

  .streamline-inquiry-popup__body {
    padding: 1rem 1.25rem 1.25rem;
  }

  .streamline-inquiry__input,
  .streamline-inquiry__select,
  .streamline-inquiry__textarea {
    min-height: 48px;
  }
}

/* Final CTA Section */
.streamline-detail__cta {
  position: relative;
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--streamline-sand);
  background-image: var(--streamline-cta-bg, none);
  background-size: cover;
  background-position: center;
  margin-top: 0;
}

.streamline-detail__cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.25));
  pointer-events: none;
}

.streamline-detail__cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  padding: 4rem 3rem;
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--streamline-radius);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.08),
    0 12px 48px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.streamline-detail__cta-inner:hover {
  transform: translateY(-4px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.1),
    0 20px 56px rgba(0, 0, 0, 0.08);
}

.streamline-detail__cta-title {
  margin: 0 0 1rem;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--streamline-primary);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
}

.streamline-detail__cta-subtext {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--streamline-text);
}

.streamline-detail__cta-btn {
  display: inline-block;
  padding: 1.125rem 2.5rem;
  background: var(--streamline-coral);
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: var(--streamline-radius-sm);
  transition:
    background 0.25s,
    transform 0.25s ease;
}

.streamline-detail__cta-btn:hover {
  background: var(--streamline-coral-hover);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

.streamline-detail__cta-btn:focus {
  outline: 2px solid var(--streamline-primary);
  outline-offset: 2px;
}

.streamline-detail__cta-inquiry {
  display: block;
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--streamline-primary);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: color 0.2s ease;
}

.streamline-detail__cta-inquiry:hover {
  color: var(--streamline-coral);
}

.streamline-detail__cta-inquiry:focus {
  outline: 2px solid var(--streamline-primary);
  outline-offset: 2px;
}

/* ========== Responsive breakpoints ========== */

/* Tablet: 1024px */
@media (max-width: 1024px) {
  .streamline-detail {
    --streamline-section-pad: 90px;
  }

  .streamline-detail__hero-cinematic {
    min-height: 75vh;
  }

  .streamline-detail__hero-inner {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 48px;
  }

  .streamline-detail__booking-float .streamline-booking__card {
    min-width: 320px;
    max-width: 380px;
  }

  .streamline-description--split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .streamline-description--split .streamline-description__side {
    position: static;
  }

  .streamline-amenities--blocks .streamline-amenities__blocks {
    grid-template-columns: 1fr;
  }

  .streamline-lifestyle__strip {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .streamline-lifestyle__strip--image-right .streamline-lifestyle__media,
  .streamline-lifestyle__strip--image-right .streamline-lifestyle__content {
    order: unset;
  }

  .streamline-lifestyle__media img {
    min-height: 280px;
  }

  .streamline-lifestyle__content {
    padding: 2rem 1.5rem;
  }

  .streamline-amenities-features__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 48px;
  }

  .streamline-amenities-features,
  .streamline-availability,
  .streamline-reviews {
    padding: 100px 24px;
  }

  .streamline-gallery-slider {
    height: 55vh;
    min-height: 320px;
  }

  .streamline-reviews__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 640px - reviews single column, amenities single column */
@media (max-width: 640px) {
  .streamline-reviews__list {
    grid-template-columns: 1fr;
  }
  .streamline-amenities-features__list {
    grid-template-columns: 1fr;
  }
}

/* Tablet: 900px - mobile booking trigger appears (scroll-to-form when inline) */
@media (max-width: 900px) {
  html.streamline-booking-sheet-open,
  body.streamline-booking-sheet-open {
    overflow: hidden;
    overscroll-behavior: none;
    touch-action: none;
  }

  .streamline-detail__booking-float {
    display: none;
  }

  /* Inline booking: visible, compact, in page flow */
  .streamline-detail__booking-inline {
    margin-top: -40px;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
  }

  .streamline-detail__booking-inline .streamline-booking__card {
    display: block;
    position: relative;
    inset: auto;
    max-height: none;
    min-height: 0;
    border-radius: 20px;
    box-shadow: 0 10px 32px rgba(16, 36, 48, 0.12), 0 1px 0 rgba(255, 255, 255, 0.4) inset;
    padding: 1rem 1.25rem 1rem;
    transition: box-shadow 0.25s ease;
  }

  .streamline-detail__booking-inline .streamline-booking__form {
    gap: 0.65rem;
  }

  .streamline-detail__booking-inline .streamline-booking__calendar-wrap[hidden] {
    display: block !important;
    max-height: 0;
    margin: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.2s ease, margin 0.25s ease;
  }

  .streamline-detail__booking-inline .streamline-booking__calendar-wrap:not([hidden]) {
    max-height: 400px;
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
    opacity: 1;
  }

  .streamline-detail__booking-inline .streamline-booking__card.streamline-booking__card--calendar-open {
    z-index: 10;
    box-shadow: 0 18px 38px rgba(16, 36, 48, 0.18), 0 1px 0 rgba(255, 255, 255, 0.45) inset;
  }

  .streamline-detail__booking-inline .streamline-booking__card::before {
    display: none;
  }

  .streamline-detail__booking-inline .streamline-booking__card-close {
    display: none;
  }

  /* Inline: show Book button only after user has scrolled past the form */
  .streamline-detail__booking-inline .streamline-booking__mobile-trigger {
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .streamline-detail__booking-inline .streamline-booking.streamline-booking--past-form .streamline-booking__mobile-trigger {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .streamline-booking__mobile-trigger {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1rem;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
    transition: opacity 0.2s ease, transform 0.3s ease;
  }

  .streamline-booking.streamline-booking--sheet-open .streamline-booking__mobile-trigger {
    opacity: 0;
    pointer-events: none;
  }

  .streamline-booking__book-btn {
    display: block;
    width: 100%;
    min-height: 48px;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: var(--streamline-radius-sm);
    background: var(--streamline-coral);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background 0.2s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .streamline-booking__book-btn:hover {
    background: var(--streamline-coral-hover);
  }

  .streamline-booking__card {
    display: none;
    position: fixed;
    inset: 0;
    top: auto;
    bottom: 0;
    max-height: 90vh;
    min-height: min(84vh, 720px);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    z-index: 10000;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.06);
    padding: 0.5rem 1.25rem calc(2rem + env(safe-area-inset-bottom, 0px)) 1.25rem;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .streamline-booking__card.is-open {
    display: block;
  }

  body.streamline-calendar-open .streamline-booking__mobile-trigger {
    z-index: 9998;
  }

  .streamline-booking__card::before {
    content: "";
    position: sticky;
    top: 0;
    display: block;
    width: 40px;
    height: 4px;
    margin: 0.75rem auto 0.5rem;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 2px;
  }

  .streamline-booking__card-header {
    position: sticky;
    top: 0;
    z-index: 2;
    background: rgba(255, 255, 255, 0.72);
    padding: 0.25rem 0 0.75rem;
    margin-bottom: 0;
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .streamline-booking__card-close {
    display: flex;
  }

  /* Reserve space so content is not hidden behind fixed booking bar */
  .streamline-detail {
    padding-bottom: 5rem;
  }

  /* Calendar under dropdown: full width, scrollable if needed in bottom sheet */
  .streamline-booking__calendar-wrap {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .streamline-booking__calendar-dropdown {
    width: 100%;
    max-height: min(70vh, 420px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0.875rem;
  }

  .streamline-booking__calendar-header {
    align-items: center;
  }

  .streamline-booking-calendar .streamline-calendar__day {
    min-height: 40px;
    font-size: 0.875rem;
  }
}

/* Mobile: 640px */
@media (max-width: 640px) {
  .streamline-detail__title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .streamline-amenities-features,
  .streamline-availability,
  .streamline-reviews {
    padding: 80px 24px;
  }

  .streamline-amenities-features__box,
  .streamline-availability__wrapper {
    padding: 2.5rem 1.5rem;
  }

  .streamline-amenities-features__list {
    grid-template-columns: 1fr;
    gap: 0.75rem 0;
  }

  .streamline-arrival__text {
    font-size: 1.125rem;
  }

  .streamline-gallery-slider {
    height: 50vh;
    min-height: 280px;
  }

  .streamline-gallery-slider__prev,
  .streamline-gallery-slider__next {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .streamline-gallery-slider__prev {
    left: 0.75rem;
  }

  .streamline-gallery-slider__next {
    right: 0.75rem;
  }

  .streamline-detail__cta-title {
    font-size: 1.5rem;
  }

  .streamline-detail__cta-inner {
    padding: 2rem 1.5rem;
  }

  .streamline-detail__stats {
    gap: 1rem 1.5rem;
  }

  .streamline-inquiry-popup {
    padding: 0;
    align-items: flex-end;
  }

  .streamline-inquiry-popup__content {
    max-height: calc(92vh - env(safe-area-inset-bottom, 0px));
    height: auto;
    border-radius: 16px 16px 0 0;
    padding-bottom: env(safe-area-inset-bottom, 0);
  }

  .streamline-inquiry-popup__close {
    top: 0.5rem;
    right: 0.5rem;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
  }

  .streamline-inquiry-popup__title {
    padding: 1rem 4rem 1rem 1rem;
    font-size: 1.125rem;
  }

  .streamline-inquiry-popup__iframe {
    min-height: 300px;
    height: 55vh;
  }

  .streamline-availability__calendars {
    grid-template-columns: 1fr;
  }

  /* Calendar in flow: compact on small mobile */
  .streamline-booking__calendar-dropdown {
    max-height: min(65vh, 380px);
    padding: 0.75rem;
  }

  .streamline-booking__calendar-range {
    font-size: 0.9375rem;
  }

  .streamline-booking-calendar .streamline-calendar__day {
    min-height: 36px;
    font-size: 0.8125rem;
  }
}

/* Mobile: 768px - amenities 2 columns, Plan Your Stay single month + single column */
@media (max-width: 768px) {
  .streamline-detail {
    --streamline-section-pad: 80px;
  }

  .streamline-amenities__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .streamline-availability__calendars {
    grid-template-columns: 1fr;
  }

  /* Single month on mobile: avoid duplicate "July 2026" — show only the range label, hide per-calendar title */
  .streamline-availability .streamline-calendar__title {
    display: none;
  }
}

/* Mobile: 600px - gallery single column */
@media (max-width: 600px) {
  .streamline-gallery__grid {
    grid-template-columns: 1fr;
  }

  .streamline-gallery__grid .streamline-gallery__item:first-child {
    grid-column: span 1;
    grid-row: span 1;
  }

  .streamline-gallery--staggered .streamline-gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
  }

  .streamline-gallery--staggered
    .streamline-gallery__grid
    .streamline-gallery__item:first-child {
    grid-row: span 1;
    aspect-ratio: 16/10;
  }

  .streamline-amenities__grid {
    grid-template-columns: 1fr;
  }

  .streamline-detail__hero-cinematic {
    min-height: 70vh;
    background-attachment: scroll;
  }

  .streamline-reviews__item {
    flex: 0 0 min(320px, 90vw);
  }
}

/* Mobile: 480px - compact spacing */
@media (max-width: 480px) {
  .streamline-detail {
    --streamline-gap: 1.25rem;
    --streamline-section-pad: 40px;
  }

  .streamline-detail__title {
    font-size: 1.375rem;
  }

  .streamline-detail__stat-icon .streamline-stat-icon,
  .streamline-detail__stat-icon svg {
    width: 32px;
    height: 20px;
  }

  .streamline-detail__cta {
    min-height: 340px;
  }

  .streamline-detail__cta-title {
    font-size: 1.25rem;
  }

  .streamline-detail__cta-btn {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
