.am-spa-shop-finder,
.am-spa-shop-finder * {
  box-sizing: border-box;
}

.am-spa-shop-finder {
  position: relative;
  width: 100%;
  overflow: hidden;
  font-family: 'Questrial', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #7A7A7A;
}

.am-spa-shop-finder a {
  text-decoration: none;
}

.am-header-wrap {
  position: relative;
  z-index: 4;
  max-width: 760px;
}

.am-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 500;
}

.am-crumb-home {
  font-weight: 700;
}

.am-crumb-sep {
  color: #85D9DE;
}

.am-main-heading {
  margin: 0 0 20px;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.am-subheading {
  margin: 0 0 30px;
  max-width: 740px;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.6;
  font-weight: 400;
}

.am-finder-shell {
  position: relative;
  overflow: visible;
}

.am-bg-zone {
  position: absolute;
  top: -228px;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
  background: #d9d9d9;
}

.am-bg-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 300ms ease, transform 550ms ease;
}

.am-bg-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.am-bg-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.am-bg-zone:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.16), rgba(255,255,255,0) 45%);
  pointer-events: none;
}

.am-finder-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(150px, 190px) minmax(360px, 480px) 1fr;
  align-items: stretch;
  min-height: inherit;
}

.am-finder-grid.am-no-filters {
  grid-template-columns: minmax(430px, 560px) 1fr;
}

.am-filters {
  padding: 0 30px 0 0;
  border-right: 1px solid #85D9DE;
}

.am-filter-group + .am-filter-group {
  margin-top: 58px;
}

.am-filter-group h3 {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0 0 18px;
  color: #7A7A7A;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 800;
}

.am-info-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 10px;
  line-height: 1;
  opacity: .75;
}

.am-filter-check {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 13px 0;
  color: #7A7A7A;
  font-size: 18px;
  line-height: 1.35;
  cursor: pointer;
  user-select: none;
}

.am-filter-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.am-filter-check span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding-left: 36px;
}

.am-filter-check span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
  border: 2px solid #85D9DE;
  border-radius: 3px;
  background: #fff;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.am-filter-check span:after {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  width: 6px;
  height: 11px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-62%) rotate(42deg) scale(0);
  transition: transform 180ms ease;
}

.am-filter-check input:checked + span {
  color: #00263D;
}

.am-filter-check input:checked + span:before {
  background-color: #00263D;
  border-color: #00263D;
}

.am-filter-check input:checked + span:after {
  transform: translateY(-62%) rotate(42deg) scale(1);
}

.am-filter-check input:focus-visible + span:before {
  box-shadow: 0 0 0 3px rgba(0, 38, 61, .22);
}

.am-filter-price .am-filter-check span {
  letter-spacing: .05em;
}

.am-filter-check:hover span {
  color: #85D9DE;
}

.am-filter-check:hover span:before {
  border-color: #85D9DE;
}

.am-carousel-area {
  position: relative;
  padding-left: 38px;
  min-height: inherit;
}

.am-result-bar {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 35px;
  margin: -5px 0 18px;
}

.am-arrow {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 35px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #00263D;
  font-size: 58px;
  line-height: .5;
  font-weight: 900;
  cursor: pointer;
  opacity: .98;
  transition: transform 180ms ease, opacity 180ms ease, color 180ms ease;
}

.am-arrow:hover {
  color: #85D9DE;
  transform: translateY(-1px) scale(1.04);
}

.am-arrow[disabled] {
  opacity: .28;
  cursor: not-allowed;
}

.am-counter {
  color: #7A7A7A;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
}

.am-slides {
  position: relative;
  min-height: 310px;
}

.am-spa-slide {
  position: absolute;
  inset: 0 auto auto 0;
  width: min(100%, 520px);
  opacity: 0;
  visibility: hidden;
  transform: translateX(16px);
  transition: opacity 260ms ease, transform 260ms ease, visibility 260ms ease;
}

.am-spa-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.am-spa-slide.is-hidden-by-filter {
  display: none;
}

.am-spa-name {
  margin: 0 0 11px;
  color: #00263D;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.am-series {
  margin-bottom: 12px;
  color: #00263D;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.am-rating-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 7px;
}

.am-stars {
  display: inline-flex;
  gap: 1px;
  color: #85D9DE;
  font-size: 19px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.am-reviews {
  color: #00263D;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
}

.am-msrp {
  margin: 0 0 22px;
  color: #7A7A7A;
  font-size: 18px;
  line-height: 1.25;
}

.am-msrp strong {
  color: #00263D;
  font-weight: 900;
}

.am-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(80px, 1fr));
  gap: 12px 22px;
  margin: 0 0 26px;
}

.am-meta-label,
.am-water-label {
  display: block;
  margin-bottom: 7px;
  color: #00263D;
  font-size: 11px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: .32em;
  text-transform: uppercase;
}

.am-meta-grid strong {
  display: block;
  color: #7A7A7A;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 500;
}

.am-water-care {
  max-width: 430px;
  margin-bottom: 18px;
}

.am-water-care p {
  margin: 0;
  color: #7A7A7A;
  font-size: 16px;
  line-height: 1.45;
}

.am-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.am-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 2px solid transparent;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.am-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
}

.am-primary-btn:hover {
  color: #00263D;
  background-color: #85D9DE;
  border-color: #85D9DE;
}

.am-secondary-btn:hover {
  color: #85D9DE;
  border-color: #85D9DE;
}

.am-primary-btn {
  color: #fff;
  background: #00263D;
}

.am-secondary-btn {
  color: #00263D;
  background: #85D9DE;
  border-color: #00263D;
}

.am-product-image {
  position: absolute;
  z-index: 8;
  display: block;
  max-width: 45vw;
  height: auto;
  border-radius: 12px;
  filter: drop-shadow(0 14px 22px rgba(0,0,0,.14));
  pointer-events: none;
}

.am-right-space {
  min-height: inherit;
}

.am-empty-state {
  margin: 30px 0;
  padding: 18px 22px;
  border: 1px solid #ececec;
  border-radius: 12px;
  background: rgba(255,255,255,.84);
  color: #7A7A7A;
  font-size: 17px;
  font-weight: 700;
}

@media (max-width: 1180px) {
  .am-finder-grid {
    grid-template-columns: minmax(145px, 175px) minmax(330px, 440px) 1fr;
  }

  .am-product-image {
    max-width: 35vw;
  }
}

@media (max-width: 1024px) {
  .am-spa-shop-finder {
    overflow: hidden;
    padding: 28px !important;
  }

  .am-bg-zone {
    display: none !important;
  }

  .am-finder-grid,
  .am-finder-grid.am-no-filters {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .am-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid #85D9DE;
  }

  .am-filter-group + .am-filter-group {
    margin-top: 0;
  }

  .am-carousel-area {
    padding-left: 0;
  }

  .am-spa-slide {
    position: relative;
    width: 100%;
    display: none;
    min-height: 0;
  }

  .am-spa-slide.is-active {
    display: flex;
    flex-direction: column;
  }

  .am-product-image {
    position: relative !important;
    order: -1;
    align-self: center;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
    display: block;
    max-width: min(360px, 86vw);
    margin: 0 0 28px;
  }

  .am-right-space {
    display: none;
  }
}

@media (max-width: 767px) {
  .am-spa-shop-finder {
    padding: 20px !important;
  }

  .am-finder-shell {
    padding-bottom: 0;
  }

  .am-slides {
    min-height: 0;
  }

  .am-main-heading {
    font-size: 38px;
  }

  .am-subheading {
    font-size: 17px;
  }

  .am-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding-bottom: 16px;
  }

  .am-filter-group h3 {
    font-size: 17px;
  }

  .am-filter-check {
    gap: 8px;
    font-size: 14px;
  }

  .am-filter-check span {
    min-height: 22px;
    padding-left: 30px;
  }

  .am-filter-check span:before {
    width: 20px;
    height: 20px;
  }

  .am-filter-check span:after {
    left: 7px;
  }

  .am-result-bar {
    gap: 14px;
    margin-bottom: 14px;
  }

  .am-counter {
    font-size: 16px;
  }

  .am-spa-name {
    font-size: 29px;
  }

  .am-series {
    font-size: 15px;
    letter-spacing: .16em;
  }

  .am-meta-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .am-spa-slide {
    min-height: 0;
    padding-bottom: 0;
  }

  .am-product-image {
    position: relative !important;
    order: -1;
    align-self: center;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
    display: block;
    max-width: min(300px, 82vw);
    margin: 0 0 20px;
  }

  .am-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .am-btn {
    width: 100%;
  }
}

.am-finder-grid.am-no-slides {
  grid-template-columns: minmax(150px, 220px);
}

.am-finder-grid.am-no-filters.am-no-slides {
  display: none;
}

@media (max-width: 1024px) {
  .am-finder-grid.am-no-slides {
    grid-template-columns: 1fr;
  }
}

/* Series Comparison Table */
.am-series-comparison,
.am-series-comparison * {
  box-sizing: border-box;
}

.am-series-comparison {
  width: 100%;
  font-family: 'Questrial', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #7A7A7A;
}

.am-series-comparison-title {
  margin: 0 0 54px;
  color: #00263D;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.2;
  font-weight: 900;
  text-align: center;
}

.am-series-comparison-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.am-series-comparison-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  table-layout: fixed;
  border: 1px solid #85D9DE;
  background: #fff;
}

.am-series-comparison-table th,
.am-series-comparison-table td {
  border-left: 1px solid #85D9DE;
  border-right: 1px solid #85D9DE;
  padding: 7px 12px;
  color: #7A7A7A;
  font-size: 12px;
  line-height: 1.22;
  font-weight: 400;
  vertical-align: middle;
  text-align: center;
}

.am-series-comparison-table thead th {
  padding: 11px 12px;
  background: #00263D;
  color: #fff;
  font-size: 11px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.am-series-comparison-table thead th:nth-child(1) {
  width: 96px;
}

.am-series-comparison-table thead th:nth-child(2) {
  width: 180px;
}

.am-series-comparison-table tbody tr {
  background: #f8f8f8;
}

.am-series-comparison-table tbody tr:nth-child(odd) {
  background: #eeeeee;
}

.am-series-comparison-table .am-series-feature {
  text-align: left;
  padding-left: 26px;
}

.am-series-benefit {
  background: rgba(255,255,255,.35);
  text-align: center;
}

.am-series-benefit span {
  display: inline-block;
  color: #00263D;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .35em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.am-series-mark {
  position: relative;
  display: inline-block;
  width: 25px;
  height: 21px;
  vertical-align: middle;
}

.am-series-mark i {
  position: absolute;
  display: block;
  width: 7px;
  height: 12px;
  border-radius: 80% 10% 80% 10%;
}

.am-series-mark .am-mark-gray {
  background: #7A7A7A;
}

.am-series-mark .am-mark-accent {
  background: #00263D;
}

.am-mark-one {
  left: 5px;
  top: 2px;
  transform: rotate(-44deg);
}

.am-mark-two {
  left: 4px;
  top: 10px;
  transform: rotate(44deg);
}

.am-mark-three {
  right: 5px;
  top: 2px;
  transform: rotate(44deg);
}

.am-mark-four {
  right: 4px;
  top: 10px;
  transform: rotate(-44deg);
}

@media (max-width: 1024px) {
  .am-series-comparison-title {
    margin-bottom: 32px;
  }

  .am-series-comparison-table {
    min-width: 900px;
  }
}

@media (max-width: 767px) {
  .am-series-comparison-title {
    margin-bottom: 24px;
    font-size: 25px;
  }

  .am-series-comparison-table {
    min-width: 820px;
  }

  .am-series-comparison-table th,
  .am-series-comparison-table td {
    padding: 7px 9px;
    font-size: 11px;
  }

  .am-series-comparison-table .am-series-feature {
    padding-left: 14px;
  }
}

/* Explore Our Models widget */
.am-explore-models,
.am-explore-models * {
  box-sizing: border-box;
}

.am-explore-models {
  width: 100%;
  font-family: 'Questrial', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #7A7A7A;
  overflow: hidden;
}

.am-explore-title {
  margin: 0 0 26px;
  color: #00263D;
  text-align: center;
  font-size: clamp(28px, 3vw, 34px);
  line-height: 1.15;
  font-weight: 900;
}

.am-explore-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 0 auto 42px;
}

.am-explore-tab {
  appearance: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px 14px;
  border: 0;
  border-right: 1px solid #dddddd;
  background: transparent;
  color: #00263D;
  font: inherit;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
  cursor: pointer;
  transition: color 180ms ease;
}

.am-explore-tab:first-child {
  padding-left: 10px;
}

.am-explore-tab:last-child {
  border-right: 0;
  padding-right: 10px;
}

.am-explore-tab.is-active,
.am-explore-tab:hover {
  color: #00263D;
}

.am-explore-tab:after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 0;
  height: 2px;
  background: transparent;
  transition: background-color 180ms ease;
}

.am-explore-tab.is-active:after,
.am-explore-tab:hover:after {
  background: #00263D;
}

.am-explore-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  align-items: center;
  gap: 28px;
  max-width: 1160px;
  margin: 0 auto;
}

.am-explore-viewport {
  min-width: 0;
  overflow: hidden;
}

.am-explore-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 50px;
  align-items: start;
}

.am-explore-card {
  display: none;
  min-width: 0;
  text-align: center;
}

.am-explore-card.is-visible-card {
  display: block;
}

.am-explore-card-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.am-explore-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 18px;
}

.am-explore-image-wrap img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.am-explore-series {
  display: block;
  color: #7A7A7A;
  margin: 0 0 9px;
  font-size: 19px;
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.am-explore-model-name {
  display: block;
  color: #00263D;
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
}

.am-explore-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 11px;
  font-size: 17px;
  line-height: 1.1;
  font-weight: 900;
}

.am-explore-stars {
  display: inline-flex;
  color: #85D9DE;
  gap: 0;
  font-size: 25px;
  line-height: .9;
  letter-spacing: -0.08em;
}

.am-explore-review-count {
  display: inline-block;
}

.am-explore-meta {
  display: block;
  font-size: 18px;
  line-height: 1.3;
}

.am-explore-meta strong {
  font-weight: 900;
}

.am-explore-arrow {
  appearance: none;
  color: #00263D;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 70px;
  line-height: .5;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, opacity 180ms ease;
}

.am-explore-arrow:hover {
  transform: translateY(-1px) scale(1.04);
}

.am-explore-arrow[disabled] {
  opacity: .22;
  cursor: not-allowed;
  transform: none;
}

.am-explore-help-wrap {
  display: flex;
  justify-content: center;
  margin-top: 58px;
}

.am-explore-help-btn {
  display: inline-flex;
  color: #fff;
  background: #00263D;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.am-explore-help-btn:hover {
  color: #00263D;
  background: #85D9DE;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0,0,0,.12);
}

@media (max-width: 1024px) {
  .am-explore-tabs {
    margin-bottom: 32px;
  }

  .am-explore-tab {
    padding: 0 14px 13px;
    font-size: 16px;
  }

  .am-explore-carousel {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 16px;
  }

  .am-explore-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }
}

@media (max-width: 767px) {
  .am-explore-title {
    margin-bottom: 20px;
    font-size: 27px;
  }

  .am-explore-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 0;
    margin-bottom: 26px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }

  .am-explore-tab {
    flex: 0 0 auto;
    padding: 0 13px 12px;
    font-size: 15px;
    white-space: nowrap;
  }

  .am-explore-carousel {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 8px;
  }

  .am-explore-track {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .am-explore-arrow {
    width: 34px;
    height: 44px;
    font-size: 52px;
  }

  .am-explore-series {
    font-size: 17px;
  }

  .am-explore-meta {
    font-size: 16px;
  }

  .am-explore-help-wrap {
    margin-top: 36px;
  }
}

/* Product Detail Hero Widget */
.am-product-hero,
.am-product-hero * {
  box-sizing: border-box;
}

.am-product-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #fff;
  color: #7A7A7A;
  font-family: 'Questrial', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  border-bottom: 3px solid #00263D;
}

.am-product-hero a {
  text-decoration: none;
}

.am-product-hero-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 58%;
  z-index: 1;
  overflow: hidden;
  background: #f4f4f4;
}

.am-product-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 320ms ease, transform 560ms ease;
}

.am-product-hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.am-product-hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.am-product-hero-content {
  position: relative;
  z-index: 3;
  width: min(48%, 585px);
  min-height: 560px;
  background: #fff;
}

.am-product-hero-content:after {
  content: "";
  position: absolute;
  top: -12%;
  right: -172px;
  bottom: -12%;
  width: 344px;
  z-index: -1;
  background: #fff;
  border-radius: 50%;
  box-shadow: 18px 0 28px rgba(0, 0, 0, .08);
}

.am-product-hero-content-inner {
  position: relative;
  z-index: 2;
  padding: 28px 40px 32px;
}

.am-product-hero-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 700;
}

.am-product-hero-breadcrumb a {
  color: #00263D;
  font-weight: 900;
}

.am-product-hero-breadcrumb span:last-child {
  font-weight: 500;
}

.am-product-hero-breadcrumb-sep {
  color: #7A7A7A;
  font-weight: 500;
}

.am-product-hero-name {
  margin: 0 0 24px;
  color: #00263D;
  font-size: clamp(44px, 4.4vw, 58px);
  line-height: .96;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.am-product-hero-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 17px;
}

.am-product-hero-stars {
  display: inline-flex;
  color: #F9B52D;
  font-size: 25px;
  line-height: 1;
  letter-spacing: -0.09em;
}

.am-product-hero-reviews {
  color: #00263D;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
}

.am-product-hero-price {
  margin-bottom: 15px;
  color: #7A7A7A;
  font-size: 18px;
  line-height: 1.45;
}

.am-product-hero-price strong {
  color: #00263D;
  font-weight: 900;
}

.am-product-hero-description {
  max-width: 520px;
  margin: 0 0 22px;
  color: #7A7A7A;
  font-size: 20px;
  line-height: 1.45;
}

.am-product-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.am-product-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 7px 18px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.am-product-hero-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .12);
}

.am-product-hero-btn-primary {
  color: #fff;
  background: #00263D;
  border-color: #00263D;
}

.am-product-hero-btn-primary:hover {
  color: #00263D;
  background: #85D9DE;
  border-color: #85D9DE;
}

.am-product-hero-btn-secondary {
  color: #00263D;
  background: #fff;
  border-color: #00263D;
}

.am-product-hero-btn-secondary:hover {
  color: #00263D;
  background: #85D9DE;
  border-color: #85D9DE;
}

.am-product-hero-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(70px, 1fr));
  gap: 12px 18px;
  margin-bottom: 18px;
  max-width: 420px;
}

.am-product-hero-meta-label {
  display: block;
  margin-bottom: 7px;
  color: #00263D;
  font-size: 11px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: .32em;
  text-transform: uppercase;
}

.am-product-hero-meta-value {
  display: block;
  color: #7A7A7A;
  font-size: 15px;
  line-height: 1.35;
}

.am-product-hero-water p {
  max-width: 520px;
  margin: 0;
  color: #7A7A7A;
  font-size: 16px;
  line-height: 1.45;
}

.am-product-hero-gallery {
  position: absolute;
  right: 7.5%;
  bottom: 38px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.am-product-hero-thumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.am-product-hero-thumb {
  appearance: none;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 3px solid #fff;
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0,0,0,.18);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.am-product-hero-thumb:hover,
.am-product-hero-thumb.is-active {
  transform: translateY(-2px);
  border-color: #85D9DE;
  box-shadow: 0 11px 22px rgba(0,0,0,.22);
}

.am-product-hero-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.am-product-hero-gallery-arrow {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0 0 4px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #00263D;
  font-size: 58px;
  line-height: .5;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0,0,0,.18);
  transition: transform 180ms ease, background-color 180ms ease;
}

.am-product-hero-gallery-arrow:hover {
  background: #00263D;
  transform: translateY(-2px) scale(1.04);
}

@media (max-width: 1180px) {
  .am-product-hero-content {
    width: min(52%, 555px);
  }

  .am-product-hero-content:after {
    right: -145px;
    width: 290px;
  }

  .am-product-hero-description {
    font-size: 18px;
  }

  .am-product-hero-gallery {
    right: 5%;
  }
}

@media (max-width: 1024px) {
  .am-product-hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    border-bottom-width: 2px;
  }

  .am-product-hero-media {
    position: relative;
    order: 2;
    width: 100% !important;
    height: 430px;
  }

  .am-product-hero-content {
    order: 1;
    width: 100%;
    min-height: 0 !important;
  }

  .am-product-hero-content:after {
    display: none;
  }

  .am-product-hero-content-inner {
    padding: 28px 24px 30px;
  }

  .am-product-hero-breadcrumb {
    margin-bottom: 24px;
  }

  .am-product-hero-gallery {
    position: relative;
    order: 3;
    right: auto;
    bottom: auto;
    padding: 18px 18px 24px;
    background: #fff;
  }
}

@media (max-width: 767px) {
  .am-product-hero-name {
    font-size: 40px;
  }

  .am-product-hero-description {
    font-size: 17px;
  }

  .am-product-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .am-product-hero-btn {
    width: 100%;
  }

  .am-product-hero-meta-grid {
    grid-template-columns: 1fr;
  }

  .am-product-hero-media {
    height: 330px;
  }

  .am-product-hero-gallery {
    gap: 10px;
    padding: 14px 10px 20px;
  }

  .am-product-hero-thumbs {
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    max-width: calc(100vw - 120px);
  }

  .am-product-hero-thumb {
    flex: 0 0 auto;
    width: 50px;
    height: 50px;
  }

  .am-product-hero-gallery-arrow {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    font-size: 48px;
  }
}
