.pwd-pricelist-page {
  --price-grid: rgba(255, 255, 255, 0.055);
  background: var(--pwd-paper);
}

.pwd-pricelist-page main {
  display: block;
  overflow: hidden;
}

.pwd-pricelist-page h1,
.pwd-pricelist-page h2,
.pwd-pricelist-page h3,
.pwd-pricelist-page p {
  text-wrap: pretty;
}

.pwd-price-hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  padding: 176px 0 104px;
  color: var(--pwd-white);
  background:
    radial-gradient(circle at 72% 18%, rgba(233, 32, 79, 0.26), transparent 32%),
    radial-gradient(circle at 98% 84%, rgba(255, 73, 124, 0.13), transparent 28%),
    linear-gradient(135deg, #08090b 0%, #111318 58%, #0a0b0e 100%);
  isolation: isolate;
}

.pwd-price-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.54;
  background-image:
    linear-gradient(var(--price-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--price-grid) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

.pwd-price-hero::after {
  position: absolute;
  z-index: -1;
  top: 18%;
  right: 5%;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(255, 255, 255, 0.02),
    0 0 0 160px rgba(255, 255, 255, 0.012);
  content: "";
}

.pwd-price-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 73, 124, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.pwd-price-orbit-one {
  top: -170px;
  left: -230px;
  width: 520px;
  height: 520px;
}

.pwd-price-orbit-two {
  right: -210px;
  bottom: -280px;
  width: 650px;
  height: 650px;
}

.pwd-price-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  gap: 86px;
  align-items: center;
}

.pwd-price-hero-copy .pwd-hero-kicker {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(12px);
}

.pwd-price-hero h1 {
  max-width: 840px;
  margin: 0;
  color: var(--pwd-white);
  font-size: clamp(3.45rem, 6.6vw, 6.75rem);
  font-weight: 800;
  letter-spacing: -0.072em;
  line-height: 0.94;
}

.pwd-price-hero-copy > p:not(.pwd-price-source-note) {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.69);
  font-size: clamp(1.04rem, 1.65vw, 1.27rem);
  line-height: 1.7;
}

.pwd-price-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.pwd-price-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0.92rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none !important;
}

.pwd-price-button-primary {
  color: var(--pwd-white) !important;
  background: var(--pwd-red);
  box-shadow: 0 15px 38px rgba(233, 32, 79, 0.25);
}

.pwd-price-button-primary:hover {
  background: var(--pwd-red-bright);
  transform: translateY(-2px);
}

.pwd-price-button-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--pwd-white) !important;
  background: rgba(255, 255, 255, 0.06);
}

.pwd-price-button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.pwd-price-source-note {
  margin: 24px 0 0 !important;
  color: rgba(255, 255, 255, 0.45) !important;
  font-size: 0.78rem !important;
  line-height: 1.6 !important;
}

.pwd-price-source-note a {
  color: rgba(255, 255, 255, 0.78) !important;
  font-weight: 700;
  text-decoration: none;
}

.pwd-price-source-note a:hover {
  color: var(--pwd-red-bright) !important;
}

.pwd-deadline-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.pwd-deadline-card::after {
  position: absolute;
  right: -60px;
  bottom: -85px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 73, 124, 0.22);
  border-radius: 50%;
  content: "";
}

.pwd-deadline-date {
  display: flex;
  align-items: center;
  gap: 18px;
}

.pwd-deadline-date > span {
  color: var(--pwd-white);
  font-size: clamp(4rem, 7vw, 6.4rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.82;
}

.pwd-deadline-date div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pwd-deadline-date b {
  color: var(--pwd-red-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.pwd-deadline-date strong {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.15rem;
  font-weight: 700;
}

.pwd-deadline-line {
  height: 1px;
  margin: 30px 0 24px;
  background: rgba(255, 255, 255, 0.13);
}

.pwd-deadline-card > p {
  margin: 0 0 25px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
  line-height: 1.7;
}

.pwd-deadline-card ul {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pwd-deadline-card li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.83rem;
  font-weight: 700;
}

.pwd-deadline-card li span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(255, 73, 124, 0.35);
  border-radius: 50%;
  color: var(--pwd-red-bright);
  font-size: 0.62rem;
}

.pwd-price-intro,
.pwd-requirements,
.pwd-price-context,
.pwd-delivery,
.pwd-responsibility {
  padding: 112px 0;
}

.pwd-price-intro,
.pwd-requirements,
.pwd-delivery {
  background: var(--pwd-paper);
}

.pwd-price-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 90px;
  align-items: end;
}

.pwd-price-intro h2,
.pwd-price-section-heading h2,
.pwd-price-context h2,
.pwd-delivery h2,
.pwd-responsibility h2 {
  margin: 0;
  color: var(--pwd-ink);
  font-size: clamp(2.45rem, 4.7vw, 4.75rem);
  font-weight: 800;
  letter-spacing: -0.062em;
  line-height: 1;
}

.pwd-price-intro-copy {
  padding-left: 30px;
  border-left: 2px solid var(--pwd-red);
}

.pwd-price-intro-copy p {
  margin: 0;
  color: var(--pwd-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.pwd-price-intro-copy p + p {
  margin-top: 20px;
}

.pwd-requirements {
  position: relative;
  padding-top: 40px;
}

.pwd-requirements::before,
.pwd-delivery::before {
  position: absolute;
  left: 50%;
  width: min(calc(100% - 40px), 1240px);
  height: 1px;
  background: var(--pwd-line);
  content: "";
  transform: translateX(-50%);
}

.pwd-requirements::before {
  top: 0;
}

.pwd-price-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 56px;
}

.pwd-price-section-heading > p {
  margin: 0;
  color: var(--pwd-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.pwd-requirement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pwd-requirement-card {
  position: relative;
  min-height: 288px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--pwd-line);
  border-radius: var(--pwd-radius-lg);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 40px rgba(20, 20, 24, 0.035);
  transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.pwd-requirement-card::after {
  position: absolute;
  right: -48px;
  bottom: -48px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(233, 32, 79, 0.14);
  border-radius: 50%;
  content: "";
}

.pwd-requirement-card:hover {
  border-color: rgba(233, 32, 79, 0.3);
  box-shadow: var(--pwd-shadow);
  transform: translateY(-6px);
}

.pwd-requirement-card > span {
  display: inline-flex;
  margin-bottom: 62px;
  color: var(--pwd-red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.pwd-requirement-card h3 {
  margin: 0 0 15px;
  color: var(--pwd-ink);
  font-size: 1.34rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.18;
}

.pwd-requirement-card p {
  margin: 0;
  color: var(--pwd-muted);
  font-size: 0.92rem;
  line-height: 1.72;
}

.pwd-price-context {
  color: var(--pwd-white);
  background:
    radial-gradient(circle at 8% 84%, rgba(233, 32, 79, 0.18), transparent 34%),
    linear-gradient(135deg, #0c0d10, #181a20);
}

.pwd-price-context-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 90px;
  align-items: center;
}

.pwd-price-context h2 {
  color: var(--pwd-white);
}

.pwd-price-context p {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1rem;
  line-height: 1.78;
}

.pwd-price-context p + p {
  margin-top: 16px;
}

.pwd-price-context-visual {
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.22);
}

.pwd-data-row {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 0.7fr;
  gap: 12px;
  padding: 17px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.75);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.78rem;
}

.pwd-data-row-head {
  color: var(--pwd-red-bright);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pwd-data-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 15px 5px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
}

.pwd-data-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #54d59c;
  box-shadow: 0 0 0 5px rgba(84, 213, 156, 0.1);
}

.pwd-packages {
  position: relative;
  padding: 122px 0;
  color: var(--pwd-white);
  background: #090a0c;
}

.pwd-packages::before {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 76px 76px;
  content: "";
  pointer-events: none;
}

.pwd-packages .pwd-shell {
  position: relative;
  z-index: 1;
}

.pwd-price-section-heading-dark h2 {
  color: var(--pwd-white);
}

.pwd-price-section-heading-dark > p {
  color: rgba(255, 255, 255, 0.59);
}

.pwd-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.pwd-package-card {
  position: relative;
  display: flex;
  min-height: 720px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  transition: border-color 240ms ease, background-color 240ms ease, transform 240ms ease;
}

.pwd-package-card:hover {
  border-color: rgba(255, 73, 124, 0.38);
  background: rgba(255, 255, 255, 0.075);
  transform: translateY(-7px);
}

.pwd-package-featured {
  border-color: rgba(255, 73, 124, 0.52);
  background: linear-gradient(150deg, rgba(233, 32, 79, 0.21), rgba(255, 255, 255, 0.065) 54%);
}

.pwd-package-badge {
  position: absolute;
  top: -15px;
  right: 24px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--pwd-white);
  background: var(--pwd-red);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(233, 32, 79, 0.3);
}

.pwd-package-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.pwd-package-topline span {
  color: var(--pwd-red-bright);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.pwd-package-topline b {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

.pwd-package-for {
  min-height: 78px;
  margin: 24px 0 14px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.65;
}

.pwd-package-price {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 24px;
}

.pwd-package-price strong {
  color: var(--pwd-white);
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.pwd-package-price span {
  padding-bottom: 4px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.75rem;
  font-weight: 700;
}

.pwd-package-includes {
  margin: 0 0 13px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.pwd-package-card ul {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
}

.pwd-package-card li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  line-height: 1.48;
}

.pwd-package-card li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  border: 1px solid var(--pwd-red-bright);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.pwd-package-card > .pwd-package-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  padding: 13px 19px;
  margin-top: auto;
  border: 1px solid rgba(255, 103, 146, 0.34);
  border-radius: 999px;
  color: var(--pwd-white) !important;
  background: linear-gradient(135deg, var(--pwd-red), #ff376f);
  box-shadow: 0 13px 30px rgba(233, 32, 79, 0.27);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.pwd-package-card > .pwd-package-cta span {
  color: var(--pwd-white);
  font-size: 1.05rem;
  transition: transform 220ms ease;
}

.pwd-package-card > .pwd-package-cta:hover {
  box-shadow: 0 17px 38px rgba(233, 32, 79, 0.38);
  filter: brightness(1.06);
  transform: translateY(-3px);
}

.pwd-package-card > .pwd-package-cta:hover span {
  transform: translate(3px, 3px);
}

.pwd-package-card > .pwd-package-cta:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.pwd-package-footnote {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.78rem;
  line-height: 1.65;
  text-align: center;
}

.pwd-delivery {
  position: relative;
}

.pwd-delivery::before {
  top: 0;
}

.pwd-delivery-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 90px;
}

.pwd-delivery h2 {
  max-width: 600px;
}

.pwd-delivery-grid > div > p {
  max-width: 570px;
  margin: 26px 0 0;
  color: var(--pwd-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.pwd-text-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-top: 30px;
  color: var(--pwd-red) !important;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.pwd-text-link:hover {
  color: var(--pwd-red-bright) !important;
  transform: translateX(3px);
}

.pwd-delivery-steps {
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--pwd-line);
  list-style: none;
}

.pwd-delivery-steps li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid var(--pwd-line);
}

.pwd-delivery-steps > li > span {
  color: var(--pwd-red);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.pwd-delivery-steps b {
  display: block;
  margin-bottom: 7px;
  color: var(--pwd-ink);
  font-size: 1.02rem;
  font-weight: 800;
}

.pwd-delivery-steps p {
  margin: 0;
  color: var(--pwd-muted);
  font-size: 0.9rem;
  line-height: 1.68;
}

.pwd-responsibility {
  background: #efece7;
}

.pwd-responsibility-grid {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 62px;
  align-items: start;
}

.pwd-responsibility-mark {
  display: grid;
  width: 132px;
  height: 132px;
  place-items: center;
  border: 1px solid rgba(233, 32, 79, 0.22);
  border-radius: 50%;
  color: var(--pwd-red);
  background: rgba(255, 255, 255, 0.5);
  font-size: 3.5rem;
  font-weight: 500;
}

.pwd-responsibility h2 {
  max-width: 880px;
  font-size: clamp(2.25rem, 4.2vw, 4.2rem);
}

.pwd-responsibility p {
  max-width: 880px;
  margin: 25px 0 0;
  color: var(--pwd-muted);
  font-size: 0.96rem;
  line-height: 1.78;
}

.pwd-responsibility p + p {
  margin-top: 15px;
}

.pwd-price-faq {
  background: var(--pwd-paper);
}

.pwd-official-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
  padding-top: 30px;
  margin-top: 28px;
  border-top: 1px solid var(--pwd-line);
  font-size: 0.78rem;
}

.pwd-official-links > span {
  color: var(--pwd-muted);
  font-weight: 700;
}

.pwd-official-links a {
  color: var(--pwd-ink) !important;
  font-weight: 800;
  text-decoration: none;
}

.pwd-official-links a:hover {
  color: var(--pwd-red) !important;
}

.pwd-price-cta {
  padding: 94px 0 !important;
}

@media (max-width: 1199px) {
  .pwd-price-hero-grid {
    gap: 54px;
  }

  .pwd-price-hero h1 {
    font-size: clamp(3.2rem, 6.8vw, 5.65rem);
  }

  .pwd-package-card {
    min-height: 760px;
    padding: 26px;
  }
}

@media (max-width: 991px) {
  .pwd-price-hero {
    min-height: auto;
    padding: 146px 0 86px;
  }

  .pwd-price-hero-grid,
  .pwd-price-intro-grid,
  .pwd-price-context-grid,
  .pwd-delivery-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .pwd-price-hero-copy {
    max-width: 800px;
  }

  .pwd-deadline-card {
    max-width: 620px;
  }

  .pwd-price-section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pwd-requirement-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pwd-package-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pwd-package-card {
    min-height: 0;
  }

  .pwd-package-for {
    min-height: 0;
  }

  .pwd-responsibility-grid {
    grid-template-columns: 100px 1fr;
    gap: 38px;
  }

  .pwd-responsibility-mark {
    width: 96px;
    height: 96px;
    font-size: 2.8rem;
  }
}

@media (max-width: 767px) {
  .pwd-price-hero {
    padding: 128px 0 72px;
  }

  .pwd-price-hero::before {
    background-size: 48px 48px;
  }

  .pwd-price-hero::after {
    display: none;
  }

  .pwd-price-hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.3rem);
    letter-spacing: -0.064em;
  }

  .pwd-price-hero-copy > p:not(.pwd-price-source-note) {
    font-size: 1rem;
  }

  .pwd-price-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .pwd-price-button {
    width: 100%;
  }

  .pwd-deadline-card {
    padding: 27px;
  }

  .pwd-price-intro,
  .pwd-requirements,
  .pwd-price-context,
  .pwd-delivery,
  .pwd-responsibility,
  .pwd-packages {
    padding: 84px 0;
  }

  .pwd-price-intro h2,
  .pwd-price-section-heading h2,
  .pwd-price-context h2,
  .pwd-delivery h2,
  .pwd-responsibility h2 {
    font-size: clamp(2.2rem, 11vw, 3.55rem);
  }

  .pwd-price-intro-copy {
    padding-left: 20px;
  }

  .pwd-requirement-grid {
    grid-template-columns: 1fr;
  }

  .pwd-requirement-card {
    min-height: 250px;
  }

  .pwd-requirement-card > span {
    margin-bottom: 44px;
  }

  .pwd-package-card {
    padding: 26px 23px;
  }

  .pwd-responsibility-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pwd-responsibility-mark {
    width: 76px;
    height: 76px;
    font-size: 2.2rem;
  }

  .pwd-official-links {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 479px) {
  .pwd-deadline-date > span {
    font-size: 4.8rem;
  }

  .pwd-data-row {
    grid-template-columns: 1.15fr 0.72fr 0.72fr;
    gap: 7px;
    padding: 15px 7px;
    font-size: 0.67rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pwd-pricelist-page *,
  .pwd-pricelist-page *::before,
  .pwd-pricelist-page *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
