/* =========================================================
PRODUCT DETAIL
========================================================= */
.product-detail-page {
  background: #fff;
  color: #171717;
  overflow: hidden;
}
.product-detail-page a {
  text-decoration: none;
}
.product-detail-page button {
  font-family: var(--heading-font);
}

/* PRODUCT DETAIL SECTION SPACING */
.product-detail-overview,
.product-detail-profile,
.product-detail-considerations,
.product-detail-enquiry,
.related-products,
.product-detail-final {
  padding: var(--dvs-section-padding) 0;
}
/* =========================================================
HERO
========================================================= */
.product-detail-hero {
  position: relative;
  min-height: 760px;
  background: #171717;
  color: #fff;
  overflow: hidden;
}
.product-detail-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 90px 90px;
  animation: productGridMove 22s linear infinite;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), transparent 95%);
}
.product-detail-hero-circle {
  position: absolute;
  border: 1px solid rgba(238, 121, 31, 0.13);
  border-radius: 50%;
  pointer-events: none;
}
.product-detail-hero-circle-one {
  width: 850px;
  height: 850px;
  right: -410px;
  top: -450px;
  animation: productCircleFloat 10s ease-in-out infinite;
}
.product-detail-hero-circle-two {
  width: 520px;
  height: 520px;
  left: -390px;
  bottom: -390px;
  border-color: rgba(255, 255, 255, 0.05);
  animation: productCircleFloat 13s ease-in-out infinite reverse;
}
.product-detail-hero .dvs-layout-container {
  position: relative;
  z-index: 2;
  padding-top: 125px;
  padding-bottom: 85px;
}
.product-detail-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 55px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 10px;
}
.product-detail-breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
  transition: 0.3s ease;
}
.product-detail-breadcrumb a:hover {
  color: #ee791f;
}
.product-detail-breadcrumb strong {
  color: #ee791f;
  font-weight: 700;
}
.product-detail-hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 85px;
  align-items: center;
}
.product-detail-hero-image-column {
  min-width: 0;
}
.product-detail-hero-image {
  position: relative;
  height: 535px;
  background: #252525;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.35);
}
.product-detail-hero-image::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.09),
    transparent 35%,
    rgba(0, 0, 0, 0.3)
  );
  pointer-events: none;
}
.product-detail-hero-image::after {
  content: "";
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  pointer-events: none;
}
.product-detail-image-border {
  position: absolute;
  z-index: 4;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
}
.product-detail-hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition:
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1s ease;
}
.product-detail-hero-image:hover img {
  transform: scale(1.08);
  filter: saturate(1.12);
}
.product-detail-image-overlay {
  position: absolute;
  z-index: 4;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  pointer-events: none;
}
.product-detail-hero-image:hover .product-detail-image-overlay {
  animation: productImageShine 1.2s ease;
}
.product-detail-image-number {
  position: absolute;
  z-index: 5;
  top: 35px;
  left: 35px;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--heading-font);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
}
.product-detail-image-category {
  position: absolute;
  z-index: 5;
  bottom: 34px;
  left: 35px;
  color: #fff;
  font-family: var(--heading-font);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.product-detail-image-corner {
  position: absolute;
  z-index: 5;
  width: 35px;
  height: 35px;
  border-color: #ee791f;
  pointer-events: none;
}
.product-detail-image-corner-top {
  top: 28px;
  right: 28px;
  border-top: 2px solid #ee791f;
  border-right: 2px solid #ee791f;
}
.product-detail-image-corner-bottom {
  bottom: 28px;
  right: 28px;
  border-bottom: 2px solid #ee791f;
  border-right: 2px solid #ee791f;
}
.product-detail-image-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.28);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.7px;
}
.product-detail-image-caption span:first-child {
  color: #ee791f;
}
.product-detail-hero-copy {
  position: relative;
  max-width: 650px;
}
.product-detail-hero-index {
  position: absolute;
  right: 0;
  top: -10px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: rgba(255, 255, 255, 0.28);
  font-family: var(--heading-font);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 2px;
}
.product-detail-hero-index strong {
  margin-top: 3px;
  color: #ee791f;
  font-size: 45px;
  line-height: 1;
  letter-spacing: -0.06em;
}
.product-detail-eyebrow {
  margin: 0 0 19px;
  color: #ee791f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.product-detail-hero-copy h1 {
  max-width: 650px;
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(50px, 5.8vw, 85px);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.075em;
}
.product-detail-title-line {
  width: 80px;
  height: 2px;
  margin: 30px 0;
  background: #ee791f;
}
.product-detail-lead {
  max-width: 600px;
  margin: 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 14px;
  line-height: 1.9;
}
.product-detail-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 35px;
}
.product-detail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 17px 25px;
  background: #ee791f;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.35s ease;
  border-radius: 8px;
}
.product-detail-button i {
  transition: 0.35s ease;
}
.product-detail-button:hover {
  background: #fff;
  color: #171717;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}
.product-detail-button:hover i {
  color: #ee791f;
  transform: translateX(5px);
}
.product-detail-scroll-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.product-detail-scroll-link span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 37px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #ee791f;
  transition: 0.35s ease;
}
.product-detail-scroll-link:hover {
  color: #fff;
}
.product-detail-scroll-link:hover span {
  background: #ee791f;
  border-color: #ee791f;
  color: #fff;
  transform: translateY(4px);
}
.product-detail-hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 55px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.product-detail-hero-meta > div {
  min-height: 85px;
  padding: 17px 18px 15px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.product-detail-hero-meta > div:not(:first-child) {
  padding-left: 18px;
}
.product-detail-hero-meta > div:last-child {
  border-right: 0;
}
.product-detail-hero-meta span {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.28);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 1.5px;
}
.product-detail-hero-meta strong {
  display: block;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}
/* =========================================================
OVERVIEW
========================================================= */
.product-detail-overview {
  
  background: #fff;
}
.product-detail-overview-top {
  display: grid;
  grid-template-columns: 70px minmax(0, 1.5fr) minmax(250px, 0.6fr);
  gap: 45px;
  align-items: start;
}
.product-detail-section-index {
  padding-top: 5px;
}
.product-detail-section-index span {
  display: block;
  margin-bottom: 11px;
  color: #ee791f;
  font-size: 11px;
  font-weight: 800;
}
.product-detail-section-index p {
  margin: 0;
  color: #999;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 1.5px;
  line-height: 1.7;
}
.product-detail-label {
  margin: 0 0 17px;
  color: #ee791f;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.product-detail-overview-heading h2 {
  max-width: 800px;
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(43px, 4.7vw, 69px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.07em;
}
.product-detail-overview-heading h2 span,
.product-detail-profile-heading h2 span,
.product-detail-considerations-heading h2 span,
.product-detail-enquiry-content h2 span,
.related-products-heading h2 span,
.product-detail-final h2 span {
  color: #ee791f;
}
.product-detail-overview-side {
  padding-top: 27px;
}
.product-detail-overview-side p {
  margin: 0;
  color: #737373;
  font-size: 12px;
  line-height: 1.8;
}
.product-detail-overview-body {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(240px, 0.65fr);
  gap: 100px;
  margin-top: 75px;
  margin-left: 115px;
}
.product-detail-overview-copy {
  max-width: 850px;
}
.product-detail-overview-copy > p {
  margin: 0;
  color: #555;
  font-size: 17px;
  line-height: 1.9;
}
.product-detail-overview-extra {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-detail-overview-extra p {
  margin: 25px 0 0;
  color: #737373;
  font-size: 14px;
  line-height: 1.9;
}
.product-detail-read-more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 27px;
  padding: 0;
  border: 0;
  background: none;
  color: #ee791f;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.7px;
  cursor: pointer;
}
.product-detail-read-more i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(238, 121, 31, 0.35);
  border-radius: 50%;
  font-size: 10px;
  transition: 0.35s ease;
}
.product-detail-read-more:hover i {
  background: #ee791f;
  color: #fff;
  transform: translateY(3px);
}
.product-detail-read-more.active i {
  background: #ee791f;
  color: #fff;
  transform: rotate(180deg);
}
.product-detail-overview-aside {
  padding-left: 30px;
  border-left: 1px solid #ddd;
}
.product-detail-aside-line {
  width: 45px;
  height: 2px;
  margin-bottom: 22px;
  background: #ee791f;
}
.product-detail-overview-aside > span {
  display: block;
  color: #999;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.7px;
}
.product-detail-overview-aside > strong {
  display: block;
  margin-top: 13px;
  font-family: var(--heading-font);
  font-size: 22px;
  line-height: 1.15;
}
.product-detail-overview-aside > p {
  margin: 18px 0;
  color: #777;
  font-size: 11px;
  line-height: 1.7;
}
.product-detail-overview-aside > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #171717;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.product-detail-overview-aside > a i {
  color: #ee791f;
  transition: 0.3s;
}
.product-detail-overview-aside > a:hover i {
  transform: translateX(5px);
}
/* =========================================================
PROFILE
========================================================= */
.product-detail-profile {

  background: #f5f5f3;
}
.product-detail-profile-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 55px;
}
.product-detail-profile-heading h2 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(43px, 4.7vw, 68px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.07em;
}
.product-detail-profile-heading > p {
  max-width: 450px;
  margin: 0;
  color: #707070;
  font-size: 12px;
  line-height: 1.8;
}
.product-detail-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.product-detail-profile-box {
  position: relative;
  padding: 42px;
  background: #fff;
  border: 1px solid #e3e3df;
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease;
}
.product-detail-profile-box.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.product-detail-profile-box:nth-child(2) {
  transition-delay: 0.12s;
}
.product-detail-profile-box:hover {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.07);
}
.product-detail-profile-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #ee791f;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-detail-profile-box:hover::before {
  transform: scaleX(1);
}
.product-detail-profile-box-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.product-detail-box-index {
  display: block;
  margin-bottom: 10px;
  color: #ee791f;
  font-size: 10px;
  font-weight: 800;
}
.product-detail-profile-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid #ddd;
  border-radius: 50%;
  color: #ee791f;
  transition: 0.35s ease;
}
.product-detail-profile-box:hover .product-detail-profile-icon {
  background: #ee791f;
  border-color: #ee791f;
  color: #fff;
  transform: rotate(-8deg);
}
.product-detail-profile-box h3 {
  margin: 0 0 30px;
  font-family: var(--heading-font);
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.product-detail-expand-list {
  border-top: 1px solid #ddd;
}
.product-detail-expand-item {
  border-bottom: 1px solid #ddd;
}
.product-detail-expand-header {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  gap: 17px;
  align-items: center;
  padding: 22px 0;
}
.product-detail-expand-number {
  color: #ee791f;
  font-size: 9px;
  font-weight: 800;
}
.product-detail-expand-title h4 {
  margin: 0 0 5px;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 700;
}
.product-detail-expand-title p {
  margin: 0;
  color: #999;
  font-size: 10px;
  line-height: 1.5;
}
.product-detail-item-read {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0;
  border: 0;
  background: none;
  color: #999;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.5px;
  cursor: pointer;
  white-space: nowrap;
}
.product-detail-item-read i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid #ddd;
  border-radius: 50%;
  font-size: 9px;
  transition: 0.35s ease;
}
.product-detail-item-read:hover {
  color: #ee791f;
}
.product-detail-item-read:hover i {
  border-color: #ee791f;
  color: #ee791f;
  transform: translateY(3px);
}
.product-detail-item-read.active {
  color: #ee791f;
}
.product-detail-item-read.active i {
  background: #ee791f;
  border-color: #ee791f;
  color: #fff;
  transform: rotate(180deg);
}
.product-detail-expand-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-detail-expand-body p {
  max-width: 720px;
  margin: 0;
  padding: 0 0 20px 57px;
  color: #737373;
  font-size: 11px;
  line-height: 1.85;
}
.product-detail-expand-body a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px 57px;
  color: #171717;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.product-detail-expand-body a i {
  color: #ee791f;
  transition: 0.3s;
}
.product-detail-expand-body a:hover i {
  transform: translateX(4px);
}
/* =========================================================
WHERE IT FITS
========================================================= */
.product-detail-considerations {
  position: relative;
  
  background: #171717;
  color: #fff;
  overflow: hidden;
}
.product-detail-considerations-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.8), transparent 85%);
}
.product-detail-considerations-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}
.product-detail-considerations-heading {
  position: sticky;
  top: 130px;
  height: max-content;
}
.product-detail-considerations-heading h2 {
  max-width: 550px;
  margin: 0 0 25px;
  font-family: var(--heading-font);
  font-size: clamp(42px, 4.5vw, 65px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.07em;
}
.product-detail-considerations-heading > p:last-child {
  max-width: 440px;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  line-height: 1.9;
}
.product-detail-considerations-list {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}
.product-detail-consideration {
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}
.product-detail-consideration-header {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) auto;
  gap: 25px;
  align-items: center;
  padding: 31px 0;
}
.product-detail-consideration-header > span {
  color: #ee791f;
  font-size: 10px;
  font-weight: 800;
}
.product-detail-consideration-header h3 {
  margin: 0 0 7px;
  font-family: var(--heading-font);
  font-size: 19px;
  font-weight: 700;
}
.product-detail-consideration-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  line-height: 1.6;
}
.product-detail-consideration .product-detail-item-read {
  color: rgba(255, 255, 255, 0.42);
}
.product-detail-consideration .product-detail-item-read i {
  border-color: rgba(255, 255, 255, 0.2);
}
.product-detail-consideration .product-detail-item-read:hover {
  color: #ee791f;
}
.product-detail-consideration-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-detail-consideration-body p {
  max-width: 720px;
  margin: 0;
  padding: 0 0 20px 75px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  line-height: 1.9;
}
.product-detail-consideration-body a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 28px 75px;
  color: #ee791f;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.product-detail-consideration-body a i {
  transition: 0.3s;
}
.product-detail-consideration-body a:hover i {
  transform: translateX(5px);
}
.product-detail-consideration.active .product-detail-item-read {
  color: #ee791f;
}
.product-detail-consideration.active .product-detail-item-read i {
  background: #ee791f;
  border-color: #ee791f;
  color: #fff;
  transform: rotate(180deg);
}
/* =========================================================
ENQUIRY
========================================================= */
.product-detail-enquiry {
  position: relative;
  
  background: #202020;
  color: #fff;
  overflow: hidden;
}
.product-detail-enquiry-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  right: -400px;
  top: -400px;
  border: 1px solid rgba(238, 121, 31, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 100px rgba(238, 121, 31, 0.04);
}
.product-detail-enquiry-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) 180px;
  gap: 45px;
  align-items: center;
}
.product-detail-enquiry-number {
  color: #ee791f;
  font-size: 10px;
  font-weight: 800;
}
.product-detail-enquiry-content h2 {
  max-width: 850px;
  margin: 0 0 20px;
  font-family: var(--heading-font);
  font-size: clamp(40px, 4.7vw, 67px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.07em;
}
.product-detail-enquiry-content > p:not(.product-detail-eyebrow) {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  line-height: 1.8;
}
.product-detail-enquiry-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.product-detail-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
}
.product-detail-phone i {
  color: #ee791f;
}
.product-detail-enquiry-mark {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  color: rgba(255, 255, 255, 0.18);
  font-family: var(--heading-font);
}
.product-detail-enquiry-mark span:first-child {
  font-size: 85px;
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.09em;
}
.product-detail-enquiry-mark span:last-child {
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 2px;
}
/* =========================================================
RELATED PRODUCTS
========================================================= */
.related-products {
  position: relative;
 
  background: #fff;
}
.related-products-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 60px;
}
.related-products-heading h2 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(45px, 4.7vw, 68px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.075em;
}
.related-products-heading-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
}
.related-products-heading-side p {
  max-width: 330px;
  margin: 0;
  color: #777;
  font-size: 11px;
  line-height: 1.7;
  text-align: right;
}
.related-products-heading-side a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #171717;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.related-products-heading-side a i {
  color: #ee791f;
  transition: 0.3s;
}
.related-products-heading-side a:hover i {
  transform: translateX(5px);
}
.premium-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.premium-related-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 590px;
  background: #171717;
  color: #fff;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.9s ease var(--card-delay),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) var(--card-delay),
    box-shadow 0.5s ease;
  border-radius: 20px;
}
.premium-related-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.premium-related-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 75px rgba(0, 0, 0, 0.2);
}
.premium-related-card-number {
  position: absolute;
  z-index: 8;
  top: 22px;
  right: 22px;
  color: #ee791f;
  font-family: var(--heading-font);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
}
.premium-related-image {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: #292929;
}
.premium-related-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition:
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.8s ease;
}
.premium-related-card:hover .premium-related-image img {
  transform: scale(1.1);
  filter: saturate(1.12);
}
.premium-related-image-overlay {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35),
    transparent 40%,
    rgba(0, 0, 0, 0.65)
  );
}
.premium-related-image-grid {
  position: absolute;
  z-index: 3;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 45px 45px;
  opacity: 0.4;
  transition: 0.5s;
}
.premium-related-card:hover .premium-related-image-grid {
  opacity: 0.7;
  transform: scale(1.05);
}
.premium-related-category {
  position: absolute;
  z-index: 5;
  left: 25px;
  bottom: 23px;
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}
.premium-related-open {
  position: absolute;
  z-index: 6;
  right: 22px;
  bottom: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #ee791f;
  transition: 0.4s ease;
}
.premium-related-card:hover .premium-related-open {
  background: #ee791f;
  border-color: #ee791f;
  color: #fff;
  transform: rotate(45deg);
}
.premium-related-image-line {
  position: absolute;
  z-index: 6;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #ee791f;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.premium-related-card:hover .premium-related-image-line {
  transform: scaleX(1);
}
.premium-related-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 27px 28px 25px;
}
.premium-related-top {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 1.5px;
}
.premium-related-top span:last-child {
  color: #ee791f;
}
.premium-related-content h3 {
  margin: 25px 0 13px;
  font-family: var(--heading-font);
  font-size: 27px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.045em;
}
.premium-related-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.43);
  font-size: 11px;
  line-height: 1.75;
}
.premium-related-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.premium-related-bottom > span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.5px;
}
.premium-related-bottom > div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #ee791f;
  transition: 0.35s ease;
}
.premium-related-card:hover .premium-related-bottom > div {
  background: #ee791f;
  border-color: #ee791f;
  color: #fff;
  transform: translateX(5px);
}
/* =========================================================
FINAL
========================================================= */
.product-detail-final {
  position: relative;
  
  background: #ee791f;
  color: #fff;
  overflow: hidden;
}
.product-detail-final-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(23, 23, 23, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 23, 0.08) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: 0.5;
}
.product-detail-final-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.product-detail-final .product-detail-label {
  color: #171717;
}
.product-detail-final h2 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(43px, 5vw, 72px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.075em;
}
.product-detail-final h2 span {
  color: #171717;
}
.product-detail-final-button {
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
  padding: 18px 27px;
  background: #171717;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.35s ease;
}
.product-detail-final-button i {
  color: #ee791f;
  transition: 0.35s ease;
}
.product-detail-final-button:hover {
  background: #fff;
  color: #171717;
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.product-detail-final-button:hover i {
  transform: translateX(5px);
}
/* =========================================================
KEYFRAMES
========================================================= */
@keyframes productGridMove {
  from {
    background-position:
      0 0,
      0 0;
  }
  to {
    background-position:
      90px 90px,
      90px 90px;
  }
}
@keyframes productCircleFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-15px, 20px, 0) scale(1.025);
  }
}
@keyframes productImageShine {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}
/* =========================================================
LARGE TABLET
========================================================= */
@media (max-width: 1100px) {
  .product-detail-hero-content {
    gap: 55px;
  }
  .product-detail-overview-body {
    margin-left: 0;
    gap: 60px;
  }
  .product-detail-considerations-layout {
    gap: 60px;
  }
}
/* =========================================================
TABLET
========================================================= */
@media (max-width: 991px) {
  .product-detail-hero {
    min-height: auto;
  }
  .product-detail-hero .dvs-layout-container {
    padding-top: 120px;
    padding-bottom: 75px;
  }
  .product-detail-hero-content {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .product-detail-hero-image {
    height: 480px;
  }
  .product-detail-hero-copy {
    max-width: none;
  }
  .product-detail-hero-copy h1 {
    max-width: 800px;
  }
  
  .product-detail-overview-top {
    grid-template-columns: 55px 1fr;
    gap: 30px;
  }
  .product-detail-overview-side {
    grid-column: 2;
    padding-top: 0;
    max-width: 500px;
  }
  .product-detail-overview-body {
    grid-template-columns: 1fr;
    margin-top: 55px;
    gap: 45px;
  }
  .product-detail-overview-aside {
    padding-left: 0;
    padding-top: 30px;
    border-left: 0;
    border-top: 1px solid #ddd;
  }
  
  .product-detail-profile-heading {
    display: block;
  }
  .product-detail-profile-heading > p {
    margin-top: 25px;
  }
  .product-detail-profile-grid {
    grid-template-columns: 1fr;
  }
  
  .product-detail-considerations-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .product-detail-considerations-heading {
    position: static;
  }
  
  .product-detail-enquiry-inner {
    grid-template-columns: 45px 1fr;
  }
  .product-detail-enquiry-mark {
    display: none;
  }
  .premium-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .premium-related-card:last-child {
    grid-column: 1/-1;
    max-width: calc(50% - 10px);
  }
  
}
/* =========================================================
MOBILE
========================================================= */
@media (max-width: 767px) {
  .product-detail-hero .dvs-layout-container {
    padding-top: 105px;
    padding-bottom: 65px;
  }
  .product-detail-breadcrumb {
    margin-bottom: 38px;
    font-size: 9px;
  }
  .product-detail-hero-content {
    gap: 40px;
  }
  .product-detail-hero-image {
    height: 350px;
  }
  .product-detail-image-border {
    inset: 12px;
  }
  .product-detail-image-number {
    top: 25px;
    left: 25px;
  }
  .product-detail-image-category {
    left: 25px;
    bottom: 25px;
  }
  .product-detail-image-corner-top {
    top: 20px;
    right: 20px;
  }
  .product-detail-image-corner-bottom {
    bottom: 20px;
    right: 20px;
  }
  .product-detail-image-caption {
    font-size: 7px;
  }
  .product-detail-hero-index {
    display: none;
  }
  .product-detail-hero-copy h1 {
    font-size: 45px;
    letter-spacing: -0.06em;
  }
  .product-detail-lead {
    font-size: 13px;
  }
  .product-detail-hero-actions {
    display: block;
  }
  .product-detail-button {
    width: 100%;
    text-align: center;
  }
  .product-detail-scroll-link {
    margin-top: 22px;
  }
  .product-detail-hero-meta {
    margin-top: 40px;
  }
  .product-detail-hero-meta > div {
    min-height: 75px;
  }
  .product-detail-hero-meta strong {
    font-size: 9px;
  }
  
  .product-detail-overview-top {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .product-detail-section-index {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .product-detail-section-index span {
    margin: 0;
  }
  .product-detail-section-index p {
    line-height: 1;
  }
  .product-detail-overview-side {
    grid-column: auto;
  }
  .product-detail-overview-heading h2 {
    font-size: 39px;
  }
  .product-detail-overview-body {
    margin-top: 40px;
  }
  .product-detail-overview-copy > p {
    font-size: 14px;
    line-height: 1.85;
  }
  
  .product-detail-profile-heading h2 {
    font-size: 40px;
  }
  .product-detail-profile-grid {
    gap: 15px;
  }
  .product-detail-profile-box {
    padding: 27px 20px;
  }
  .product-detail-profile-box h3 {
    font-size: 23px;
    margin-bottom: 25px;
  }
  .product-detail-expand-header {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 12px;
    position: relative;
    padding: 20px 0;
  }
  .product-detail-expand-title {
    padding-right: 40px;
  }
  .product-detail-expand-title h4 {
    font-size: 14px;
  }
  .product-detail-expand-title p {
    font-size: 9px;
  }
  .product-detail-item-read {
    position: absolute;
    right: 0;
    top: 18px;
  }
  .product-detail-item-read span {
    display: none;
  }
  .product-detail-item-read i {
    width: 34px;
    height: 34px;
  }
  .product-detail-expand-body p {
    padding-left: 42px;
    font-size: 10px;
  }
  .product-detail-expand-body a {
    margin-left: 42px;
  }
 
  .product-detail-considerations-heading h2 {
    font-size: 40px;
  }
  .product-detail-considerations-heading > p:last-child {
    font-size: 11px;
  }
  .product-detail-consideration-header {
    grid-template-columns: 35px minmax(0, 1fr);
    gap: 15px;
    position: relative;
    padding: 24px 0;
  }
  .product-detail-consideration-header > div {
    padding-right: 45px;
  }
  .product-detail-consideration-header h3 {
    font-size: 16px;
  }
  .product-detail-consideration-header p {
    font-size: 10px;
  }
  .product-detail-consideration-header .product-detail-item-read {
    position: absolute;
    right: 0;
    top: 25px;
  }
  .product-detail-consideration-body p {
    padding-left: 50px;
    font-size: 10px;
  }
  .product-detail-consideration-body a {
    margin-left: 50px;
  }
 
  .product-detail-enquiry-inner {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .product-detail-enquiry-number {
    display: none;
  }
  .product-detail-enquiry-content h2 {
    font-size: 39px;
  }
  .product-detail-enquiry-actions {
    display: block;
  }
  .product-detail-enquiry-actions .product-detail-button {
    width: 100%;
  }
  .product-detail-phone {
    margin-top: 22px;
  }
 
  .related-products-heading {
    display: block;
    margin-bottom: 40px;
  }
  .related-products-heading h2 {
    font-size: 43px;
  }
  .related-products-heading-side {
    display: block;
    margin-top: 25px;
  }
  .related-products-heading-side p {
    text-align: left;
  }
  .related-products-heading-side a {
    margin-top: 17px;
  }
  .premium-related-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .premium-related-card,
  .premium-related-card:last-child {
    grid-column: auto;
    max-width: none;
    min-height: 520px;
  }
  .premium-related-image {
    height: 280px;
  }
  
  .product-detail-final-inner {
    display: block;
  }
  .product-detail-final h2 {
    font-size: 42px;
  }
  .product-detail-final-button {
    width: 100%;
    justify-content: center;
    margin-top: 30px;
  }
}
/* =========================================================
SMALL MOBILE
========================================================= */
@media (max-width: 480px) {
  .product-detail-hero-copy h1 {
    font-size: 39px;
  }
  .product-detail-hero-meta {
    grid-template-columns: 1fr;
  }
  .product-detail-hero-meta > div,
  .product-detail-hero-meta > div:not(:first-child) {
    padding: 13px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .product-detail-hero-meta > div:last-child {
    border-bottom: 0;
  }
  .product-detail-overview-heading h2 {
    font-size: 35px;
  }
  .product-detail-overview-aside > strong {
    font-size: 20px;
  }
  .product-detail-profile-heading h2 {
    font-size: 36px;
  }
  .product-detail-profile-box {
    padding: 25px 17px;
  }
  .product-detail-considerations-heading h2 {
    font-size: 36px;
  }
  .product-detail-enquiry-content h2 {
    font-size: 36px;
  }
  .product-detail-final h2 {
    font-size: 36px;
  }
  .premium-related-content {
    padding: 24px 20px 22px;
  }
  .premium-related-content h3 {
    font-size: 24px;
  }
}
/* =========================================================
REDUCED MOTION
========================================================= */
@media (prefers-reduced-motion: reduce) {
  .product-detail-hero-grid,
  .product-detail-hero-circle,
  .product-detail-hero-image img,
  .premium-related-image img {
    animation: none !important;
    transition: none !important;
  }
}
