:root {
  --bg: #f4f1ea;
  --bg-alt: #ece7dc;
  --panel: rgba(255, 255, 255, 0.72);
  --line: rgba(15, 15, 16, 0.12);
  --line-strong: rgba(15, 15, 16, 0.22);
  --text: #101113;
  --muted: rgba(16, 17, 19, 0.72);
  --accent: #d8893d;
  --accent-soft: rgba(216, 137, 61, 0.12);
  --shell: 1220px;
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background:
    radial-gradient(circle at top, rgba(216, 137, 61, 0.08), transparent 26%),
    linear-gradient(180deg, #f6f2e9 0%, #eee8dd 100%);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

.pdShell {
  width: min(calc(100% - 32px), var(--shell));
  margin: 0 auto;
}

.pdHeaderBar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(244, 241, 234, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.pdHeaderInner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.pdBrand {
  display: grid;
  gap: 4px;
}

.pdBrandName {
  font-size: 1.12rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.pdBrandTag {
  font-size: 0.84rem;
  line-height: 1.2;
  color: var(--muted);
  font-weight: 700;
}

.pdNav {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.pdNav a {
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.pdNav a.is-active,
.pdEyebrow,
.pdLabel {
  color: var(--accent);
}

.pdMain {
  padding: 24px 0 0;
}

.pdHero {
  padding: 36px 0 28px;
}

.pdHeroLayout,
.pdInfoGrid,
.pdCardGrid {
  display: grid;
  gap: 18px;
}

.pdHeroLayout {
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: start;
}

.pdEyebrow {
  margin: 0 0 10px;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pdHeroCopy h1,
.pdSectionHead h2 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: -0.08em;
  font-weight: 900;
}

.pdHeroCopy p,
.pdCard p,
.pdInfoCard p,
.pdHeroCard li {
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.48;
  letter-spacing: -0.03em;
  color: var(--muted);
}

.pdHeroCopy {
  display: grid;
  gap: 18px;
}

.pdHeroActions,
.pdFooterLinks {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.pdButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid var(--text);
  font-size: 0.94rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.pdButtonPrimary {
  background: var(--text);
  color: #fff;
}

.pdButtonGhost {
  background: transparent;
}

.pdHeroCard,
.pdCard,
.pdInfoCard {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.pdHeroCard,
.pdCard,
.pdInfoCard {
  padding: 24px;
}

.pdHeroCard h2,
.pdCard h3,
.pdInfoCard h3 {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.pdHeroCard ul {
  margin: 18px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.pdSection {
  padding: 58px 0;
}

.pdSectionAlt {
  background: var(--bg-alt);
}

.pdSectionHead {
  max-width: 760px;
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.pdCardGrid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pdCard {
  display: grid;
  gap: 14px;
}

.pdCardAccent {
  background: linear-gradient(180deg, rgba(216, 137, 61, 0.12), rgba(255,255,255,0.72));
}

.pdPrice {
  font-size: 2rem !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  color: var(--text) !important;
}

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

.pdFooter {
  border-top: 1px solid var(--line);
  padding: 24px 0 34px;
}

.pdFooterInner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.94rem;
  font-weight: 800;
}

.pdNav a,
.pdButton,
.pdHeroCard,
.pdCard,
.pdInfoCard {
  transition:
    transform 220ms ease,
    opacity 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.pdNav a:hover,
.pdFooterLinks a:hover {
  opacity: 0.72;
}

.pdButton:hover {
  transform: translateY(-1px);
}

.pdHeroCard:hover,
.pdCard:hover,
.pdInfoCard:hover {
  transform: translateY(-2px);
}

@media (max-width: 1080px) {
  .pdHeroLayout,
  .pdCardGrid,
  .pdInfoGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .pdHeaderInner,
  .pdHeroLayout,
  .pdCardGrid,
  .pdInfoGrid,
  .pdFooterInner,
  .pdFooterLinks,
  .pdHeroActions,
  .pdNav {
    display: grid;
    grid-template-columns: 1fr;
  }

  .pdHeaderInner {
    padding: 16px 0;
  }

  .pdButton {
    width: 100%;
  }
}
