.magter-product-detail__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: 52px;
  align-items: start;
}

.magter-product-detail__gallery .woocommerce-product-gallery {
  width: 100% !important;
  float: none !important;
}

.magter-product-detail__gallery img {
  border-radius: var(--magter-radius);
  background: #f2f6f9;
  box-shadow: 0 18px 54px rgba(7, 31, 58, 0.10);
}

.magter-product-detail__summary {
  position: sticky;
  top: 24px;
  padding: 34px;
  border: 1px solid var(--magter-line);
  border-top: 4px solid var(--magter-blue);
  border-radius: var(--magter-radius);
  background: var(--magter-white);
  box-shadow: var(--magter-shadow);
}

.magter-product-hotline {
  display: grid;
  gap: 3px;
  margin-top: 26px;
  padding: 18px 20px;
  border-left: 4px solid var(--magter-orange);
  background: #f2f7fb;
}

.magter-product-hotline span,
.magter-product-hotline small {
  color: var(--magter-muted);
}

.magter-product-hotline strong {
  font-size: 1.2rem;
}

.magter-product-detail__content {
  max-width: 900px;
  margin-bottom: 32px;
}

.magter-single-product .woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.magter-single-product .woocommerce ul.products::before,
.magter-single-product .woocommerce ul.products::after {
  display: none;
}

.magter-single-product .woocommerce ul.products li.product {
  width: auto;
  margin: 0;
}

@media (max-width: 900px) {
  .magter-product-detail__hero {
    grid-template-columns: 1fr;
  }

  .magter-product-detail__summary {
    position: static;
  }

  .magter-single-product .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .magter-single-product .woocommerce ul.products {
    grid-template-columns: 1fr;
  }

  .magter-product-detail__summary {
    padding: 24px 20px;
  }
}
