.replay-rentals-archive-header {
    text-align: center;
    max-width: 780px;
    margin: 80px auto 40px;
}

.replay-rentals-kicker {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 13px;
    color: #B58A3A;
    margin-bottom: 8px;
}

.replay-rentals-title {
    font-family: "GT Ultra", serif;
    font-size: 44px;
    margin-bottom: 12px;
    color: #093F36;
}

.replay-rentals-intro {
    font-size: 17px;
    line-height: 1.6;
    color: #505f58;
}
.replay-bg {
    background: linear-gradient(to bottom, #faf8f4, #f5f1eb);
}

.replay-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.replay-spaces {
  max-width: 1160px;
  margin: 0 auto;
  padding: 40px 20px 80px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  color: #1b2e26;
}

/* Header and filters */

.replay-spaces-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.replay-spaces-heading h2 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: 0 0 4px;
}

.replay-spaces-heading p {
  margin: 0;
  font-size: 14px;
  color: #6a746d;
}

.replay-spaces-filters {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

@media (min-width: 900px) {
  .replay-spaces-filters {
    flex-direction: row;
    align-items: center;
  }
}

.replay-filter-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.replay-filter-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8a948e;
}

.replay-filter-btn,
.replay-filter-pill {
  border: 0;
  background: transparent;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  color: #4b5851;
  transition: background 0.15s ease, color 0.15s ease;
}

.replay-filter-btn.is-active,
.replay-filter-pill.is-active {
  background: #1f3c32;
  color: #fff;
}

.replay-filter-pill {
  border: 1px solid #d0d5d1;
  padding-inline: 14px;
}

/* Section headings */

.replay-section-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 24px 0 16px;
}

.replay-section-heading h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}

.replay-section-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #f4e5b2;
  color: #c9942b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

/* Grids */

.replay-featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

@media (min-width: 900px) {
  .replay-featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.replay-all-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 800px) {
  .replay-all-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .replay-all-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Cards */

.replay-space-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  overflow: hidden;
  border: 1px solid #e5e1d7;
  display: flex;
  flex-direction: column;
}

.replay-space-card-featured {
  max-height: 430px;
}

.replay-space-media {
  position: relative;
  overflow: hidden;
}

.replay-space-image-link img {
  width: 100%;
  display: block;
  height: 230px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.4s ease;
}

.replay-space-card:hover .replay-space-image-link img {
  transform: scale(1.06);
}

.replay-space-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 23, 19, 0.85), rgba(9,23,19,0.4), transparent);
}

.replay-space-image-overlay-soft {
  background: linear-gradient(to top, rgba(9,23,19,0.65), rgba(9,23,19,0.25), transparent);
}

/* Badges */

.replay-space-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 6px;
}

.replay-space-badges-top-right {
  top: 10px;
  right: 10px;
  left: auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
}

.badge-featured {
  background: #fbdc7d;
  color: #473311;
}

.badge-type {
  background: rgba(12, 38, 30, 0.92);
  color: #fff;
}

/* Text overlay on image */

.replay-space-text-overlay {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 18px;
  color: #fff;
}

.replay-space-text-overlay-small {
  bottom: 14px;
}

.replay-space-name {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 500;
}

.replay-space-tagline {
  margin: 0;
  font-size: 12px;
  opacity: 0.9;
}

/* Card body */

.replay-space-body {
  padding: 18px 20px 16px;
}

.replay-space-body-compact {
  padding: 14px 18px 14px;
}

/* Meta rows */

.replay-space-meta-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 10px;
}

.replay-space-meta-row-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.replay-meta-item {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8a948e;
}

.replay-meta-value {
  display: block;
  margin-top: 4px;
  font-size: 15px;
  font-weight: 500;
  color: #1b2e26;
}

/* Footers */

.replay-space-footer {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #ece5d8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.replay-space-footer-compact {
  margin-top: 8px;
}

.replay-space-building span {
  font-size: 12px;
  color: #6b756f;
}

/* Base button styles for all archive cards */
.replay-space-btn,
.replay-space-btn-compact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  font-size: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  background-color: #143a36;
  color: #f8f7f2;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

/* Slightly larger button on the big featured cards */
.replay-space-btn-compact {
  font-size: 14px;
  padding: 12px 28px;
}

/* Hover / focus: same behavior for both sizes */
.replay-space-btn:hover,
.replay-space-btn-compact:hover {
  background-color: #1b463b;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}

.replay-space-price-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.replay-space-price {
  font-size: 16px;
  font-weight: 500;
  color: #1b2e26;
}

.replay-space-link-small {
  font-size: 12px;
  color: #1f3c32;
  text-decoration: none;
  font-weight: 500;
}

/* Mobile tweaks */

@media (max-width: 600px) {
  .replay-spaces {
    padding-inline: 16px;
  }

  .replay-space-image-link img {
    height: 210px;
  }

  .replay-space-meta-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


.replay-pricing-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.replay-pricing-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.replay-pricing-icon {
    flex: 0 0 auto;
    margin-top: 0.15em;
}

.replay-pricing-icon .lu-circle-check-big {
    font-size: 1.4rem;
    /* match your brand color */
    color: #173f35;
}

.replay-pricing-text {
    flex: 1;
}

.replay-pricing-title {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.4;
    color: #14312a; /* tweak to match your heading color */
}

.replay-pricing-desc {
    margin-top: 0.25rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #444f4a; /* tweak to match your body copy color */
}

/* ===============================
   Included Services List Styles
   =============================== */

.replay-pricing-list {
    margin: 1.75rem 0 0;
    padding: 0;
    list-style: none;
}

.replay-pricing-item {
    display: flex;
    align-items: flex-start; /* icon aligns with top of title */
    gap: 0.9rem;
    margin-bottom: 1rem;
}

/* Icon container */
.replay-pricing-icon {
    flex: 0 0 auto;
    line-height: 1;
    margin-top: 0.15rem;   /* nudges icon to align visually with GT Ultra Fine */
}

.replay-pricing-icon .lu {
    font-size: 1.35rem;
    color: #133F36; /* Replay deep green */
}

/* Text wrapper */
.replay-pricing-text {
    display: block;
}

/* ===============================
   Title (GT Ultra Fine)
   =============================== */
.replay-pricing-title {
    display: block;
    font-family: "GT Ultra Fine", "GT Ultra", "GT Ultra Text", sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.35;
    color: #122F26; /* refined deep green-black */
    margin-bottom: 0.15rem;
}

/* ===============================
   Description / Body Copy
   =============================== */
.replay-pricing-desc {
    display: block;
    font-size: 1rem;
    line-height: 1.55;
    color: #56645F;
}

/* Force the included services list to left-align, even inside centered Elementor columns */
.replay-pricing-list,
.replay-pricing-item,
.replay-pricing-text,
.replay-pricing-title,
.replay-pricing-desc {
    text-align: left !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
}


.replay-virtual-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Matterport main embed */
.replay-matterport-embed {
    position: relative;
    padding-top: 56.25%; /* 16:9 */
    border-radius: 24px;
    overflow: hidden;
}

.replay-matterport-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Thumbnails row */
.replay-virtual-thumbs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.replay-virtual-thumb img {
    width: 100%;
    display: block;
    border-radius: 24px;
    object-fit: cover;
}

/* Gallery only mode */
.replay-virtual-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.replay-virtual-gallery-item img {
    width: 100%;
    display: block;
    border-radius: 24px;
    object-fit: cover;
}

/* Simple responsive tweak */
@media (max-width: 768px) {
    .replay-virtual-thumbs,
    .replay-virtual-gallery {
        grid-template-columns: 1fr;
    }
}

/* Virtual Experience / Media block */
.replay-media-block {
    max-width: 1100px;
    margin: 0 auto;
}

.replay-media-main {
    margin-bottom: 32px;
}

/* Big hero slot - iframe or image */
.replay-media-frame {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
}

/* Force a wide, level aspect ratio */
.replay-media-frame iframe,
.replay-media-frame img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border: none;
}

/* Thumbnails row */
.replay-media-thumbs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.replay-media-thumb {
    border-radius: 24px;
    overflow: hidden;
}

/* Make all thumbs the same height and cropped nicely */
.replay-media-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

/* Small screen tweak: stack thumbs nicely */
@media (max-width: 768px) {
    .replay-media-thumbs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
}

/* ===== Virtual Experience / Media Section ===== */

.replay-media {
    max-width: 1120px;
    margin: 0 auto;
}

/* Big top block – Matterport or featured image */
.replay-media-main {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: #f1f1f1;
    /* Nice cinematic shape */
    aspect-ratio: 16 / 9;
}

/* Make iframe/image always fill and crop nicely */
.replay-media-main iframe,
.replay-media-main img {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}

/* Row of 3–4 thumbs underneath */
.replay-media-grid {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

/* Auto-collapse nicely on tablet/phone */
@media (max-width: 1024px) {
    .replay-media-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .replay-media-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

/* Each thumb card */
.replay-media-thumb {
    border-radius: 24px;
    overflow: hidden;
    background: #f1f1f1;
    /* Slightly more vertical than wide */
    aspect-ratio: 4 / 5;
}

/* Force images to be level and cropped */
.replay-media-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Wrapper */
.replay-related-wrapper {
    text-align: center;
    margin-top: 80px;
    margin-bottom: 60px;
}

/* Title */
.replay-related-title {
    font-family: "GT Ultra Fine", serif;
    font-size: 58px;
    margin-bottom: 15px;
    color: #11332E;
}

/* Subtitle (dynamic text) */
.replay-related-subtitle {
    font-size: 22px;
    margin-bottom: 50px;
    color: #333;
    opacity: .85;
}

/* Grid */
.replay-related-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Card */
/* Related spaces on single venue page – match small archive cards */

.replay-related-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e5e1d7;
  padding: 18px 20px 16px;
  width: 360px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Title like card titles */
.replay-related-card-title {
  font-family: "GT Ultra Fine", serif;
  font-size: 22px;
  margin: 0 0 8px;
  color: #11332E;
}

/* Subtitle text */
.replay-related-card-subtitle {
  font-size: 14px;
  color: #6b756f;
  margin-bottom: 14px;
}

/* Button styled like archive buttons */
.replay-related-link {
  margin-top: auto;
  align-self: flex-start;
}

/* Use the same button styles as the archive cards */
.replay-related-link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  background-color: #143a36;
  color: #f8f7f2;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.replay-related-link a:hover {
  background-color: #1b463b;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}

/* Active filter buttons */
.replay-filter-btn.is-active,
.replay-filter-pill.is-active,
.replay-sort-btn.is-active {
  color: #f8f7f2;
}

/* Make sure background is dark enough for contrast */
.replay-filter-btn.is-active,
.replay-sort-btn.is-active {
  background-color: #16352c; /* or your brand green */
}

.replay-filter-pill.is-active {
  background-color: #16352c;
  border-color: #16352c;
}

/* Card overlay text */
.replay-space-text-overlay .replay-space-name,
.replay-space-text-overlay .replay-space-tagline {
  color: #f8f7f2;
}

/* Tag/badge inside card */
.replay-space-badges .badge,
.replay-space-badges-top-right .badge {
  color: #f8f7f2;
}

.replay-spaces .replay-filter-btn.is-active { color: #f8f7f2; }
.replay-spaces .replay-space-text-overlay .replay-space-name { color: #f8f7f2; }

.replay-amenity-icon {
    width: 48px !important;
    height: 48px !important;
    border-radius: 16px !important;
    background-color: #f3eee5 !important;

    /* These three lines fix the scaling/centering and override post CSS */
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 80% !important;  /* tweak 70–90% if you want more or less fill */
}

.replay-amenity-icon.amenity-icon-cafe {
    background-image: url('../icons/cafe.svg');
}

.replay-amenity-icon.amenity-icon-bar {
    background-image: url('../icons/social.svg');
}

.replay-amenity-icon.amenity-icon-gym {
    background-image: url('../icons/gym.svg');
}

.replay-amenity-icon.amenity-icon-padel {
    background-image: url('../icons/padelset.svg');
}

.replay-amenity-icon.amenity-icon-sauna {
    background-image: url('../icons/sauna.svg');
}

.replay-amenity-icon.amenity-icon-cold-plunge {
    background-image: url('../icons/coldplunge.svg');
}

.replay-amenity-icon.amenity-icon-spa {
    background-image: url('../icons/spa.svg');
}

.replay-amenity-icon.amenity-icon-steamroom {
    background-image: url('../icons/steamroom.svg');
}