@charset "UTF-8";

/* Product category page */
.product-category-page {
  background: #fff;
}

.product-category-page .global-nav__dropdown.is-current > .global-nav__dropdown-trigger::after {
  opacity: 1;
  transform: scaleX(1);
}

.product-page-hero {
  position: relative;
  min-height: clamp(440px, 42vw, 650px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: #28221c;
}

.product-page-hero__image,
.product-page-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.product-page-hero__image {
  object-fit: cover;
  object-position: center 42%;
}

.product-page-hero__overlay {
  background:
    linear-gradient(90deg, rgba(24, 20, 16, .76) 0%, rgba(24, 20, 16, .42) 48%, rgba(24, 20, 16, .2) 100%),
    linear-gradient(0deg, rgba(18, 15, 12, .42), transparent 52%);
}

.product-page-hero__content {
  position: relative;
  z-index: 1;
  padding-top: 150px;
  padding-bottom: clamp(62px, 6vw, 96px);
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
  letter-spacing: .03em;
}

.breadcrumb a {
  transition: color .2s ease;
}

.breadcrumb a:hover {
  color: #fff;
}

.product-page-hero__eyebrow,
.product-page-hero__content h1,
.product-page-hero__content > p:last-child {
  margin: 0;
}

.product-page-hero__eyebrow {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
}

.product-page-hero__content h1 {
  max-width: 820px;
  margin-top: 16px;
  font-size: clamp(38px, 4vw, 64px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: .04em;
}

.product-page-hero__content > p:last-child {
  max-width: 760px;
  margin-top: 22px;
  color: rgba(255, 255, 255, .84);
  font-size: 16px;
  line-height: 1.9;
}

.product-category-page-main {
  padding: clamp(84px, 7vw, 126px) 0 clamp(112px, 8vw, 156px);
}

.product-category-page-main__layout {
  display: grid;
  grid-template-columns: minmax(230px, 280px) minmax(0, 1fr);
  gap: clamp(54px, 5vw, 96px);
  align-items: start;
}

.product-sidebar {
  position: sticky;
  top: 28px;
  min-width: 0;
}

.product-sidebar__heading {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 22px;
  border-bottom: 1px solid #26221f;
}

.product-sidebar__icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  color: #49413a;
}

.product-sidebar__icon svg {
  width: 38px;
  height: 38px;
}

.product-sidebar__heading p,
.product-sidebar__heading h2 {
  margin: 0;
}

.product-sidebar__heading p {
  color: #9a9189;
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .18em;
}

.product-sidebar__heading h2 {
  margin-top: 4px;
  font-size: 20px;
  font-weight: 600;
}

.product-sidebar__nav {
  display: grid;
  gap: 4px;
  padding: 20px 0 26px;
  border-bottom: 1px solid #d9d4cf;
}

.product-sidebar__nav a {
  position: relative;
  display: block;
  min-height: 46px;
  padding: 12px 42px 12px 14px;
  border-left: 3px solid transparent;
  background: transparent;
  color: #68615b;
  font-size: 14px;
  line-height: 1.55;
  transition:
    border-color .2s ease,
    background-color .2s ease,
    color .2s ease,
    padding-left .2s ease;
}

.product-sidebar__nav a::after {
  content: "›";
  position: absolute;
  right: 16px;
  top: 50%;
  opacity: 0;
  transform: translate(-4px, -50%);
  transition: opacity .2s ease, transform .2s ease;
}

.product-sidebar__nav a:hover,
.product-sidebar__nav a:focus-visible {
  padding-left: 18px;
  border-left-color: #c39b79;
  background: #f3eee8;
  color: #202020;
}

.product-sidebar__nav a.is-active,
.product-sidebar__nav a[aria-current="location"] {
  padding-left: 18px;
  border-left-color: #c39b79;
  background: #26221f;
  color: #fff;
}

.product-sidebar__nav a:hover::after,
.product-sidebar__nav a:focus-visible::after,
.product-sidebar__nav a.is-active::after,
.product-sidebar__nav a[aria-current="location"]::after {
  opacity: 1;
  transform: translate(0, -50%);
}

.product-sidebar__nav a:focus-visible {
  outline: 2px solid #26221f;
  outline-offset: 2px;
}

.product-sidebar__note {
  margin-top: 28px;
  padding: 24px;
  border-radius: 0;
  background: #f5f1ec;
}

.product-sidebar__note span,
.product-sidebar__note p {
  margin: 0;
}

.product-sidebar__note > span {
  color: #9b8d81;
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .16em;
}

.product-sidebar__note p {
  margin-top: 10px;
  color: #69615a;
  font-size: 13px;
  line-height: 1.75;
}

.product-sidebar__note a {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  font-weight: 600;
}

.product-category-content {
  min-width: 0;
}

.product-category-content__header {
  max-width: 960px;
  margin-bottom: clamp(40px, 4vw, 60px);
}

.product-category-content__eyebrow,
.product-category-content__header h2,
.product-category-content__header > p:last-child {
  margin: 0;
}

.product-category-content__eyebrow {
  color: #9b8e82;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
}

.product-category-content__header h2 {
  margin-top: 12px;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: .035em;
}

.product-category-content__header > p:last-child {
  max-width: 980px;
  margin-top: 20px;
  color: #66605a;
  font-size: 15px;
  line-height: 1.95;
}

.bathroom-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 3vw, 48px) clamp(22px, 2.5vw, 38px);
}

.bathroom-category-card {
  position: relative;
  scroll-margin-top: 96px;
  min-width: 0;
  display: block;
  padding-bottom: 18px;
  border-bottom: 1px solid #dfd9d3;
  color: inherit;
}

.bathroom-category-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.55 / 1;
  border-radius: 0;
  background: #f5f1ec;
}

.bathroom-category-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.bathroom-category-card__index {
  position: absolute;
  left: 18px;
  top: 18px;
  min-width: 44px;
  height: 24px;
  padding: 0 11px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .82);
  color: #746b63;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  backdrop-filter: blur(8px);
}

.bathroom-category-card__body {
  padding: 18px 44px 0 2px;
}

.bathroom-category-card__body p,
.bathroom-category-card__body h3,
.bathroom-category-card__body span {
  margin: 0;
}

.bathroom-category-card__body p {
  color: #9a9189;
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .16em;
}

.bathroom-category-card__body h3 {
  margin-top: 7px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

.bathroom-category-card__body span {
  display: block;
  margin-top: 8px;
  color: #77706a;
  font-size: 13px;
  line-height: 1.7;
}

.bathroom-category-card__arrow {
  position: absolute;
  right: 0;
  bottom: 19px;
  width: 38px;
  height: 24px;
  border: 1px solid #d4ccc5;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #4d4640;
  font-size: 20px;
  line-height: 1;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.bathroom-category-card:hover .bathroom-category-card__media img,
.bathroom-category-card:focus-visible .bathroom-category-card__media img {
  transform: scale(1.035);
}

.bathroom-category-card:hover .bathroom-category-card__arrow,
.bathroom-category-card:focus-visible .bathroom-category-card__arrow {
  background: #222;
  color: #fff;
  transform: translateX(2px);
}

.bathroom-category-card:focus-visible {
  outline: 2px solid #202020;
  outline-offset: 6px;
}

.product-page-cta {
  padding: 0 0 clamp(96px, 8vw, 144px);
}

.product-page-cta__inner {
  min-height: 250px;
  padding: clamp(42px, 4vw, 64px);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  background: #f3eee8;
}

.product-page-cta__inner p,
.product-page-cta__inner h2,
.product-page-cta__inner span {
  margin: 0;
}

.product-page-cta__inner p {
  color: #95887d;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
}

.product-page-cta__inner h2 {
  margin-top: 10px;
  font-size: clamp(26px, 2.5vw, 40px);
  font-weight: 600;
  line-height: 1.3;
}

.product-page-cta__inner > div > span {
  display: block;
  max-width: 720px;
  margin-top: 14px;
  color: #706862;
  font-size: 14px;
  line-height: 1.8;
}



/* Square surfaces for the product category page */
.product-category-page .footer-qr__image,
.product-category-page .contact-form {
  border-radius: 0;
}

@media (max-width: 1279px) {
  .product-category-page-main__layout {
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 48px;
  }

  .bathroom-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1023px) {
  .product-page-hero {
    min-height: 500px;
  }

  .product-category-page-main__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .product-sidebar {
    position: static;
  }

  .product-sidebar__heading {
    padding-bottom: 18px;
  }

  .product-sidebar__nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 18px 0 6px;
    border-bottom: 0;
    scrollbar-width: none;
  }

  .product-sidebar__nav::-webkit-scrollbar {
    display: none;
  }

  .product-sidebar__nav a,
  .product-sidebar__nav a:hover,
  .product-sidebar__nav a:focus-visible,
  .product-sidebar__nav a.is-active,
  .product-sidebar__nav a[aria-current="location"] {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 10px 16px;
    border: 1px solid #ded7d0;
    border-left-width: 1px;
    border-radius: 0;
    background: #fff;
    color: #68615b;
    font-size: 13px;
    white-space: nowrap;
  }

  .product-sidebar__nav a:hover,
  .product-sidebar__nav a:focus-visible {
    border-color: #c39b79;
    background: #f3eee8;
    color: #202020;
  }

  .product-sidebar__nav a.is-active,
  .product-sidebar__nav a[aria-current="location"] {
    border-color: #26221f;
    background: #26221f;
    color: #fff;
  }

  .product-sidebar__nav a::after,
  .product-sidebar__note {
    display: none;
  }

  .product-page-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .product-page-hero {
    min-height: 430px;
  }

  .product-page-hero__content {
    padding-top: 118px;
    padding-bottom: 48px;
  }

  .breadcrumb {
    margin-bottom: 28px;
    font-size: 11px;
  }

  .product-page-hero__content h1 {
    font-size: 34px;
    letter-spacing: .02em;
  }

  .product-page-hero__content > p:last-child {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.8;
  }

  .product-category-page-main {
    padding: 64px 0 88px;
  }

  .product-category-content__header h2 {
    font-size: 30px;
  }

  .product-category-content__header > p:last-child {
    font-size: 14px;
    line-height: 1.85;
  }

  .bathroom-category-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .bathroom-category-card__media {
    border-radius: 0;
  }

  .bathroom-category-card__body h3 {
    font-size: 18px;
  }

  .product-page-cta {
    padding-bottom: 88px;
  }

  .product-page-cta__inner {
    padding: 34px 24px;
    border-radius: 0;
    gap: 28px;
  }

  .product-page-cta__inner .cta-button {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .product-page-hero__content h1 {
    font-size: 30px;
  }

  .product-sidebar__heading h2 {
    font-size: 18px;
  }

  .product-category-content__header h2 {
    font-size: 27px;
  }

  .bathroom-category-card__body {
    padding-right: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bathroom-category-card__media img,
  .bathroom-category-card__arrow {
    transition: none;
  }
}
