/** Shopify CDN: Minification failed

Line 3704:2 Unexpected "="

**/
/* ============================================================
   Hospitality Sections (shared)
   Brand: Primary #1d2d5d | Secondary #7a86a8 / #f6ede1 | Accent #d4b291
   ============================================================ */


/* ============================================================
   1. HOSPITALITY EDIT
   Left banner + Right scrollable product grid
   ============================================================ */

.hospitality-edit {
  --he-primary: #1d2d5d;
  --he-secondary: #7a86a8;
  --he-cream: #f6ede1;
  --he-accent: #d4b291;
  --he-bg: #ffffff;
  --he-text: #1d2d5d;
  --he-heading-font: "Futura", "Futura PT", "Century Gothic", "Trebuchet MS", sans-serif;
  --he-body-font: "Futura", "Futura PT", "Century Gothic", "Trebuchet MS", sans-serif;
  --he-banner-height: 620px;
  --he-product-card-bg: #f6ede1;
  --he-swatch-size: 14px;
  --he-gap: 10px;

  background-color: var(--he-bg);
  width: 100%;
}

/* Fixed-height two-column layout */
.hospitality-edit__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: var(--he-banner-height);
  max-height: var(--he-banner-height);
  overflow: hidden;
}

/* ---------- LEFT BANNER ---------- */
.hospitality-edit__banner {
  position: relative;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  background-color: #ffffffff;
}

.hospitality-edit__banner-media {
  padding:15px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hospitality-edit__banner-img,
.hospitality-edit__banner-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hospitality-edit__banner-media--placeholder {
  background: #e8e4df;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay – always on top of image, below content */
.hospitality-edit__banner-overlay {
  display: block !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hospitality-edit__banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 48px;
  max-width: 460px;
  box-sizing: border-box;
}

.hospitality-edit__heading {
  font-family: var(--he-heading-font);
  font-weight: 500;
  font-size: clamp(26px, 2.8vw, 38px);
  letter-spacing: 0.06em;
  line-height: 1.15;
  margin: 0 0 16px;
  text-transform: uppercase;
  color: var(--he-primary);
}

.hospitality-edit__subheading {
  font-family: var(--he-body-font);
  font-weight: 300;
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.55;
  margin: 0 0 20px;
  color: var(--he-primary);
  max-width: 320px;
}

.hospitality-edit__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--he-body-font);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: var(--he-primary);
  transition: opacity 0.25s ease;
}

.hospitality-edit__cta:hover {
  opacity: 0.7;
}

.hospitality-edit__cta-arrow {
  transition: transform 0.25s ease;
}

.hospitality-edit__cta:hover .hospitality-edit__cta-arrow {
  transform: translateX(4px);
}

/* ---------- RIGHT PRODUCTS (scrollable) ---------- */
.hospitality-edit__products-wrapper {
  position: relative;
  height: 100%;
  min-height: 0;
  background-color: var(--he-bg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hospitality-edit__products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--he-gap);
  padding: var(--he-gap);
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  align-content: start;
  scrollbar-width: thin;
  scrollbar-color: var(--he-secondary) #f0f0f0;
  -webkit-overflow-scrolling: touch;
}

/* Custom thin scrollbar */
.hospitality-edit__products::-webkit-scrollbar {
  width: 5px;
}

.hospitality-edit__products::-webkit-scrollbar-track {
  background: #f0f0f0;
}

.hospitality-edit__products::-webkit-scrollbar-thumb {
  background-color: var(--he-secondary);
  border-radius: 3px;
}

/* ---------- Product Card ---------- */
.hospitality-edit__card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  overflow: hidden;
  border: 1px solid #eee;
}

.hospitality-edit__card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.hospitality-edit__card-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background-color: #f0f0f0;
  overflow: hidden;
}

.hospitality-edit__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.hospitality-edit__card:hover .hospitality-edit__card-img {
  transform: scale(1.03);
}

.hospitality-edit__card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8e4df;
}

.hospitality-edit__card-placeholder svg {
  width: 50%;
  height: 50%;
  opacity: 0.35;
}

.hospitality-edit__card-info {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-color: var(--he-product-card-bg);
}

.hospitality-edit__card-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 6px;
}

.hospitality-edit__card-title {
  font-family: var(--he-body-font);
  font-weight: 400;
  font-size: 13px;
  color: var(--he-primary);
  line-height: 1.3;
}

.hospitality-edit__card-price {
  font-family: var(--he-body-font);
  font-weight: 400;
  font-size: 12px;
  color: var(--he-primary);
  white-space: nowrap;
}

.hospitality-edit__card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
}

.hospitality-edit__card-variant {
  font-family: var(--he-body-font);
  font-weight: 300;
  font-size: 11px;
  color: var(--he-secondary);
}

.hospitality-edit__swatches {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.hospitality-edit__swatch {
  width: var(--he-swatch-size);
  height: var(--he-swatch-size);
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: inline-block;
  flex-shrink: 0;
  box-sizing: border-box;
}

/* Edit – Responsive */
@media screen and (max-width: 989px) {
  .hospitality-edit__container {
    grid-template-columns: 1fr;
    height: auto;
    max-height: none;
  }

  .hospitality-edit__banner {
    height: 420px;
    min-height: 420px;
  }

  .hospitality-edit__banner-content {
    padding: 32px 24px;
    max-width: 100%;
  }

  .hospitality-edit__products-wrapper {
    height: auto;
  }

  .hospitality-edit__products {
    height: auto;
    overflow-y: visible;
    max-height: none;
  }
}

@media screen and (max-width: 749px) {
  .hospitality-edit__banner {
    height: 380px;
    min-height: 380px;
  }

  .hospitality-edit__banner-content {
    padding: 24px 18px;
  }

  .hospitality-edit__heading {
    font-size: 24px;
  }

  .hospitality-edit__products {
    gap: 8px;
    padding: 8px;
  }

  .hospitality-edit__card-info {
    padding: 10px 12px 12px;
  }
}

@media screen and (max-width: 480px) {
  .hospitality-edit__products {
    grid-template-columns: 1fr;
  }

  .hospitality-edit__card-media {
    aspect-ratio: 4 / 3;
  }
}


/* ============================================================
   2. HOSPITALITY BANNER (Hero)
   ============================================================ */

.hospitality-banner {
  --hb-primary: #1d2d5d;
  --hb-secondary: #7a86a8;
  --hb-cream: #f6ede1;
  --hb-accent: #d4b291;
  --hb-text: #1d2d5d;
  --hb-heading-font: "Cormorant Garamond", "Garamond", "Times New Roman", serif;
  --hb-body-font: "Futura", "Futura PT", "Century Gothic", "Trebuchet MS", sans-serif;
  --hb-min-height: 620px;
  --hb-content-max-width: 900px;

  position: relative;
  width: 100%;
  min-height: var(--hb-min-height);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #e8e4df;
}

/* Background */
.hospitality-banner__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hospitality-banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hospitality-banner__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8e4df;
}

.hospitality-banner__placeholder-svg {
  width: 40%;
  height: 40%;
  opacity: 0.35;
}

/* Overlay – critical: must sit above image, below content */
.hospitality-banner__overlay {
  display:block!important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Content */
.hospitality-banner__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--hb-content-max-width);
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  box-sizing: border-box;
}

/* Decorative line + dot */
.hospitality-banner__deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 2px;
}

.hospitality-banner__deco-line {
  display: block;
  width: 36px;
  height: 1px;
  background-color: var(--hb-primary);
  opacity: 0.9;
}

.hospitality-banner__deco-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--hb-primary);
  flex-shrink: 0;
}

.hospitality-banner__eyebrow {
  font-family: var(--hb-body-font);
  font-weight: 400;
  font-size: clamp(11px, 1.1vw, 13px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0;
  color: var(--hb-primary);
  line-height: 1.4;
}

.hospitality-banner__heading {
  font-family: var(--hb-heading-font);
  font-weight: 500;
  font-size: clamp(42px, 8vw, 92px);
  letter-spacing: 0.06em;
  line-height: 1.05;
  margin: 0;
  text-transform: uppercase;
  color: var(--hb-primary);
}

.hospitality-banner__tagline {
  font-family: var(--hb-heading-font);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(15px, 1.55vw, 18px);
  line-height: 1.55;
  margin: 6px 0 0;
  color: var(--hb-primary);
  max-width: 520px;
  white-space: pre-line;
}

.hospitality-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.hospitality-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 13px 26px;
  font-family: var(--hb-body-font);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
  cursor: pointer;
  line-height: 1.2;
}

.hospitality-banner__btn--primary {
  background-color: var(--hb-primary);
  color: #ffffff;
  border-color: var(--hb-primary);
}

.hospitality-banner__btn--primary:hover {
  opacity: 0.88;
}

.hospitality-banner__btn--outline {
  background-color: transparent;
  color: var(--hb-primary);
  border-color: var(--hb-primary);
}

.hospitality-banner__btn--outline:hover {
  background-color: var(--hb-primary);
  color: #ffffff;
}

/* Banner – Responsive */
@media screen and (max-width: 989px) {
  .hospitality-banner {
    min-height: 520px;
  }

  .hospitality-banner__content {
    padding: 48px 28px;
  }

  .hospitality-banner__heading {
    font-size: clamp(36px, 9vw, 64px);
  }
}

@media screen and (max-width: 749px) {
  .hospitality-banner {
    min-height: 460px;
  }

  .hospitality-banner__content {
    padding: 36px 20px;
    gap: 12px;
  }

  .hospitality-banner__deco-line {
    width: 28px;
  }

  .hospitality-banner__eyebrow {
    font-size: 11px;
    letter-spacing: 0.16em;
  }

  .hospitality-banner__heading {
    font-size: clamp(30px, 10vw, 44px);
    letter-spacing: 0.04em;
  }

  .hospitality-banner__tagline {
    font-size: 14px;
  }

  .hospitality-banner__actions {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin-top: 18px;
    gap: 10px;
  }

  .hospitality-banner__btn {
    width: 100%;
    min-width: 0;
    padding: 12px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hospitality-edit__card-img,
  .hospitality-edit__cta,
  .hospitality-edit__cta-arrow,
  .hospitality-banner__btn {
    transition: none;
  }

  .hospitality-edit__card:hover .hospitality-edit__card-img {
    transform: none;
  }
}


/* ============================================================
   3. FABRIC STORY + REQUEST SWATCHES
   ============================================================ */

.fabric-story {
  --fs-primary: #1d2d5d;
  --fs-secondary: #7a86a8;
  --fs-cream: #f6ede1;
  --fs-accent: #d4b291;
  --fs-text: #1d2d5d;
  --fs-muted: #7a86a8;
  --fs-heading-font: "Cormorant Garamond", "Garamond", "Times New Roman", serif;
  --fs-body-font: "Futura", "Futura PT", "Century Gothic", "Trebuchet MS", sans-serif;
  --fs-cta-bg: #f6ede1;

  width: 100%;
  background-color: #ffffff;
}

/* ---------- Part 1: The Fabric Story ---------- */
.fabric-story__story {
  padding: 64px 40px 48px;
  background-color: #ffffff;
}

.fabric-story__story-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 56px;
  align-items: start;
}

.fabric-story__text {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fabric-story__heading {
  font-family: var(--fs-heading-font);
  font-weight: 600;
  font-size: clamp(26px, 2.6vw, 32px);
  color: var(--fs-primary);
  margin: 0;
  line-height: 1.2;
}

.fabric-story__subheading {
  font-family: var(--fs-body-font);
  font-weight: 400;
  font-size: 15px;
  color: var(--fs-muted);
  margin: 0 0 6px;
  line-height: 1.4;
}

.fabric-story__body {
  font-family: var(--fs-body-font);
  font-weight: 300;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--fs-text);
}

.fabric-story__body p {
  margin: 0 0 14px;
}

.fabric-story__body p:last-child {
  margin-bottom: 0;
}

.fabric-story__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-family: var(--fs-body-font);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--fs-primary);
  transition: opacity 0.25s ease;
}

.fabric-story__link:hover {
  opacity: 0.7;
}

.fabric-story__link-arrow {
  transition: transform 0.25s ease;
}

.fabric-story__link:hover .fabric-story__link-arrow {
  transform: translateX(4px);
}

/* Right column: image + pills */
.fabric-story__media-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fabric-story__media {
  width: 100%;
  aspect-ratio: 4 / 4;
  background-color: #e5e5e5;
  overflow: hidden;
}

.fabric-story__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fabric-story__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8e4df;
}

.fabric-story__img-placeholder svg {
  width: 40%;
  height: 40%;
  opacity: 0.3;
}

.fabric-story__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
}

.fabric-story__pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  font-family: var(--fs-body-font);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.02em;
  border-radius: 20px;
  white-space: nowrap;
  line-height: 1.2;
}

/* ---------- Part 2: See It. Feel It. Trust It ---------- */
.fabric-story__cta {
  background-color: var(--fs-cta-bg);
  padding: 56px 40px;
}

.fabric-story__cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px 64px;
  align-items: center;
}

.fabric-story__cta-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.fabric-story__cta-img {
  max-width: 100%;
  height: auto;
  display: block;
  max-height: 380px;
  object-fit: contain;
}

.fabric-story__cta-placeholder {
  width: 260px;
  height: 320px;
  background: #e8e4df;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fabric-story__cta-placeholder svg {
  width: 50%;
  height: 50%;
  opacity: 0.3;
}

.fabric-story__cta-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 420px;
}

.fabric-story__cta-heading {
  font-family: var(--fs-heading-font);
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 38px);
  color: var(--fs-primary);
  margin: 0;
  line-height: 1.2;
}

.fabric-story__cta-text {
  font-family: var(--fs-body-font);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  color: var(--fs-muted);
  margin: 0;
}

.fabric-story__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: 8px;
  padding: 13px 28px;
  font-family: var(--fs-body-font);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: none;
  border-radius: 0;
  transition: opacity 0.25s ease;
  cursor: pointer;
}

.fabric-story__cta-btn:hover {
  opacity: 0.88;
}

/* ---------- Responsive ---------- */
@media screen and (max-width: 989px) {
  .fabric-story__story {
    padding: 48px 28px 40px;
  }

  .fabric-story__story-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .fabric-story__media {
    aspect-ratio: 16 / 10;
    max-height: 360px;
  }

  .fabric-story__cta {
    padding: 48px 28px;
  }

  .fabric-story__cta-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .fabric-story__cta-content {
    max-width: 100%;
    align-items: center;
  }

  .fabric-story__cta-btn {
    align-self: center;
  }
}

@media screen and (max-width: 749px) {
  .fabric-story__story {
    padding: 40px 20px 32px;
  }

  .fabric-story__heading {
    font-size: 24px;
  }

  .fabric-story__body {
    font-size: 14px;
  }

  .fabric-story__pills {
    gap: 6px;
  }

  .fabric-story__pill {
    font-size: 11px;
    padding: 6px 12px;
  }

  .fabric-story__cta {
    padding: 40px 20px;
  }

  .fabric-story__cta-heading {
    font-size: 26px;
  }

  .fabric-story__cta-text {
    font-size: 14px;
  }

  .fabric-story__cta-img {
    max-height: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fabric-story__link,
  .fabric-story__link-arrow,
  .fabric-story__cta-btn {
    transition: none;
  }
}

/* ============================================================
   4. WHY HOSPITALITY FROM ASTARA
   5-card horizontal carousel
   ============================================================ */

.why-hospitality {
  --wh-primary: #1d2d5d;
  --wh-secondary: #7a86a8;
  --wh-cream: #f6ede1;
  --wh-text: #1d2d5d;
  --wh-muted: #5a6a8a;
  --wh-card-bg: #f7f6f4;
  --wh-heading-font: "Cormorant Garamond", "Garamond", "Times New Roman", serif;
  --wh-body-font: "Futura", "Futura PT", "Century Gothic", "Trebuchet MS", sans-serif;

  width: 100%;
  background-color: #ffffff;
  padding: 64px 0 56px;
  overflow: hidden;
}

.why-hospitality__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.why-hospitality__heading {
  font-family: var(--wh-heading-font);
  font-weight: 500;
  font-size: clamp(26px, 2.8vw, 34px);
  color: var(--wh-primary);
  margin: 0 0 36px;
  line-height: 1.25;
}

/* Carousel */
.why-hospitality__carousel-wrap {
  position: relative;
}

.why-hospitality__carousel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
  scrollbar-width: none; /* Firefox */
  cursor: grab;
}

.why-hospitality__carousel::-webkit-scrollbar {
  display: none; /* Chrome / Safari */
}

.why-hospitality__carousel.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

/* Card */
.why-hospitality__card {
  flex: 0 0 calc(33.333% - 12px);
  min-width: 260px;
  max-width: 340px;
  scroll-snap-align: start;
  background-color: var(--wh-card-bg);
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}

.why-hospitality__icon {
  color: var(--wh-primary);
  margin-bottom: 20px;
  line-height: 0;
}

.why-hospitality__icon svg {
  display: block;
  width: 48px;
  height: 48px;
}

.why-hospitality__card-title {
  font-family: var(--wh-body-font);
  font-weight: 500;
  font-size: 15px;
  color: var(--wh-primary);
  margin: 0 0 12px;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

/* Small diamond separator */
.why-hospitality__diamond {
  display: block;
  width: 6px;
  height: 6px;
  background-color: var(--wh-primary);
  transform: rotate(45deg);
  margin: 0 auto 14px;
  opacity: 0.85;
  flex-shrink: 0;
}

.why-hospitality__card-text {
  font-family: var(--wh-body-font);
  font-weight: 300;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--wh-muted);
  margin: 0;
  max-width: 260px;
}

/* Nav arrows */
.why-hospitality__nav {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 20px;
}

.why-hospitality__nav-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--wh-primary);
  color: var(--wh-primary);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  padding: 0;
}

.why-hospitality__nav-btn:hover {
  background-color: var(--wh-primary);
  color: #ffffff;
}

.why-hospitality__nav-btn svg {
  display: block;
}

/* Responsive */
@media screen and (max-width: 989px) {
  .why-hospitality {
    padding: 48px 0 40px;
  }

  .why-hospitality__inner {
    padding: 0 24px;
  }

  .why-hospitality__card {
    flex: 0 0 calc(50% - 9px);
    min-width: 240px;
  }
}

@media screen and (max-width: 749px) {
  .why-hospitality {
    padding: 40px 0 36px;
  }

  .why-hospitality__inner {
    padding: 0 16px;
  }

  .why-hospitality__heading {
    font-size: 24px;
    margin-bottom: 28px;
  }

  .why-hospitality__card {
    flex: 0 0 85%;
    min-width: 240px;
    padding: 28px 22px 26px;
  }

  .why-hospitality__card-title {
    font-size: 14px;
  }

  .why-hospitality__card-text {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .why-hospitality__carousel {
    scroll-behavior: auto;
  }

  .why-hospitality__nav-btn {
    transition: none;
  }
}


/* ============================================================
   5. INSPIRING PROPERTIES + OUR PARTNERS
   ============================================================ */

.inspiring {
  --ip-primary: #1d2d5d;
  --ip-gold: #c4a35a;
  --ip-cream: #f5f0e8;
  --ip-navy: #1a2744;
  --ip-text: #1d2d5d;
  --ip-card-bg: #f8f5f0;
  --ip-heading-font: "Cormorant Garamond", "Garamond", "Times New Roman", serif;
  --ip-body-font: "Futura", "Futura PT", "Century Gothic", "Trebuchet MS", sans-serif;

  width: 100%;
  overflow: hidden;
}

/* ---------- TOP BANNER ---------- */
.inspiring__top {
  position: relative;
  background-color: var(--ip-cream);
  padding: 56px 40px 48px;
  overflow: hidden;
}

.inspiring__top-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.45;
}

.inspiring__top-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.inspiring__top-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.inspiring__logo-block {
  flex-shrink: 0;
}

.inspiring__logo-img {
  max-height: 72px;
  width: auto;
  display: block;
}

.inspiring__logo-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.inspiring__logo-mark {
  font-family: var(--ip-heading-font);
  font-size: 52px;
  font-weight: 600;
  color: var(--ip-primary);
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.inspiring__logo-word {
  font-family: var(--ip-body-font);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--ip-primary);
  text-transform: uppercase;
}

/* Vertical divider with diamond */
.inspiring__divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.inspiring__divider-line {
  width: 1px;
  height: 28px;
  background-color: var(--ip-primary);
  opacity: 0.35;
}

.inspiring__divider-diamond {
  width: 7px;
  height: 7px;
  background-color: var(--ip-gold);
  transform: rotate(45deg);
}

.inspiring__top-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inspiring__heading {
  font-family: var(--ip-heading-font);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 42px);
  color: var(--ip-primary);
  margin: 0;
  line-height: 1.2;
}

.inspiring__heading em {
  font-style: italic;
  color: var(--ip-gold);
  font-weight: 500;
}

.inspiring__deco-diamond {
  display: block;
  width: 6px;
  height: 6px;
  background-color: var(--ip-gold);
  transform: rotate(45deg);
  margin: 2px 0;
}

.inspiring__deco-diamond--light {
  background-color: rgba(255, 255, 255, 0.55);
  margin: 0 auto 12px;
}

.inspiring__subtext {
  font-family: var(--ip-body-font);
  font-weight: 300;
  font-size: 14.5px;
  color: var(--ip-primary);
  margin: 0;
  line-height: 1.5;
  opacity: 0.85;
}

.inspiring__subtext em,
.inspiring__subtext i {
  font-style: italic;
  color: var(--ip-gold);
}

/* Decorative leaves */
.inspiring__leaves {
  position: absolute;
  pointer-events: none;
  color: var(--ip-gold);
  z-index: 0;
}

.inspiring__leaves--top {
  top: 10%;
  right: 2%;
  width: 180px;
  height: 140px;
  opacity: 0.7;
}

.inspiring__leaves--bottom-left {
  bottom: 5%;
  left: 0;
  width: 100px;
  height: 160px;
  color: rgba(255, 255, 255, 0.5);
}

.inspiring__leaves--bottom-right {
  bottom: 5%;
  right: 0;
  width: 100px;
  height: 160px;
  color: rgba(255, 255, 255, 0.5);
}

.inspiring__leaves svg {
  width: 100%;
  height: 100%;
}

/* ---------- BOTTOM: PARTNERS ---------- */
.inspiring__bottom {
  position: relative;
  background-color: var(--ip-navy);
  padding: 48px 40px 52px;
  overflow: hidden;
}

.inspiring__bottom-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.inspiring__partners-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 6px;
}

.inspiring__partners-line {
  width: 40px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
}

.inspiring__partners-text {
  font-family: var(--ip-body-font);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.inspiring__partners {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin: 28px 0 36px;
}

.inspiring__partner-card {
  background-color: var(--ip-card-bg);
  padding: 24px 12px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.inspiring__partner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.inspiring__partner-icon {
  color: var(--ip-primary);
  line-height: 0;
}

.inspiring__partner-icon svg {
  display: block;
  width: 40px;
  height: 40px;
}

.inspiring__partner-label {
  font-family: var(--ip-body-font);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ip-primary);
  text-align: center;
  line-height: 1.35;
}

.inspiring__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.inspiring__footer-text {
  font-family: var(--ip-body-font);
  font-weight: 300;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  line-height: 1.5;
  max-width: 520px;
}

.inspiring__footer-text strong,
.inspiring__footer-text b {
  font-weight: 500;
  color: #fff;
}

/* ---------- Responsive ---------- */
@media screen and (max-width: 989px) {
  .inspiring__top {
    padding: 44px 28px 40px;
  }

  .inspiring__top-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .inspiring__divider {
    flex-direction: row;
    gap: 8px;
  }

  .inspiring__divider-line {
    width: 28px;
    height: 1px;
  }

  .inspiring__top-content {
    align-items: center;
  }

  .inspiring__leaves--top {
    width: 120px;
    height: 100px;
    opacity: 0.5;
  }

  .inspiring__bottom {
    padding: 40px 24px 44px;
  }

  .inspiring__partners {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

@media screen and (max-width: 749px) {
  .inspiring__top {
    padding: 36px 20px 32px;
  }

  .inspiring__heading {
    font-size: 26px;
  }

  .inspiring__subtext {
    font-size: 13.5px;
  }

  .inspiring__logo-mark {
    font-size: 42px;
  }

  .inspiring__bottom {
    padding: 36px 16px 40px;
  }

  .inspiring__partners {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .inspiring__partner-card {
    padding: 20px 10px 16px;
  }

  .inspiring__partner-label {
    font-size: 10px;
  }

  .inspiring__leaves--bottom-left,
  .inspiring__leaves--bottom-right {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .inspiring__partner-card {
    transition: none;
  }
}


/* ============================================================
   6. HOSPITALITY RANGE
   Tabbed category browser
   ============================================================ */

.h-range {
  --hr-primary: #1d2d5d;
  --hr-secondary: #7a86a8;
  --hr-cream: #e8eef8;
  --hr-text: #1d2d5d;
  --hr-tab-bg: #1d2d5d;
  --hr-tab-text: #ffffff;
  --hr-item-bg: #f4f5f7;
  --hr-heading-font: "Cormorant Garamond", "Garamond", "Times New Roman", serif;
  --hr-body-font: "Futura", "Futura PT", "Century Gothic", "Trebuchet MS", sans-serif;

  width: 100%;
  background-color: #ffffff;
  padding: 56px 0 0;
}

.h-range__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 56px;
}

/* Header with soft blob */
.h-range__header {
  position: relative;
  display: inline-block;
  margin-bottom: 28px;
}

.h-range__blob {
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--hr-cream);
  z-index: 0;
}

.h-range__heading {
  position: relative;
  z-index: 1;
  font-family: var(--hr-heading-font);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 36px);
  color: var(--hr-primary);
  margin: 0;
  line-height: 1.2;
  padding-left: 8px;
}

/* Tabs */
.h-range__tabs {
  display: flex;
  flex-wrap: wrap;
  background-color: var(--hr-tab-bg);
  margin: 0 -40px 32px;
  padding: 0 40px;
}

.h-range__tab {
  flex: 1 1 auto;
  min-width: 120px;
  padding: 16px 20px;
  font-family: var(--hr-body-font);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--hr-tab-text);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: opacity 0.2s ease, border-color 0.2s ease;
  opacity: 0.75;
}

.h-range__tab:hover {
  opacity: 1;
}

.h-range__tab.is-active {
  opacity: 1;
  border-bottom-color: #ffffff;
  font-weight: 500;
}

/* Panels */
.h-range__panel {
  display: none;
}

.h-range__panel.is-active {
  display: block;
}

.h-range__panel-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 28px;
  align-items: stretch;
}

/* Left list */
.h-range__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.h-range__list-item {
  margin: 0;
}

.h-range__list-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background-color: var(--hr-item-bg);
  border-radius: 10px;
  text-decoration: none;
  color: var(--hr-primary);
  font-family: var(--hr-body-font);
  font-weight: 400;
  font-size: 14.5px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.h-range__list-link:hover {
  background-color: #e8eaef;
  transform: translateX(2px);
}

.h-range__list-label {
  flex: 1;
}

.h-range__list-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--hr-primary);
  color: var(--hr-primary);
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.h-range__list-link:hover .h-range__list-arrow {
  opacity: 1;
  background-color: var(--hr-primary);
  color: #ffffff;
}

.h-range__list-empty {
  display: block;
  padding: 20px;
  color: var(--hr-secondary);
  font-size: 14px;
  font-family: var(--hr-body-font);
}

/* Right media */
.h-range__media {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background-color: #e8e4df;
  min-height: 360px;
}

.h-range__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  position: absolute;
  inset: 0;
  transition: opacity 0.3s ease;
}

.h-range__img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8e4df;
}

.h-range__img-placeholder svg {
  width: 40%;
  height: 40%;
  opacity: 0.3;
}

/* Responsive */
@media screen and (max-width: 989px) {
  .h-range__inner {
    padding: 0 24px 48px;
  }

  .h-range__tabs {
    margin: 0 -24px 28px;
    padding: 0 24px;
  }

  .h-range__panel-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .h-range__media {
    min-height: 300px;
    order: -1;
  }
}

@media screen and (max-width: 749px) {
  .h-range {
    padding: 40px 0 0;
  }

  .h-range__inner {
    padding: 0 16px 40px;
  }

  .h-range__tabs {
    margin: 0 -16px 24px;
    padding: 0;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .h-range__tabs::-webkit-scrollbar {
    display: none;
  }

  .h-range__tab {
    flex: 0 0 auto;
    min-width: auto;
    padding: 14px 18px;
    font-size: 13px;
    white-space: nowrap;
  }

  .h-range__heading {
    font-size: 26px;
  }

  .h-range__blob {
    width: 44px;
    height: 44px;
    left: -12px;
  }

  .h-range__list-link {
    padding: 13px 16px;
    font-size: 14px;
  }

  .h-range__media {
    min-height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .h-range__list-link,
  .h-range__list-arrow,
  .h-range__tab,
  .h-range__img {
    transition: none;
  }
}


/* ============================================================
   7. STATS + CONTACT FORM
   ============================================================ */

.stats-contact {
  --sc-primary: #1d2d5d;
  --sc-gold: #c4a35a;
  --sc-navy: #1d2d5d;
  --sc-cream: #f5f0e8;
  --sc-text: #1d2d5d;
  --sc-muted: #5a6a8a;
  --sc-heading-font: "Cormorant Garamond", "Garamond", "Times New Roman", serif;
  --sc-body-font: "Futura", "Futura PT", "Century Gothic", "Trebuchet MS", sans-serif;

  width: 100%;
}

/* ---------- Stats bar ---------- */
.stats-contact__stats {
  background-color: var(--sc-navy);
  padding: 40px 40px;
}

.stats-contact__stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.stats-contact__stat {
  text-align: center;
  padding: 8px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.stats-contact__stat:last-child {
  border-right: none;
}

.stats-contact__stat-number {
  font-family: var(--sc-heading-font);
  font-weight: 500;
  font-size: clamp(36px, 4vw, 48px);
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 6px;
}

.stats-contact__stat-label {
  font-family: var(--sc-body-font);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
}

.stats-contact__stat-line {
  display: block;
  width: 28px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.45);
  margin: 0 auto 12px;
}

.stats-contact__stat-text {
  font-family: var(--sc-body-font);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Form section ---------- */
.stats-contact__form-wrap {
  position: relative;
  background-color: var(--sc-cream);
  padding: 64px 40px 72px;
  overflow: hidden;
}

.stats-contact__form-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.5;
}

.stats-contact__form-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats-contact__leaves {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  color: var(--sc-gold);
}

.stats-contact__leaves--left {
  left: 0;
  top: 20%;
  width: 120px;
  height: 200px;
  opacity: 0.55;
}

.stats-contact__leaves--right {
  right: 0;
  top: 15%;
  width: 120px;
  height: 200px;
  opacity: 0.55;
}

.stats-contact__leaves svg {
  width: 100%;
  height: 100%;
}

.stats-contact__form-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.stats-contact__heading {
  font-family: var(--sc-heading-font);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 42px);
  color: var(--sc-primary);
  margin: 0 0 14px;
  line-height: 1.25;
}

.stats-contact__heading em {
  font-style: italic;
  color: var(--sc-gold);
}

.stats-contact__subtext {
  font-family: var(--sc-body-font);
  font-weight: 300;
  font-size: 15px;
  color: var(--sc-muted);
  margin: 0 0 20px;
  line-height: 1.5;
}

.stats-contact__deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}

.stats-contact__deco-line {
  width: 36px;
  height: 1px;
  background-color: var(--sc-gold);
  opacity: 0.7;
}

.stats-contact__deco-diamond {
  width: 7px;
  height: 7px;
  background-color: var(--sc-gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* Form */
.stats-contact__form {
  text-align: left;
}

.stats-contact__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}

.stats-contact__field--full {
  grid-column: 1 / -1;
}

.stats-contact__label {
  display: block;
  font-family: var(--sc-body-font);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sc-primary);
  margin-bottom: 8px;
}

.stats-contact__input,
.stats-contact__select,
.stats-contact__textarea {
  width: 100%;
  font-family: var(--sc-body-font);
  font-weight: 300;
  font-size: 14.5px;
  color: var(--sc-text);
  background-color: #ffffff;
  border: 1px solid rgba(29, 45, 93, 0.12);
  border-radius: 6px;
  padding: 13px 16px;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.stats-contact__input::placeholder,
.stats-contact__textarea::placeholder {
  color: #a0a8b8;
}

.stats-contact__input:focus,
.stats-contact__select:focus,
.stats-contact__textarea:focus {
  border-color: var(--sc-primary);
  box-shadow: 0 0 0 3px rgba(29, 45, 93, 0.08);
}

.stats-contact__select-wrap {
  position: relative;
}

.stats-contact__select-wrap::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--sc-primary);
  pointer-events: none;
  opacity: 0.6;
}

.stats-contact__select {
  cursor: pointer;
  padding-right: 40px;
}

.stats-contact__textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.5;
}

.stats-contact__submit-wrap {
  margin-top: 28px;
  text-align: center;
}

.stats-contact__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-family: var(--sc-body-font);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  background-color: var(--sc-primary);
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: opacity 0.25s ease;
}

.stats-contact__submit:hover {
  opacity: 0.88;
}

.stats-contact__success {
  background-color: rgba(29, 45, 93, 0.08);
  color: var(--sc-primary);
  padding: 14px 18px;
  margin-bottom: 24px;
  font-family: var(--sc-body-font);
  font-size: 14px;
  text-align: center;
  border-radius: 6px;
}

.stats-contact__errors {
  background-color: #fdf0f0;
  color: #8b2e2e;
  padding: 14px 18px;
  margin-bottom: 24px;
  font-family: var(--sc-body-font);
  font-size: 14px;
  border-radius: 6px;
}

/* Responsive */
@media screen and (max-width: 989px) {
  .stats-contact__stats {
    padding: 32px 24px;
  }

  .stats-contact__stat {
    padding: 8px 16px;
  }

  .stats-contact__form-wrap {
    padding: 48px 28px 56px;
  }

  .stats-contact__leaves--left,
  .stats-contact__leaves--right {
    width: 80px;
    opacity: 0.35;
  }
}

@media screen and (max-width: 749px) {
  .stats-contact__stats-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .stats-contact__stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 24px;
  }

  .stats-contact__stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .stats-contact__form-wrap {
    padding: 40px 20px 48px;
  }

  .stats-contact__fields {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stats-contact__heading {
    font-size: 26px;
  }

  .stats-contact__leaves--left,
  .stats-contact__leaves--right {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .stats-contact__input,
  .stats-contact__select,
  .stats-contact__textarea,
  .stats-contact__submit {
    transition: none;
  }
}


/* ============================================================
   8. OUR HOSPITALITY PARTNERS
   Logos + category circles + product cards
   ============================================================ */

.h-partners {
  --hp-primary: #1d2d5d;
  --hp-secondary: #7a86a8;
  --hp-cream: #f6ede1;
  --hp-text: #1d2d5d;
  --hp-muted: #5a6a8a;
  --hp-card-bg: #f6ede1;
  --hp-heading-font: "Cormorant Garamond", "Garamond", "Times New Roman", serif;
  --hp-body-font: "Futura", "Futura PT", "Century Gothic", "Trebuchet MS", sans-serif;

  width: 100%;
  background-color: #ffffff;
  padding: 56px 0 64px;
}

.h-partners__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Heading with lines */
.h-partners__heading-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
}

.h-partners__heading-line {
  flex: 1;
  max-width: 180px;
  height: 1px;
  background-color: var(--hp-primary);
  opacity: 0.35;
}

.h-partners__heading {
  font-family: var(--hp-heading-font);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--hp-primary);
  margin: 0;
  white-space: nowrap;
  line-height: 1.2;
}

/* Logo strip */
.h-partners__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 36px 48px;
  margin-bottom: 56px;
  padding: 8px 0;
}

.h-partners__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 180px;
  max-height: 64px;
}

.h-partners__logo-link {
  display: block;
  line-height: 0;
  transition: opacity 0.25s ease;
}

.h-partners__logo-link:hover {
  opacity: 0.7;
}

.h-partners__logo-img {
  max-width: 100%;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: none;
}

.h-partners__logo-placeholder {
  font-family: var(--hp-body-font);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--hp-primary);
  text-transform: uppercase;
  opacity: 0.5;
}

/* Bottom: categories + products */
.h-partners__bottom {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Category circles – 3x2 grid */
.h-partners__categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 20px;
  justify-items: center;
}

.h-partners__cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease;
}

.h-partners__cat:hover {
  transform: translateY(-3px);
}

.h-partners__cat-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(29, 45, 93, 0.08);
  background: #e8f2fa;
  flex-shrink: 0;
}

.h-partners__cat-img,
.h-partners__cat-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.h-partners__cat-label {
  font-family: var(--hp-body-font);
  font-weight: 400;
  font-size: 13px;
  color: var(--hp-primary);
  text-align: center;
  line-height: 1.3;
}

/* Product cards */
.h-partners__products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.h-partners__product {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #eee;
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}

.h-partners__product:hover {
  box-shadow: 0 6px 20px rgba(29, 45, 93, 0.08);
}

.h-partners__product-media {
  aspect-ratio: 1 / 1;
  background: #e5e5e5;
  overflow: hidden;
}

.h-partners__product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.h-partners__product:hover .h-partners__product-img {
  transform: scale(1.03);
}

.h-partners__product-placeholder {
  width: 100%;
  height: 100%;
  background: #e8e4df;
  min-height: 140px;
}

.h-partners__product-info {
  padding: 12px 14px 14px;
  background-color: var(--hp-card-bg);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.h-partners__product-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 6px;
}

.h-partners__product-title {
  font-family: var(--hp-body-font);
  font-weight: 400;
  font-size: 13px;
  color: var(--hp-primary);
}

.h-partners__product-price {
  font-family: var(--hp-body-font);
  font-weight: 400;
  font-size: 12px;
  color: var(--hp-primary);
  white-space: nowrap;
}

.h-partners__product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
}

.h-partners__product-variant {
  font-family: var(--hp-body-font);
  font-weight: 300;
  font-size: 11px;
  color: var(--hp-muted);
}

.h-partners__swatches {
  display: flex;
  gap: 4px;
  align-items: center;
}

.h-partners__swatch {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: inline-block;
  flex-shrink: 0;
}

/* Responsive */
@media screen and (max-width: 989px) {
  .h-partners__inner {
    padding: 0 24px;
  }

  .h-partners__bottom {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .h-partners__categories {
    max-width: 420px;
    margin: 0 auto;
  }

  .h-partners__products {
    max-width: 480px;
    margin: 0 auto;
  }

  .h-partners__logos {
    gap: 28px 36px;
    margin-bottom: 44px;
  }
}

@media screen and (max-width: 749px) {
  .h-partners {
    padding: 44px 0 48px;
  }

  .h-partners__inner {
    padding: 0 16px;
  }

  .h-partners__heading-wrap {
    gap: 14px;
    margin-bottom: 32px;
  }

  .h-partners__heading-line {
    max-width: 60px;
  }

  .h-partners__heading {
    font-size: 20px;
    white-space: normal;
    text-align: center;
  }

  .h-partners__logos {
    gap: 24px 28px;
  }

  .h-partners__logo {
    max-width: 130px;
  }

  .h-partners__cat-icon {
    width: 80px;
    height: 80px;
  }

  .h-partners__cat-label {
    font-size: 12px;
  }

  .h-partners__categories {
    gap: 20px 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .h-partners__cat,
  .h-partners__product,
  .h-partners__product-img,
  .h-partners__logo-link {
    transition: none;
  }
}



/* ============================================================
   9. HOSPITALITY PRODUCT HERO (PDP)
   Image + floating bundle card + features strip
   ============================================================ */

.hp-pdp {
  --hpdp-primary: #1d2d5d;
  --hpdp-navy: #1a2744;
  --hpdp-cream: #f8f6f3;
  --hpdp-text: #1d2d5d;
  --hpdp-muted: #6b7280;
  --hpdp-card-bg: #f8f6f3;
  --hpdp-heading-font: "Cormorant Garamond", "Garamond", "Times New Roman", serif;
  --hpdp-body-font: "Futura", "Futura PT", "Century Gothic", "Trebuchet MS", sans-serif;

  width: 100%;
  background: #fff;
}

/* ---------- Hero ---------- */
.hp-pdp__hero {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: stretch;
}

.hp-pdp__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hp-pdp__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hp-pdp__img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 520px;
  background: #e8e4df;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hp-pdp__img-placeholder svg {
  width: 30%;
  opacity: 0.3;
}

.hp-pdp__card-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 40px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  box-sizing: border-box;
}

.hp-pdp__card {
  width: 100%;
  max-width: 360px;
  background: var(--hpdp-card-bg);
  border-radius: 16px;
  padding: 28px 28px 24px;
  box-shadow: 0 12px 40px rgba(29, 45, 93, 0.12);
}

.hp-pdp__card-eyebrow {
  font-family: var(--hpdp-body-font);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hpdp-muted);
  margin: 0 0 8px;
}

.hp-pdp__card-heading {
  font-family: var(--hpdp-heading-font);
  font-weight: 600;
  font-size: clamp(24px, 2.5vw, 30px);
  color: var(--hpdp-primary);
  margin: 0 0 18px;
  line-height: 1.2;
}

.hp-pdp__includes-label {
  font-family: var(--hpdp-body-font);
  font-weight: 500;
  font-size: 13px;
  color: var(--hpdp-primary);
  margin: 0 0 10px;
}

.hp-pdp__includes {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.hp-pdp__include {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--hpdp-body-font);
  font-weight: 300;
  font-size: 13.5px;
  color: var(--hpdp-text);
  line-height: 1.3;
}

.hp-pdp__check {
  color: var(--hpdp-primary);
  flex-shrink: 0;
  line-height: 0;
  opacity: 0.85;
}

.hp-pdp__check svg {
  display: block;
}

.hp-pdp__pricing {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  padding-top: 4px;
  border-top: 1px solid rgba(29, 45, 93, 0.08);
  padding-top: 16px;
}

.hp-pdp__price-compare {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hp-pdp__compare {
  font-family: var(--hpdp-body-font);
  font-weight: 300;
  font-size: 14px;
  color: var(--hpdp-muted);
  text-decoration: line-through;
}

.hp-pdp__savings {
  font-family: var(--hpdp-body-font);
  font-weight: 300;
  font-size: 12px;
  color: var(--hpdp-muted);
}

.hp-pdp__price-sale {
  font-family: var(--hpdp-heading-font);
  font-weight: 600;
  font-size: 26px;
  color: var(--hpdp-primary);
  line-height: 1;
}

.hp-pdp__form {
  margin: 0;
}

.hp-pdp__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  font-family: var(--hpdp-body-font);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #ffffff;
  background-color: var(--hpdp-navy);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.25s ease, transform 0.2s ease;
}

.hp-pdp__btn:hover {
  opacity: 0.9;
}

.hp-pdp__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.hp-pdp__btn svg {
  flex-shrink: 0;
}

/* ---------- Features strip ---------- */
.hp-pdp__features {
  position: relative;
  background-color: var(--hpdp-cream);
  padding: 48px 40px 52px;
  overflow: hidden;
}

.hp-pdp__leaves {
  position: absolute;
  left: 0;
  bottom: 10%;
  width: 100px;
  height: 160px;
  color: #c4a35a;
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}

.hp-pdp__leaves svg {
  width: 100%;
  height: 100%;
}

.hp-pdp__features-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px 48px;
  align-items: center;
}

.hp-pdp__features-eyebrow {
  font-family: var(--hpdp-body-font);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hpdp-muted);
  margin: 0 0 10px;
}

.hp-pdp__features-heading {
  font-family: var(--hpdp-heading-font);
  font-weight: 600;
  font-size: clamp(24px, 2.8vw, 32px);
  color: var(--hpdp-primary);
  margin: 0 0 12px;
  line-height: 1.25;
  white-space: pre-line;
}

.hp-pdp__features-desc {
  font-family: var(--hpdp-body-font);
  font-weight: 300;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--hpdp-muted);
  margin: 0;
  max-width: 340px;
}

.hp-pdp__feature-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 16px;
}

.hp-pdp__feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.hp-pdp__feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(29, 45, 93, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hpdp-primary);
  flex-shrink: 0;
}

.hp-pdp__feature-icon svg {
  display: block;
}

.hp-pdp__feature-title {
  font-family: var(--hpdp-body-font);
  font-weight: 500;
  font-size: 13.5px;
  color: var(--hpdp-primary);
  margin: 0 0 4px;
  line-height: 1.3;
}

.hp-pdp__feature-text {
  font-family: var(--hpdp-body-font);
  font-weight: 300;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--hpdp-muted);
  margin: 0;
}

/* Responsive */
@media screen and (max-width: 989px) {
  .hp-pdp__hero {
    min-height: 0;
    flex-direction: column;
  }

  .hp-pdp__media {
    position: relative;
    height: 360px;
  }

  .hp-pdp__card-wrap {
    justify-content: center;
    padding: 0 24px 32px;
    margin-top: -48px;
  }

  .hp-pdp__card {
    max-width: 400px;
  }

  .hp-pdp__features {
    padding: 40px 24px 44px;
  }

  .hp-pdp__features-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hp-pdp__feature-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 20px;
  }

  .hp-pdp__features-desc {
    max-width: 100%;
  }
}

@media screen and (max-width: 749px) {
  .hp-pdp__media {
    height: 280px;
  }

  .hp-pdp__card-wrap {
    padding: 0 16px 28px;
    margin-top: -40px;
  }

  .hp-pdp__card {
    padding: 22px 20px 20px;
    border-radius: 12px;
  }

  .hp-pdp__card-heading {
    font-size: 22px;
  }

  .hp-pdp__price-sale {
    font-size: 22px;
  }

  .hp-pdp__features {
    padding: 36px 16px 40px;
  }

  .hp-pdp__feature-list {
    grid-template-columns: 1fr 1fr;
    gap: 20px 14px;
  }

  .hp-pdp__leaves {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hp-pdp__btn {
    transition: none;
  }
}

/* ============================================================
   10. HOSPITALITY BUNDLE (Complete The Look)
   Dynamic product set builder
   ============================================================ */

.h-bundle {
  --hb-primary: #1d2d5d;
  --hb-navy: #1a2744;
  --hb-cream: #f8f6f3;
  --hb-text: #1d2d5d;
  --hb-muted: #6b7280;
  --hb-card-bg: #f8f6f3;
  --hb-heading-font: "Cormorant Garamond", "Garamond", "Times New Roman", serif;
  --hb-body-font: "Futura", "Futura PT", "Century Gothic", "Trebuchet MS", sans-serif;

  width: 100%;
  background: #fff;
}

.h-bundle__layout {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  min-height: 720px;
  align-items: stretch;
}

/* ----- LEFT: image full area, content overlaid on top ----- */
.h-bundle__left {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  min-height: 720px;
}

.h-bundle__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #e8e4df;
  overflow: hidden;
}

.h-bundle__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.h-bundle__media-overlay {
  display:block!important;
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.78) 28%,
    rgba(255, 255, 255, 0.25) 55%,
    rgba(255, 255, 255, 0) 72%
  );
  pointer-events: none;
  z-index: 1;
}

.h-bundle__img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8e4df;
}

.h-bundle__img-placeholder svg {
  width: 40%;
  opacity: 0.3;
}

/* Content sits on top of image */
.h-bundle__left-content {
  position: relative;
  z-index: 2;
  padding: 48px 48px 32px;
  max-width: 560px;
}

.h-bundle__eyebrow {
  font-family: var(--hb-body-font);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hb-muted);
  margin: 0 0 12px;
}

.h-bundle__heading {
  font-family: var(--hb-heading-font);
  font-weight: 600;
  font-size: clamp(32px, 3.6vw, 44px);
  color: var(--hb-primary);
  margin: 0 0 14px;
  line-height: 1.12;
}

.h-bundle__subtext {
  font-family: var(--hb-body-font);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.55;
  color: var(--hb-muted);
  margin: 0 0 32px;
  max-width: 400px;
}

.h-bundle__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
}

.h-bundle__badge {
  display: flex;
  gap: 12px;
  max-width: 200px;
}

.h-bundle__badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(29, 45, 93, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hb-primary);
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.7);
}

.h-bundle__badge-title {
  font-family: var(--hb-body-font);
  font-weight: 500;
  font-size: 13.5px;
  color: var(--hb-primary);
  margin-bottom: 3px;
}

.h-bundle__badge-text {
  font-family: var(--hb-body-font);
  font-weight: 300;
  font-size: 12px;
  line-height: 1.45;
  color: var(--hb-muted);
}

.h-bundle__features {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 28px 40px 16px;
  background: var(--hb-cream);
  margin-top: auto;
}

.h-bundle__feature {
  text-align: left;
}

.h-bundle__feature-icon {
  color: var(--hb-primary);
  margin-bottom: 8px;
  opacity: 0.85;
}

.h-bundle__feature-title {
  font-family: var(--hb-body-font);
  font-weight: 500;
  font-size: 13px;
  color: var(--hb-primary);
  margin-bottom: 4px;
}

.h-bundle__feature-text {
  font-family: var(--hb-body-font);
  font-weight: 300;
  font-size: 12px;
  line-height: 1.45;
  color: var(--hb-muted);
}

.h-bundle__trust {
  position: relative;
  z-index: 2;
  font-family: var(--hb-body-font);
  font-weight: 300;
  font-size: 13px;
  color: var(--hb-muted);
  text-align: center;
  margin: 0;
  padding: 12px 40px 28px;
  background: var(--hb-cream);
}

/* ----- RIGHT PANEL ----- */
.h-bundle__right {
  background: var(--hb-card-bg);
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
}

.h-bundle__panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 440px;
  margin: 0 auto;
  width: 100%;
}

.h-bundle__panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
}

.h-bundle__panel-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.h-bundle__panel-title {
  font-family: var(--hb-heading-font);
  font-weight: 600;
  font-size: 22px;
  color: var(--hb-primary);
  margin: 0;
}

.h-bundle__panel-badge {
  font-family: var(--hb-body-font);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hb-primary);
  border: 1px solid rgba(29, 45, 93, 0.25);
  padding: 3px 8px;
  border-radius: 4px;
}

.h-bundle__panel-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--hb-primary);
  padding: 4px;
  opacity: 0.6;
}

.h-bundle__items {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 16px;
  max-height: 520px;
  scrollbar-width: thin;
}

/* Item rows */
.h-bundle__item {
  border-bottom: 1px solid rgba(29, 45, 93, 0.08);
  padding: 12px 0;
}

.h-bundle__item--all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
}

.h-bundle__item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.h-bundle__item-head-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.h-bundle__check-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: var(--hb-body-font);
  font-size: 14px;
  color: var(--hb-primary);
  font-weight: 500;
}

.h-bundle__check {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.h-bundle__check-ui {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--hb-primary);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #fff;
  transition: background 0.15s ease;
}

.h-bundle__check:checked + .h-bundle__check-ui {
  background: var(--hb-primary);
}

.h-bundle__check:checked + .h-bundle__check-ui::after {
  content: "";
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
  margin-bottom: 2px;
}

.h-bundle__item-name {
  line-height: 1.3;
}

.h-bundle__item-price {
  font-family: var(--hb-body-font);
  font-size: 14px;
  color: var(--hb-primary);
  font-weight: 400;
  white-space: nowrap;
}

.h-bundle__item-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--hb-primary);
  padding: 2px;
  opacity: 0.5;
  transition: transform 0.2s ease;
}

.h-bundle__item.is-open .h-bundle__item-toggle {
  transform: rotate(180deg);
}

.h-bundle__item-body {
  display: none;
  padding: 12px 0 4px 28px;
}

.h-bundle__item.is-open .h-bundle__item-body {
  display: block;
}

.h-bundle__item-row {
  display: flex;
  gap: 14px;
}

.h-bundle__item-thumb {
  width: 64px;
  height: 64px;
  border-radius: 6px;
  overflow: hidden;
  background: #e8e4df;
  flex-shrink: 0;
}

.h-bundle__thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.h-bundle__thumb-placeholder {
  width: 100%;
  height: 100%;
  background: #e0dcd6;
}

.h-bundle__item-options {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.h-bundle__option-label {
  font-family: var(--hb-body-font);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hb-muted);
  display: block;
  margin-bottom: 6px;
}

.h-bundle__option-values {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.h-bundle__swatch {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  border: 1.5px solid transparent;
  cursor: pointer;
  padding: 0;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.h-bundle__swatch.is-active {
  border-color: var(--hb-primary);
  box-shadow: 0 0 0 1px var(--hb-primary);
}

.h-bundle__chip {
  font-family: var(--hb-body-font);
  font-size: 12px;
  padding: 5px 12px;
  border: 1px solid rgba(29, 45, 93, 0.2);
  background: #fff;
  color: var(--hb-primary);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.h-bundle__chip.is-active {
  background: var(--hb-primary);
  color: #fff;
  border-color: var(--hb-primary);
}

.h-bundle__qty-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.h-bundle__qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(29, 45, 93, 0.2);
  border-radius: 4px;
  overflow: hidden;
}

.h-bundle__qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: #fff;
  color: var(--hb-primary);
  font-size: 16px;
  cursor: pointer;
  line-height: 1;
}

.h-bundle__qty-input {
  width: 36px;
  height: 32px;
  border: none;
  border-left: 1px solid rgba(29, 45, 93, 0.12);
  border-right: 1px solid rgba(29, 45, 93, 0.12);
  text-align: center;
  font-family: var(--hb-body-font);
  font-size: 13px;
  color: var(--hb-primary);
  background: #fff;
  -moz-appearance: textfield;
}

.h-bundle__qty-input::-webkit-outer-spin-button,
.h-bundle__qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.h-bundle__no-product {
  font-size: 12px;
  color: var(--hb-muted);
  margin: 0;
}

/* Footer */
.h-bundle__footer {
  border-top: 1px solid rgba(29, 45, 93, 0.1);
  padding-top: 16px;
  margin-top: auto;
}

.h-bundle__total {
  margin-bottom: 14px;
}

.h-bundle__total-label {
  display: block;
  font-family: var(--hb-body-font);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hb-muted);
  margin-bottom: 4px;
}

.h-bundle__total-price {
  font-family: var(--hb-heading-font);
  font-weight: 600;
  font-size: 28px;
  color: var(--hb-primary);
  display: block;
  line-height: 1.2;
}

.h-bundle__total-note {
  font-family: var(--hb-body-font);
  font-size: 12px;
  color: var(--hb-muted);
  display: block;
  margin-top: 2px;
}

.h-bundle__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.h-bundle__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 18px;
  font-family: var(--hb-body-font);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.2s ease;
  border: 1.5px solid transparent;
}

.h-bundle__btn:disabled {
  opacity: 0.6;
  cursor: wait;
}

.h-bundle__btn--primary {
  background: var(--hb-navy);
  color: #fff;
  border-color: var(--hb-navy);
}

.h-bundle__btn--primary:hover {
  opacity: 0.9;
}

.h-bundle__btn--outline {
  background: transparent;
  color: var(--hb-primary);
  border-color: rgba(29, 45, 93, 0.3);
}

.h-bundle__btn--outline:hover {
  border-color: var(--hb-primary);
}

.h-bundle__status {
  margin-top: 10px;
  font-family: var(--hb-body-font);
  font-size: 13px;
  text-align: center;
  padding: 8px;
  border-radius: 4px;
}

.h-bundle__status.is-success {
  background: rgba(29, 45, 93, 0.08);
  color: var(--hb-primary);
}

.h-bundle__status.is-error {
  background: #fdf0f0;
  color: #8b2e2e;
}

/* Responsive */
@media screen and (max-width: 989px) {
  .h-bundle__layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .h-bundle__left {
    min-height: 0;
  }

  .h-bundle__media {
    position: relative;
    min-height: 420px;
  }

  .h-bundle__media-overlay {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.85) 40%,
      rgba(255, 255, 255, 0.35) 70%,
      rgba(255, 255, 255, 0.1) 100%
    );
  }

  .h-bundle__left-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 32px 24px 20px;
    max-width: 100%;
  }

  .h-bundle__features {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px;
    margin-top: 0;
  }

  .h-bundle__trust {
    padding: 8px 24px 24px;
  }

  .h-bundle__right {
    padding: 24px 20px 32px;
  }
}

@media screen and (max-width: 749px) {
  .h-bundle__badges {
    flex-direction: column;
    gap: 14px;
  }

  .h-bundle__features {
    grid-template-columns: 1fr 1fr;
    gap: 16px 12px;
  }

  .h-bundle__heading {
    font-size: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .h-bundle__item-toggle,
  .h-bundle__btn,
  .h-bundle__check-ui {
    transition: none;
  }
}

* ============================================================
   HOSPITALITY PERFORMANCE SECTIONS – pixel-matched to refs
   Append to hospitality-edit.css
   Brand: Primary #1d2d5d | Cream #f6ede1 / #f8f5f0 | Accent #c4a35a
   ============================================================ */


/* ============================================================
   1. LAUNDRY INTELLIGENCE BAR
   ============================================================ */

.laundry-intel {
  --li-navy: #1a2744;
  --li-text: #ffffff;
  --li-muted: rgba(255, 255, 255, 0.75);
  --li-heading-font: "Cormorant Garamond", "Garamond", "Times New Roman", serif;
  --li-body-font: "Futura", "Futura PT", "Century Gothic", "Trebuchet MS", sans-serif;

  width: 100%;
  background-color: var(--li-navy);
  color: var(--li-text);
}

.laundry-intel__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  align-items: center;
  gap: 32px;
  padding: 48px 48px;
  min-height: 160px;
}

.laundry-intel__left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.laundry-intel__eyebrow {
  font-family: var(--li-body-font);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--li-muted);
  margin: 0;
}

.laundry-intel__heading {
  font-family: var(--li-heading-font);
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
  margin: 0;
  color: #fff;
  font-style: italic;
}

.laundry-intel__line {
  display: block;
  width: 40px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
}

.laundry-intel__icons {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 20px 28px;
}

.laundry-intel__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  min-width: 72px;
  max-width: 90px;
}

.laundry-intel__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.laundry-intel__icon svg {
  display: block;
  width: 22px;
  height: 22px;
}

.laundry-intel__label {
  font-family: var(--li-body-font);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.35;
  margin: 0;
}

@media screen and (max-width: 989px) {
  .laundry-intel__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 40px 28px;
    text-align: center;
  }

  .laundry-intel__left {
    align-items: center;
  }

  .laundry-intel__icons {
    justify-content: center;
  }
}

@media screen and (max-width: 749px) {
  .laundry-intel__inner {
    padding: 36px 20px;
  }

  .laundry-intel__heading {
    font-size: 26px;
  }

  .laundry-intel__icons {
    gap: 16px 18px;
  }

  .laundry-intel__item {
    min-width: 64px;
    max-width: 78px;
  }

  .laundry-intel__icon {
    width: 42px;
    height: 42px;
  }

  .laundry-intel__icon svg {
    width: 18px;
    height: 18px;
  }

  .laundry-intel__label {
    font-size: 9px;
  }
}


/* ============================================================
   2. WHY IT PERFORMS – card grid
   ============================================================ */

.why-performs {
  --wp-primary: #1d2d5d;
  --wp-muted: #5a6a8a;
  --wp-cream: #f8f5f0;
  --wp-card-bg: #faf8f5;
  --wp-border: rgba(29, 45, 93, 0.08);
  --wp-heading-font: "Cormorant Garamond", "Garamond", "Times New Roman", serif;
  --wp-body-font: "Futura", "Futura PT", "Century Gothic", "Trebuchet MS", sans-serif;

  width: 100%;
  background-color: var(--wp-cream);
  padding: 72px 0 64px;
}

.why-performs__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.why-performs__eyebrow {
  font-family: var(--wp-body-font);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--wp-primary);
  margin: 0 0 14px;
  opacity: 0.75;
}

.why-performs__heading {
  font-family: var(--wp-heading-font);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 42px);
  color: var(--wp-primary);
  margin: 0 0 12px;
  line-height: 1.2;
}

.why-performs__line {
  display: block;
  width: 36px;
  height: 1.5px;
  background-color: var(--wp-primary);
  margin: 0 auto 44px;
  opacity: 0.7;
}

.why-performs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
}

.why-performs__card {
  background-color: var(--wp-card-bg);
  border: 1px solid var(--wp-border);
  border-radius: 4px;
  padding: 28px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-sizing: border-box;
  min-height: 100%;
}

.why-performs__number {
  font-family: var(--wp-heading-font);
  font-weight: 500;
  font-size: 32px;
  color: var(--wp-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.why-performs__card-title {
  font-family: var(--wp-body-font);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--wp-primary);
  margin: 0;
  line-height: 1.35;
}

.why-performs__card-text {
  font-family: var(--wp-body-font);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.6;
  color: var(--wp-muted);
  margin: 0;
}

.why-performs__card-text p {
  margin: 0;
}

@media screen and (max-width: 989px) {
  .why-performs {
    padding: 56px 0 48px;
  }

  .why-performs__inner {
    padding: 0 24px;
  }

  .why-performs__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .why-performs__line {
    margin-bottom: 36px;
  }
}

@media screen and (max-width: 749px) {
  .why-performs {
    padding: 48px 0 40px;
  }

  .why-performs__inner {
    padding: 0 16px;
  }

  .why-performs__heading {
    font-size: 26px;
  }

  .why-performs__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .why-performs__card {
    padding: 22px 20px 20px;
  }

  .why-performs__number {
    font-size: 28px;
  }
}


/* ============================================================
   3. THE FABRIC STORY – image left, text right
   ============================================================ */

.fabric-story {
  --fs-primary: #1d2d5d;
  --fs-muted: #5a6a8a;
  --fs-cream: #f6ede1;
  --fs-pill-bg: #1d2d5d;
  --fs-pill-text: #ffffff;
  --fs-heading-font: "Cormorant Garamond", "Garamond", "Times New Roman", serif;
  --fs-body-font: "Futura", "Futura PT", "Century Gothic", "Trebuchet MS", sans-serif;

  width: 100%;
  background-color: #ffffff;
  padding: 64px 0 56px;
}

.fabric-story__story {
  padding: 0 40px;
}

.fabric-story__story-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px 56px;
  align-items: start;
}

.fabric-story__media-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fabric-story__media {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  background-color: #d9d5d0;
  overflow: hidden;
  border-radius: 2px;
}

.fabric-story__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fabric-story__img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 320px;
  background: #d9d5d0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fabric-story__img-placeholder svg {
  width: 40%;
  height: 40%;
  opacity: 0.25;
  color: #1d2d5d;
}

.fabric-story__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fabric-story__pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-family: var(--fs-body-font);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.02em;
  border-radius: 20px;
  white-space: nowrap;
  line-height: 1.2;
  background-color: var(--fs-pill-bg);
  color: var(--fs-pill-text);
}

.fabric-story__certs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.fabric-story__cert {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-family: var(--fs-body-font);
  font-weight: 400;
  font-size: 11.5px;
  letter-spacing: 0.02em;
  border-radius: 16px;
  background-color: #e8e4df;
  color: var(--fs-primary);
  line-height: 1.2;
}

.fabric-story__cert-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
}

.fabric-story__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
}

.fabric-story__heading {
  font-family: var(--fs-heading-font);
  font-weight: 600;
  font-size: clamp(26px, 2.8vw, 32px);
  color: var(--fs-primary);
  margin: 0;
  line-height: 1.2;
}

.fabric-story__subheading {
  font-family: var(--fs-body-font);
  font-weight: 400;
  font-size: 14.5px;
  color: var(--fs-muted);
  margin: 0 0 4px;
  line-height: 1.4;
}

.fabric-story__body {
  font-family: var(--fs-body-font);
  font-weight: 300;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--fs-primary);
}

.fabric-story__body p {
  margin: 0 0 14px;
}

.fabric-story__body p:last-child {
  margin-bottom: 0;
}

.fabric-story__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  align-self: flex-end;
  font-family: var(--fs-body-font);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--fs-primary);
  transition: opacity 0.25s ease;
}

.fabric-story__link:hover {
  opacity: 0.7;
}

.fabric-story__link-arrow {
  transition: transform 0.25s ease;
  display: inline-block;
}

.fabric-story__link:hover .fabric-story__link-arrow {
  transform: translateX(4px);
}

.fabric-story__cta {
  background-color: #f6ede1;
  padding: 56px 40px;
  margin-top: 48px;
}

.fabric-story__cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px 64px;
  align-items: center;
}

.fabric-story__cta-img {
  max-width: 100%;
  height: auto;
  display: block;
  max-height: 380px;
  object-fit: contain;
}

.fabric-story__cta-placeholder {
  width: 260px;
  height: 320px;
  background: #e8e4df;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fabric-story__cta-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 420px;
}

.fabric-story__cta-heading {
  font-family: var(--fs-heading-font);
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 38px);
  color: var(--fs-primary);
  margin: 0;
  line-height: 1.2;
}

.fabric-story__cta-text {
  font-family: var(--fs-body-font);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  color: var(--fs-muted);
  margin: 0;
}

.fabric-story__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: 8px;
  padding: 13px 28px;
  font-family: var(--fs-body-font);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: none;
  border-radius: 0;
  transition: opacity 0.25s ease;
  cursor: pointer;
  background-color: #1d2d5d;
  color: #fff;
}

.fabric-story__cta-btn:hover {
  opacity: 0.88;
}

@media screen and (max-width: 989px) {
  .fabric-story {
    padding: 48px 0 40px;
  }

  .fabric-story__story {
    padding: 0 24px;
  }

  .fabric-story__story-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .fabric-story__media {
    aspect-ratio: 16 / 10;
    max-height: 360px;
  }

  .fabric-story__link {
    align-self: flex-start;
  }

  .fabric-story__cta {
    padding: 48px 28px;
  }

  .fabric-story__cta-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .fabric-story__cta-content {
    max-width: 100%;
    align-items: center;
  }

  .fabric-story__cta-btn {
    align-self: center;
  }
}

@media screen and (max-width: 749px) {
  .fabric-story {
    padding: 40px 0 32px;
  }

  .fabric-story__story {
    padding: 0 16px;
  }

  .fabric-story__heading {
    font-size: 24px;
  }

  .fabric-story__body {
    font-size: 14px;
  }

  .fabric-story__pill {
    font-size: 11px;
    padding: 7px 12px;
  }

  .fabric-story__cert {
    font-size: 11px;
    padding: 5px 12px;
  }
}


/* ============================================================
   4. WHAT OUR PARTNERS SAY
   ============================================================ */

.partners-say {
  --ps-primary: #1d2d5d;
  --ps-muted: #5a6a8a;
  --ps-cream: #f8f5f0;
  --ps-card-bg: #faf8f5;
  --ps-gold: #c4a35a;
  --ps-heading-font: "Cormorant Garamond", "Garamond", "Times New Roman", serif;
  --ps-body-font: "Futura", "Futura PT", "Century Gothic", "Trebuchet MS", sans-serif;

  width: 100%;
  background-color: var(--ps-cream);
  padding: 64px 0 72px;
}

.partners-say__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: 40px 48px;
  align-items: start;
}

.partners-say__intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.partners-say__heading {
  font-family: var(--ps-heading-font);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 36px);
  color: var(--ps-primary);
  margin: 0;
  line-height: 1.2;
}

.partners-say__intro-text {
  font-family: var(--ps-body-font);
  font-weight: 300;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ps-muted);
  margin: 0;
  max-width: 340px;
}

.partners-say__rating-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background-color: #efeae3;
  border-radius: 6px;
  padding: 18px 22px;
  margin-top: 12px;
  max-width: 320px;
}

.partners-say__rating-number {
  font-family: var(--ps-heading-font);
  font-weight: 600;
  font-size: 42px;
  color: var(--ps-primary);
  line-height: 1;
}

.partners-say__rating-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.partners-say__stars {
  display: flex;
  gap: 2px;
  color: var(--ps-gold);
}

.partners-say__star {
  display: block;
  width: 14px;
  height: 14px;
}

.partners-say__rating-label {
  font-family: var(--ps-body-font);
  font-weight: 300;
  font-size: 12px;
  color: var(--ps-muted);
  line-height: 1.3;
}

.partners-say__quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.partners-say__quote {
  background-color: var(--ps-card-bg);
  border: 1px solid rgba(29, 45, 93, 0.06);
  border-radius: 6px;
  padding: 24px 20px 22px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-sizing: border-box;
  height: 100%;
}

.partners-say__quote-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.partners-say__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e8e4df;
  color: var(--ps-primary);
  font-family: var(--ps-body-font);
  font-weight: 500;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.partners-say__quote-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.partners-say__quote-author {
  font-family: var(--ps-body-font);
  font-weight: 500;
  font-size: 13.5px;
  font-style: normal;
  color: var(--ps-primary);
  line-height: 1.3;
  margin: 0;
}

.partners-say__quote-role {
  font-family: var(--ps-body-font);
  font-weight: 300;
  font-size: 11.5px;
  color: var(--ps-muted);
  line-height: 1.3;
}

.partners-say__quote-stars {
  display: flex;
  gap: 2px;
  color: var(--ps-gold);
  margin-top: 2px;
}

.partners-say__quote-stars .partners-say__star {
  width: 12px;
  height: 12px;
}

.partners-say__quote-text {
  font-family: var(--ps-body-font);
  font-weight: 300;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ps-primary);
  margin: 0;
  font-style: italic;
  flex: 1;
}

.partners-say__badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--ps-body-font);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ps-muted);
  border: 1px solid rgba(29, 45, 93, 0.15);
  border-radius: 3px;
  padding: 4px 8px;
  margin-top: 4px;
  align-self: flex-start;
}

@media screen and (max-width: 989px) {
  .partners-say {
    padding: 48px 0 56px;
  }

  .partners-say__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 24px;
  }

  .partners-say__intro-text {
    max-width: 100%;
  }

  .partners-say__quotes {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media screen and (max-width: 749px) {
  .partners-say {
    padding: 40px 0 48px;
  }

  .partners-say__inner {
    padding: 0 16px;
  }

  .partners-say__heading {
    font-size: 26px;
  }

  .partners-say__rating-number {
    font-size: 36px;
  }

  .partners-say__quote {
    padding: 20px 16px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fabric-story__link,
  .fabric-story__link-arrow,
  .fabric-story__cta-btn {
    transition: none;
  }
}