﻿.premium-product-detail .pd-page {
  --pd-ink: #26313d;
  --pd-muted: #667689;
  --pd-line: #dfe7ed;
  --pd-soft: #f3f7f9;
  --pd-green: #e5141f;
  --pd-green-dark: #b5121b;
  background: #f7f9fa;
  color: var(--pd-ink);
}

.pd-breadcrumb-bar {
  padding: 24px 0 8px;
}

.pd-breadcrumb-bar .breadcrumb {
  margin: 0;
  color: var(--pd-muted);
  font-size: 13px;
}

.pd-breadcrumb-bar .breadcrumb strong {
  max-width: 380px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pd-hero {
  padding: 24px 0 72px;
}

.pd-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, .92fr);
  gap: 64px;
  align-items: start;
}

.pd-gallery,
.pd-summary,
.pd-description-card,
.pd-quote-form {
  border: 1px solid var(--pd-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(31, 45, 60, .08);
}

.pd-gallery {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 20px;
  border-color: transparent;
  background: #fff;
}

.pd-gallery::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: -55%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg 245deg,
    rgba(229, 20, 31, .12) 270deg,
    #e5141f 305deg,
    rgba(229, 20, 31, .18) 338deg,
    transparent 360deg
  );
  animation: pd-gallery-border-spin 7s linear infinite;
}

.pd-gallery::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 2px;
  border-radius: 22px;
  background: #fff;
}

.pd-gallery:hover::before {
  animation-duration: 4.5s;
}

.pd-media-column {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 18px;
}

.pd-inline-usage {
  padding: 16px;
  border: 1px solid var(--pd-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(31, 45, 60, .07);
}

.pd-inline-usage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.pd-inline-usage-grid article {
  min-height: 82px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 12px 8px;
  border: 1px solid #e6ecf0;
  border-radius: 14px;
  background: #f8fafb;
  color: var(--pd-ink);
  text-align: center;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.pd-inline-usage-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(229, 20, 31, .45);
  background: rgba(229, 20, 31, .07);
}

.pd-inline-usage-grid i { color: var(--pd-green-dark); font-size: 18px; }
.pd-inline-usage-grid strong { font-size: 12px; }

.pd-inline-description {
  padding: 24px 26px;
  border: 1px solid var(--pd-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(31, 45, 60, .07);
}

.pd-inline-description p {
  margin: 0;
  color: #526477;
  font-size: 15px;
  line-height: 1.8;
}

.pd-image-stage {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid #edf1f4;
  background: #fff;
  cursor: zoom-in;
}

.pd-main-image {
  width: 100%;
  height: 540px;
  object-fit: contain;
  padding: 38px;
  background: #fff;
  transform-origin: var(--pd-zoom-x, 50%) var(--pd-zoom-y, 50%);
  transition: transform .28s ease, filter .28s ease;
  will-change: transform;
}

.pd-image-stage:hover .pd-main-image,
.pd-image-stage.is-zooming .pd-main-image {
  transform: scale(1.85);
}

.pd-image-stage:hover,
.pd-image-stage.is-zooming {
  cursor: zoom-out;
}

.pd-image-stage:hover::after,
.pd-image-stage.is-zooming::after {
  content: "\f002";
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(229, 20, 31, .45);
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: var(--pd-green-dark);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(31, 45, 60, .14);
}

@keyframes pd-gallery-border-spin {
  to { transform: rotate(1turn); }
}

.pd-placeholder {
  display: grid;
  place-items: center;
  color: var(--pd-muted);
  font-weight: 800;
}

.pd-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--pd-line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  color: var(--pd-ink);
  cursor: pointer;
  transform: translateY(-50%);
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}

.pd-gallery-arrow:hover {
  border-color: var(--pd-green);
  color: var(--pd-green-dark);
  transform: translateY(-50%) scale(1.04);
}

.pd-gallery-arrow.is-prev { left: 18px; }
.pd-gallery-arrow.is-next { right: 18px; }

.pd-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.pd-thumbs .gallery-thumb {
  flex: 0 0 76px;
  width: 76px;
  height: 76px;
  padding: 5px;
  border: 1px solid var(--pd-line);
  border-radius: 12px;
  background: #fff;
}

.pd-thumbs .gallery-thumb.active { border-color: var(--pd-green); }
.pd-thumbs img { width: 100%; height: 100%; object-fit: contain; }

.pd-summary {
  padding: 38px;
}

.pd-category-line {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 20px;
}

.pd-category-line span {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(229, 20, 31, .11);
  color: var(--pd-green-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .02em;
}

.pd-summary h1 {
  margin: 0 0 24px;
  color: var(--pd-ink);
  font-size: clamp(28px, 2.55vw, 40px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.pd-lead {
  margin: 0;
  color: var(--pd-muted);
  font-size: 17px;
  line-height: 1.75;
}

.pd-summary-panels {
  display: grid;
  gap: 14px;
  margin: 0 0 26px;
}

.pd-summary-panel {
  overflow: hidden;
  border: 1px solid rgba(229, 20, 31, .42);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(31, 45, 60, .07);
}

.pd-summary-panel-title {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 22px;
  color: var(--pd-ink);
  font-size: 16px;
  font-weight: 900;
}

.pd-summary-panel-title span { display: inline-flex; align-items: center; gap: 10px; }
.pd-summary-panel-title span i { color: var(--pd-green-dark); font-size: 19px; }

.pd-summary-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--pd-line);
}

.pd-summary-specs > div {
  min-width: 0;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 5px 12px;
  padding: 19px 20px;
  border-right: 1px solid #edf1f4;
  border-bottom: 1px solid #edf1f4;
}

.pd-summary-specs > div:nth-child(even) { border-right: 0; }
.pd-summary-specs > div:nth-last-child(-n + 2) { border-bottom: 0; }
.pd-summary-specs i { grid-row: 1 / 3; align-self: center; color: var(--pd-green-dark); font-size: 20px; }
.pd-summary-specs span,
.pd-summary-shipping > div > span { color: var(--pd-muted); font-size: 11px; font-weight: 800; }
.pd-summary-specs strong,
.pd-summary-shipping strong { min-width: 0; overflow-wrap: anywhere; color: var(--pd-ink); font-size: 14px; line-height: 1.35; font-weight: 900; }

.pd-summary-shipping {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  padding: 12px;
  border-top: 1px solid var(--pd-line);
}

.pd-summary-shipping > div {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 14px 5px 12px;
  border-radius: 11px;
  background: var(--pd-soft);
  text-align: center;
}

.pd-summary-shipping > div i { color: var(--pd-green-dark); font-size: 30px; line-height: 1; }
.pd-shipment-icon-img {
  width: 52px;
  height: 42px;
  object-fit: contain;
  display: block;
  border-radius: 10px;
  filter: drop-shadow(0 6px 12px rgba(31, 45, 60, .12));
}

.pd-shipment-icon-img--palet {
  width: 58px;
  height: 42px;
}

.pd-shipment-icon-img--truck {
  width: 66px;
  height: 42px;
}
.pd-summary-shipping > a {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 4px;
  color: var(--pd-green-dark);
  font-size: 12px;
  font-weight: 850;
}

.pd-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.pd-btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.pd-btn:hover { transform: translateY(-2px); }
.pd-btn-whatsapp { background: linear-gradient(135deg, #e5141f 0%, #ff3340 100%); color: #fff; box-shadow: 0 14px 30px rgba(229, 20, 31, .2); }
.pd-btn-phone { background: var(--pd-ink); color: #fff; }
.pd-btn-catalog { grid-column: 1 / -1; border-color: var(--pd-line); background: #fff; color: var(--pd-ink); }

.pd-cart-form { margin-top: 10px; }
.pd-cart-form button {
  width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(229, 20, 31, .45);
  border-radius: 12px;
  background: rgba(229, 20, 31, .1);
  color: var(--pd-green-dark);
  font-weight: 850;
  cursor: pointer;
}

.pd-accessories {
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid rgba(229, 20, 31, .48);
  border-radius: 14px;
  background: #fff;
}

.pd-accessories summary {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 17px;
  color: var(--pd-ink);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.pd-accessories summary::-webkit-details-marker { display: none; }
.pd-accessories summary span { display: inline-flex; align-items: center; gap: 10px; }
.pd-accessories summary span i { color: var(--pd-green-dark); }
.pd-accessories summary > i { color: #83909d; transition: transform .2s ease; }
.pd-accessories[open] summary > i { transform: rotate(180deg); }
.pd-accessories-body { padding: 14px; border-top: 1px solid var(--pd-line); }
.pd-accessories-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }

.pd-accessory-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--pd-line);
  border-radius: 12px;
  background: #fff;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.pd-accessory-card:hover {
  transform: translateY(-3px);
  border-color: rgba(229, 20, 31, .48);
  box-shadow: 0 12px 28px rgba(31, 45, 60, .08);
}

.pd-accessory-image { height: 112px; display: grid; place-items: center; background: #fff; }
.pd-accessory-image img,
.pd-accessory-image .card-image { width: 100%; height: 100%; object-fit: contain; padding: 10px; background: #fff !important; }
.pd-accessory-card > div { padding: 12px; }
.pd-accessory-card span { color: var(--pd-green-dark); font-size: 10px; font-weight: 900; }
.pd-accessory-card h3 { margin: 5px 0 10px; color: var(--pd-ink); font-size: 12px; line-height: 1.35; }
.pd-accessory-card > div > a { display: inline-flex; align-items: center; gap: 6px; color: var(--pd-ink); font-size: 11px; font-weight: 850; }
.pd-accessories-empty { margin: 0; padding: 8px; color: var(--pd-muted); font-size: 13px; text-align: center; }

.pd-section { padding: 72px 0; }
.pd-section + .pd-section { border-top: 1px solid #e8edf1; }

.pd-section-head { margin-bottom: 28px; }
.pd-section-head > span,
.pd-quote-copy > span {
  display: block;
  margin-bottom: 8px;
  color: var(--pd-green-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pd-section-head h2,
.pd-quote-copy h2 {
  margin: 0;
  color: var(--pd-ink);
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.15;
}

.pd-section-head p { max-width: 720px; margin: 10px 0 0; color: var(--pd-muted); }

.pd-spec-grid,
.pd-shipping-grid,
.pd-usage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.pd-spec-card,
.pd-shipping-card,
.pd-usage-grid article {
  border: 1px solid var(--pd-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(31, 45, 60, .055);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.pd-spec-card:hover,
.pd-shipping-card:hover,
.pd-usage-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 20, 31, .45);
  box-shadow: 0 20px 46px rgba(31, 45, 60, .09);
}

.pd-spec-card {
  min-height: 138px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
}

.pd-spec-card > i,
.pd-shipping-card > i,
.pd-usage-grid article > i {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(229, 20, 31, .12);
  color: var(--pd-green-dark);
  font-size: 19px;
}

.pd-spec-card div { min-width: 0; display: grid; gap: 7px; }
.pd-spec-card span,
.pd-shipping-card span { color: var(--pd-muted); font-size: 13px; font-weight: 750; }
.pd-spec-card strong,
.pd-shipping-card strong { color: var(--pd-ink); font-size: 17px; line-height: 1.35; }

.pd-shipping-section { background: #eef3f5; }
.pd-shipping-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pd-shipping-card { min-height: 180px; display: grid; align-content: center; justify-items: center; gap: 12px; padding: 26px; text-align: center; }
.pd-shipping-card > i { width: 54px; height: 54px; flex-basis: 54px; font-size: 22px; }

.pd-shipment-details {
  margin-top: 18px;
  border: 1px solid var(--pd-line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

.pd-shipment-details.is-static { margin-top: 0; }

.pd-shipment-details summary {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  color: var(--pd-ink);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.pd-shipment-details summary::-webkit-details-marker { display: none; }
.pd-shipment-details[open] summary i { transform: rotate(180deg); }
.pd-shipment-table { border-top: 1px solid var(--pd-line); }
.pd-shipment-table div { display: grid; grid-template-columns: 1fr auto; gap: 20px; padding: 13px 20px; border-bottom: 1px solid #edf1f4; }
.pd-shipment-table div:last-child { border-bottom: 0; }
.pd-shipment-table span { color: var(--pd-muted); }
.pd-shipment-table strong { color: var(--pd-green-dark); }

.pd-usage-grid article {
  min-height: 132px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 22px;
}

.pd-usage-grid article strong { color: var(--pd-ink); }

.pd-quote-section { background: var(--pd-ink); }
.pd-quote-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: start; }
.pd-quote-copy h2 { color: #fff; }
.pd-quote-copy p { color: #bdc8d1; font-size: 17px; line-height: 1.7; }
.pd-quote-form { padding: 30px; box-shadow: none; }
.pd-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.pd-quote-form label { display: grid; gap: 7px; color: var(--pd-ink); font-size: 13px; font-weight: 800; }
.pd-quote-form input,
.pd-quote-form textarea { width: 100%; border: 1px solid var(--pd-line); border-radius: 10px; background: #f8fafb; color: var(--pd-ink); font: inherit; }
.pd-quote-form input { min-height: 46px; padding: 0 13px; }
.pd-quote-form textarea { padding: 13px; resize: vertical; }
.pd-quote-form > label { margin-top: 15px; }
.pd-btn-submit { margin-top: 18px; background: linear-gradient(135deg, #e5141f 0%, #ff3340 100%); color: #fff; }

.pd-similar-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.pd-product-card { overflow: hidden; border: 1px solid var(--pd-line); border-radius: 18px; background: #fff; transition: transform .22s ease, box-shadow .22s ease; }
.pd-product-card:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(31, 45, 60, .1); }
.pd-product-image { display: grid; place-items: center; height: 220px; background: #fff !important; }
.pd-product-image img,
.pd-product-image .card-image { width: 100%; height: 100%; object-fit: contain; padding: 20px; background: #fff !important; }
.pd-product-card > div { padding: 20px; background: #fff; }
.pd-product-card span { color: var(--pd-green-dark); font-size: 12px; font-weight: 850; }
.pd-product-card h3 { min-height: 48px; margin: 8px 0 16px; color: var(--pd-ink); font-size: 16px; line-height: 1.45; }
.pd-product-card > div > a { display: inline-flex; align-items: center; gap: 8px; color: var(--pd-ink); font-size: 13px; font-weight: 850; }

@media (max-width: 1100px) {
  .pd-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .pd-summary { padding: 32px; }
  .pd-spec-grid,
  .pd-usage-grid,
  .pd-similar-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pd-description-grid,
  .pd-quote-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 700px) {
  .premium-product-detail .pd-page {
    overflow-x: hidden;
  }

  .premium-product-detail .container {
    width: min(100% - 24px, var(--container));
  }

  .pd-breadcrumb-bar { padding-top: 18px; }
  .pd-breadcrumb-bar .breadcrumb {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .pd-breadcrumb-bar .breadcrumb::-webkit-scrollbar {
    display: none;
  }

  .pd-hero { padding: 10px 0 40px; }
  .pd-hero-grid { gap: 18px; }
  .pd-media-column { gap: 12px; }
  .pd-gallery { padding: 10px; border-radius: 18px; }
  .pd-gallery::after { inset: 1px; border-radius: 17px; }
  .pd-inline-usage { padding: 18px 14px; border-radius: 18px; }
  .pd-inline-usage-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .pd-inline-usage-grid article { min-height: 72px; padding: 10px 6px; }
  .pd-inline-description { padding: 20px 18px; border-radius: 18px; }
  .pd-inline-description p { font-size: 14px; line-height: 1.72; }
  .pd-image-stage { min-height: 280px; border-radius: 14px; }
  .pd-main-image { height: 280px; padding: 16px; }
  .pd-image-stage { cursor: default; }
  .pd-image-stage:hover .pd-main-image,
  .pd-image-stage.is-zooming .pd-main-image { transform: none; }
  .pd-image-stage:hover::after,
  .pd-image-stage.is-zooming::after { display: none; }
  .pd-summary { padding: 24px 20px; border-radius: 18px; }
  .pd-category-line { gap: 7px; margin-bottom: 14px; }
  .pd-category-line span { padding: 6px 9px; font-size: 11px; }
  .pd-summary h1 { margin-bottom: 18px; font-size: 26px; line-height: 1.14; }
  .pd-summary-panels { gap: 10px; margin-bottom: 18px; }
  .pd-summary-panel-title { min-height: 50px; padding: 0 14px; font-size: 14px; }
  .pd-summary-specs { grid-template-columns: 1fr 1fr; }
  .pd-summary-specs > div,
  .pd-summary-specs > div:nth-child(even),
  .pd-summary-specs > div:nth-last-child(-n + 2) { border-bottom: 1px solid #edf1f4; }
  .pd-summary-specs > div:nth-child(odd) { border-right: 1px solid #edf1f4; }
  .pd-summary-specs > div:nth-child(even) { border-right: 0; }
  .pd-summary-specs > div:nth-last-child(-n + 2) { border-bottom: 0; }
  .pd-summary-specs > div { grid-template-columns: 24px 1fr; padding: 12px 10px; }
  .pd-summary-specs i { font-size: 15px; }
  .pd-summary-specs span,
  .pd-summary-shipping > div > span { font-size: 10px; }
  .pd-summary-specs strong,
  .pd-summary-shipping strong { font-size: 12px; }
  .pd-summary-shipping { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 10px; gap: 7px; }
  .pd-summary-shipping > div { padding: 12px 4px 10px; gap: 5px; }
  .pd-summary-shipping > div i { font-size: 24px; }
  .pd-shipment-icon-img { width: 46px; height: 36px; }
  .pd-shipment-icon-img--palet { width: 54px; height: 36px; }
  .pd-shipment-icon-img--truck { width: 60px; height: 36px; }
  .pd-accessories-grid { grid-template-columns: 1fr; }
  .pd-accessories summary { min-height: 50px; padding: 0 14px; font-size: 13px; }
  .pd-actions { grid-template-columns: 1fr; }
  .pd-btn { min-height: 48px; font-size: 13px; }
  .pd-cart-form button { min-height: 46px; }
  .pd-section { padding: 50px 0; }
  .pd-similar-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .pd-quote-form { padding: 22px 18px; }
  .pd-form-grid { grid-template-columns: 1fr; }
  .pd-product-image { height: 150px; }
  .pd-product-image img,
  .pd-product-image .card-image { padding: 12px; }
  .pd-product-card > div { padding: 13px; }
  .pd-product-card h3 { min-height: auto; font-size: 13px; line-height: 1.35; }
  .pd-product-card > div > a { font-size: 12px; }
}

@media (max-width: 420px) {
  .pd-similar-grid { grid-template-columns: 1fr 1fr; }
  .pd-product-image { height: 150px; }
  .pd-inline-usage-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 340px) {
  .pd-summary-specs,
  .pd-summary-shipping,
  .pd-similar-grid {
    grid-template-columns: 1fr;
  }

  .pd-summary-specs > div,
  .pd-summary-specs > div:nth-child(odd),
  .pd-summary-specs > div:nth-child(even),
  .pd-summary-specs > div:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid #edf1f4;
  }

  .pd-summary-specs > div:last-child {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pd-page * { scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .pd-gallery::before { animation: none !important; }
}
