.product-page {
  --product-border: #e7e7e7;
  --product-muted: #6f6f73;
  --product-dark: #1a191d;
  background: #fff;
}

.product-container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.product-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 132px;
  padding: 0;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
      background: #00000052;
}

.product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: rgba(10, 10, 12, 0.68);
}

.product-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 2px;
  background: var(--entho-primary-color);
}

.product-hero .product-container {
  position: relative;
  z-index: 1;
}

.product-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--product-muted);
  font-size: 14px;
  font-weight: 500;
}

.product-breadcrumb > span,
.product-breadcrumb .breadcrumb_last {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.product-breadcrumb a {
  color: var(--product-dark);
}

.product-breadcrumb a:hover {
  color: var(--entho-primary-color);
}

.product-hero .product-breadcrumb {
  color: rgba(255, 255, 255, 0.72);
}

.product-hero .product-breadcrumb a {
  color: #fff;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 25px;
  padding: 46px 0 70px;
}

.product-detail,
.collection-main {
  min-width: 0;
}

.product-detail > .product-breadcrumb {
  margin-bottom: 24px;
}

.product-detail-head {
  display: grid;
  grid-template-columns: minmax(0, 48%) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
  margin-bottom: 54px;
}

.product-gallery {
  min-width: 0;
}

.product-main-image {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1.18;
  border: 1px solid var(--product-border);
  background: #fff;
  overflow: hidden;
}

.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.product-thumbs button {
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid var(--product-border);
  background: #fff;
  cursor: pointer;
  overflow: hidden;
}

.product-thumbs button.is-active {
  border-color: var(--entho-primary-color);
}

.product-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-summary {
  padding-top: 8px;
}

.product-kicker,
.product-card-term {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--entho-primary-color);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-summary h1,
.product-summary h2,
.collection-intro h1,
.product-archive-header h1 {
  margin: 0;
  color: var(--product-dark);
  font-family: var(--entho-font-sans);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.12;
}

.product-excerpt {
  margin-top: 22px;
  color: var(--product-muted);
  font-size: 16px;
  line-height: 1.75;
}

.product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 28px;
  padding: 0 28px;
  border: 1px solid var(--entho-primary-color);
  background: var(--entho-primary-color);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-btn:hover {
  background: var(--product-dark);
  border-color: var(--product-dark);
  color: #fff;
}

.product-tabs {
  margin-top: 20px;
}

.product-tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid var(--product-border);
}

.product-tab-nav button {
  min-height: 54px;
  padding: 0 28px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: var(--product-dark);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.product-tab-nav button.is-active {
  border-color: var(--entho-primary-color);
  color: var(--entho-primary-color);
}

.product-tab-panel {
  display: none;
  padding-top: 30px;
}

.product-tab-panel.is-active {
  display: block;
}

.product-content {
  color: var(--product-muted);
  font-size: 16px;
  line-height: 1.8;
}

.product-content h2,
.product-content h3 {
  color: var(--product-dark);
  font-weight: 700;
}

.product-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.product-feature-list li {
  position: relative;
  padding-left: 24px;
  color: var(--product-dark);
  font-weight: 600;
  line-height: 1.6;
}

.product-feature-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--entho-primary-color);
}

.product-spec-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--product-border);
}

.product-spec-table th,
.product-spec-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--product-border);
  text-align: left;
  vertical-align: top;
}

.product-spec-table th {
  width: 34%;
  background: #f7f7f7;
  color: var(--product-dark);
  font-weight: 700;
}

.product-empty-note {
  padding: 22px 24px;
  border: 1px solid var(--product-border);
  background: #fafafa;
  color: var(--product-muted);
}

.product-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product-side-card {
    padding: 15px;
    border: 1px solid var(--product-border);
    background: #fff;
    padding-bottom: 0px;
}

.product-side-card h2 {
    margin: 0 0 10px;
    color: var(--product-dark);
    font-size: 18px;
    font-weight: 700;
}

.product-category-menu,
.product-category-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-category-menu > li + li {
  border-top: 1px solid var(--product-border);
}

.product-category-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    color: var(--product-dark);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
}

.product-category-menu > .menu-item-has-children > a::after,
.product-category-menu > .has-sub > a::after {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-left: 12px;
  border: solid currentColor;
  border-width: 0 1.5px 1.5px 0;
  color: #b9b9b9;
  transform: rotate(45deg);
  transition: transform 220ms ease, color 220ms ease;
}

.product-category-menu > .menu-item-has-children.is-open > a::after,
.product-category-menu > .has-sub.is-open > a::after,
.product-category-menu > .current-menu-ancestor > a::after,
.product-category-menu > .current-menu-parent > a::after,
.product-category-menu > .current-collection-ancestor > a::after,
.product-category-menu > .current-collection-parent > a::after,
.product-category-menu > .current-menu-item > a::after {
  color: var(--entho-primary-color);
  transform: rotate(225deg);
}

.product-category-menu .current-menu-item > a,
.product-category-menu .current-menu-ancestor > a,
.product-category-menu .current-menu-parent > a,
.product-category-menu .current-collection-ancestor > a,
.product-category-menu .current-collection-parent > a,
.product-category-menu a:hover {
  color: var(--entho-primary-color);
}

.product-category-menu .after-menu-image-icons,
.product-category-menu .menu-image-hover-wrapper,
.product-category-menu img.menu-image,
.product-category-menu .menu-image-title-before,
.product-category-menu .menu-image-title-after {
  flex: 0 0 auto;
}

.product-category-menu .after-menu-image-icons,
.product-category-menu img.menu-image {
  margin-right: 10px;
}

.product-category-menu .menu-image-title {
  flex: 1 1 auto;
}

.product-category-menu .sub-menu {
  display: none;
  padding: 0 0 10px 18px;
}

.product-category-menu li.is-open > .sub-menu,
.product-category-menu .current-menu-item > .sub-menu:not(.js-dropdown-ready),
.product-category-menu .current-menu-ancestor > .sub-menu:not(.js-dropdown-ready),
.product-category-menu .current-menu-parent > .sub-menu:not(.js-dropdown-ready),
.product-category-menu .current-collection-ancestor > .sub-menu:not(.js-dropdown-ready),
.product-category-menu .current-collection-parent > .sub-menu:not(.js-dropdown-ready) {
  display: block;
}

.product-category-menu .sub-menu li {
  border-top: 1px solid #f0f0f0;
}

.product-category-menu .sub-menu a {
  padding: 10px 0;
  color: var(--product-muted);
  font-size: 13px;
  font-weight: 500;
}

.product-tax-list ul a {
  padding: 8px 0;
  color: var(--product-muted);
  font-weight: 600;
}

.product-contact-card {
  background: var(--product-dark);
  color: #fff;
}

.product-contact-card span {
  color: var(--entho-primary-color);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-contact-card h2,
.product-contact-card p {
  color: #fff;
}

.product-contact-card p {
  margin: 0;
  line-height: 1.7;
  opacity: 0.82;
}

.product-related {
  margin-top: 64px;
}

.product-related .product-card-body p {
  display: none !important;
}

.product-section-heading {
  margin-bottom: 20px;
}

.product-section-heading span,
.collection-intro span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--entho-primary-color);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-section-heading h2 {
    margin: 0;
    color: var(--product-dark);
    font-size: 18px;
    font-weight: 700;
}

.product-section-heading .product-archive-section-title {
    font-size: 22px;
    line-height: 1.3;
}
.product-card-grid,
.collection-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}
section.product-side-card.product-contact-card {
    padding-bottom: 15px;
}
.product-card {
  border: 1px solid var(--product-border);
  background: #fff;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.product-card:hover {
  border-color: transparent;
  box-shadow: 0 15px 38px rgba(26, 25, 29, 0.11);
  transform: translateY(-3px);
}

.product-card-image {
  display: block;
  aspect-ratio: 1.08;
  overflow: hidden;
  background: #f5f5f5;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.04);
}

.product-card-body {
  padding: 10px;
}

.product-card .product-card-term {
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}
section.collection-section.tcspp {
  margin-top: 40px;
}
.product-card-body h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.product-card-body p {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin: 12px 0 0;
  color: var(--product-muted);
  font-size: 14px;
  line-height: 1.65;
}

.product-card-link {
  display: inline-flex !important;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  color: var(--entho-primary-color);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-card-link i {
  display: inline-block !important;
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border: solid currentColor;
  border-width: 1.5px 1.5px 0 0;
  transform: rotate(45deg);
  transition: transform 220ms ease;
}

.product-card-link:hover i {
  transform: translateX(3px) rotate(45deg);
}

.collection-hero {
  padding-bottom: 0;
}

.collection-intro {
    margin-top: 10px;
}

.collection-header {
  margin-bottom: 24px;
}

.product-archive-header {
  margin-bottom: 24px;
}

.product-archive-header h1 {
  margin-top: 10px;
}

.product-hero .collection-intro h1,
.product-hero .collection-intro p,
.product-hero .collection-description {
  color: #fff;
}

.product-hero .collection-intro h1 {
  max-width: 920px;
  font-size: 42px;
}

.product-hero .collection-intro span {
  margin-bottom: 8px;
  color: #fff;
}

.product-hero .collection-intro p,
.product-hero .collection-description {
  max-width: 920px;
  opacity: 0.84;
}

.collection-intro p,
.collection-description {
  margin-top: 12px;
  color: var(--product-muted);
  font-size: 15px;
  line-height: 1.68;
}

.collection-section + .collection-section {
    margin-top: 0px;
}

.inner-page-content {
  padding: 42px 0 76px;
}

.inner-page-content > *:last-child {
  margin-bottom: 0;
}

.collection-card {
  min-height: 230px;
  background: var(--product-dark);
  overflow: hidden;
}

.collection-card a {
  position: relative;
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10px;
  color: #fff;
  isolation: isolate;
}

.collection-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  transition: transform 420ms ease;
}

.collection-card a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(26, 25, 29, 0.05) 20%, rgba(26, 25, 29, 0.86) 100%);
}

.collection-card span {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.28;
}

.collection-card em {
  margin-top: 10px;
  color: #fff;
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.collection-card:hover img {
  transform: scale(1.05);
}

.product-pagination {
  margin-top: 36px;
}

.product-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-pagination a,
.product-pagination span {
  display: inline-flex;
  min-width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid var(--product-border);
  color: var(--product-dark);
  font-weight: 700;
}

.product-pagination .current,
.product-pagination a:hover {
  border-color: var(--entho-primary-color);
  background: var(--entho-primary-color);
  color: #fff;
}

@media (max-width: 1024px) {
  .product-layout {
    grid-template-columns: 1fr;
  }

  .product-sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .product-container {
    width: calc(100% - 30px);
  }

  .product-hero {
    display: none;
  }

  .product-layout {
    gap: 22px;
    padding: 28px 0 46px;
  }

  .inner-page-content {
    padding: 28px 0 56px;
  }

  .product-detail-head {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }

  .product-summary h1,
  .product-summary h2,
  .collection-intro h1,
  .product-archive-header h1 {
    font-size: 24px;
    line-height: 1.22;
  }

  .product-summary {
    padding-top: 0;
  }

  .product-kicker,
  .product-card-term {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .product-excerpt {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.6;
  }

  .product-btn {
    min-height: 48px;
    margin-top: 20px;
    padding: 0 22px;
  }

  .collection-header {
    margin-bottom: 16px;
  }

  .collection-intro {
    margin-top: 10px;
  }

  .collection-intro p,
  .collection-description {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.58;
  }

  .product-hero .collection-intro {
    margin-top: 14px;
  }

  .product-hero .collection-intro h1 {
    font-size: 24px;
    line-height: 1.18;
  }

  .product-section-heading {
    margin-bottom: 14px;
  }

  .product-section-heading .product-archive-section-title,
  .product-section-heading h2 {
    font-size: 20px;
    line-height: 1.3;
  }

  section.collection-section.tcspp {
    margin-top: 28px;
  }

  .product-tab-nav button {
    flex: 1 1 auto;
    padding: 0 12px;
    font-size: 14px;
  }

  .product-feature-list,
  .product-card-grid,
  .collection-card-grid,
  .product-sidebar {
    grid-template-columns: 1fr;
  }

  .product-feature-list {
    gap: 10px;
    margin-top: 20px;
  }

  .product-tab-panel {
    padding-top: 22px;
  }

  .product-content {
    font-size: 15px;
    line-height: 1.65;
  }

  .product-spec-table,
  .product-spec-table tbody,
  .product-spec-table tr,
  .product-spec-table th,
  .product-spec-table td {
    display: block;
    width: 100%;
  }

  .product-spec-table tr + tr {
    border-top: 1px solid var(--product-border);
  }

  .product-spec-table th,
  .product-spec-table td {
    border-bottom: 0;
    padding: 12px 14px;
  }

  .product-spec-table td {
    padding-top: 0;
  }

  .product-card-body {
    padding: 10px;
  }

  .product-card-body h2 {
    font-size: 17px;
  }

  .product-card-link {
    margin-top: 14px;
    font-size: 12px;
  }

  .collection-card,
  .collection-card a {
    min-height: 190px;
  }

  .collection-card span {
    font-size: 17px;
  }

  .product-side-card {
    padding: 15px;
    padding-bottom: 0;
  }

  section.product-side-card.product-contact-card {
    display: none;
  }
}
