.product-page {
  width: 100%;
  background: var(--d);
  color: var(--l);
}

.product-page .container {
  position: relative;
}

.product-hero {
  position: relative;
  width: 100%;
  min-height: 135svh;
  overflow: hidden;
}

.product-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.42;
}

.product-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}

.product-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.18);
}

.product-hero .container {
  padding-top: 32svh;
}

.product-hero-header h2 {
  position: relative;
  color: var(--l);
}

.product-content {
  position: relative;
  padding: 4rem 0 8rem;
}

.product-content,
.product-details-1 .container,
.product-details-2 .container {
  display: flex;
  gap: 2rem;
}

.product-col:nth-child(1) {
  flex: 2;
}

.product-col:nth-child(2) {
  flex: 3;
}

.product-content .product-col:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.product-price {
  margin-top: 1rem;
}

.product-content-wrapper {
  display: block;
}

.product-meta .product-row {
  display: flex;
  gap: 2rem;
}

.product-meta .product-sub-col {
  flex: 1;
}

.product-meta .product-sub-col p:nth-child(1) {
  margin-bottom: 1rem;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.product-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  border: 1px solid currentColor;
  padding: 0.9rem 1.4rem;
  font-family: var(--f-nm);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  color: inherit;
}

.product-button--ghost {
  opacity: 0.7;
}

.product-details {
  position: relative;
  width: 100%;
  padding-top: 4rem;
  padding-bottom: 6rem;
  overflow: hidden;
  background-color: var(--l);
  color: var(--d);
}

.product-details-img {
  width: 75%;
  margin-top: 4rem;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.product-details-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}

.product-details-2 .product-meta {
  margin-bottom: 4rem;
  color: var(--d);
}

.product-details-2 .product-details-img {
  margin-top: 8rem;
  margin-bottom: 4rem;
}

@media (max-width: 1000px) {
  .product-content,
  .product-details-1 .container,
  .product-details-2 .container,
  .product-meta .product-row {
    flex-direction: column;
    gap: 4rem;
  }

  .product-details-img {
    width: 100%;
  }
}
