/* === design-tokens.css === */
/* ТИРОН — фирменные токены из брендбука */
:root {
  --tiron-dark: #1D0705;
  --tiron-red: #56140E;
  --tiron-red-mid: #731B13;
  --tiron-gold: #D8BE81;
  --tiron-gold-dark: #988052;
  --tiron-white: #F7F3EA;
  --tiron-muted: rgba(247, 243, 234, 0.72);
  --tiron-line: rgba(216, 190, 129, 0.28);
  /* Local look: Nunito Sans for UI + headings */
  --tiron-font: "Nunito Sans", Arial, Helvetica, sans-serif;
  --tiron-font-display: "Nunito Sans", Arial, Helvetica, sans-serif;
  --tiron-max: 1180px;
  --tiron-radius: 4px;
  --tiron-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* === tiron-base.css === */
/* Fonts come from Tilda site settings (Nunito + Open Sans). */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  max-width: 100%;
}

/* Page atmosphere: dark burgundy gradient (not flat Tilda red) */
.tiron-root,
body.t-body,
body {
  background-color: var(--tiron-dark) !important;
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -10%, rgba(115, 27, 19, 0.55), transparent 55%),
    linear-gradient(180deg, #2a0c09 0%, var(--tiron-dark) 45%, #120403 100%) !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-attachment: fixed !important;
}

/* Tilda paints each Zero/HTML record solid — clear them so gradient shows through */
#allrecords,
.t-records,
.t-rec,
.t-rec_pt_0,
.t-rec_pt_15,
.t-rec_pt_30,
.t-rec_pt_45,
.t-rec_pt_60,
.t-rec_pt_75,
.t-rec_pt_90,
.t-rec_pt_105,
.t-rec_pt_120,
.t-rec_pt_135,
.t-rec_pt_150,
.t-rec_pt_180,
.t-cover__carrier,
.t396__artboard {
  background-color: transparent !important;
  background-image: none !important;
}

/* Hide leftover Tilda menu / footer blocks — we use custom .tiron-header / .tiron-footer */
.t228,
.t280,
.t282,
.t451,
.t452,
.t466,
.t550,
.t585,
.t690,
.t738,
.t794,
.t898,
.t959,
.t-menu,
[class*="t-menuburger"],
#tildacоpy {
  display: none !important;
}

/* Keep spacing when our sticky header is present */
.t-body {
  padding-top: 0;
}

/* Font without depending on .tiron-root wrapper (Tilda HTML often omits it) */
body,
body.t-body,
.t-rec,
.tiron-root,
.tiron-section,
.tiron-wrap,
.tiron-lead,
.tiron-text,
.tiron-btn,
.pdu-card,
.pdu-feature,
.pdu-table,
.pdu-filter {
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif !important;
}

.tiron-root {
  color: var(--tiron-white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
  min-height: 100vh;
}

.tiron-root a {
  color: inherit;
  text-decoration: none;
}

.tiron-root img {
  max-width: 100%;
  display: block;
}

.tiron-wrap {
  width: min(100% - 2.5rem, var(--tiron-max));
  margin-inline: auto;
}

.tiron-section {
  position: relative;
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
  overflow: hidden;
}

.tiron-section--tight {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

/* Секции прозрачные — градиент страницы виден насквозь */
.tiron-bg,
.tiron-bg--red,
.tiron-section {
  background: transparent !important;
  background-color: transparent !important;
}

.tiron-bg--red {
  border-top: 1px solid var(--tiron-line);
  border-bottom: 1px solid var(--tiron-line);
}

.tiron-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tiron-gold);
  margin-bottom: 0.85rem;
}

.tiron-h1,
.tiron-h2,
.tiron-h3,
.tiron-kicker {
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif !important;
}

.tiron-h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--tiron-gold);
  margin: 0 0 1rem;
}

.tiron-h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--tiron-gold);
  margin: 0 0 1rem;
}

.tiron-h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--tiron-white);
  margin: 0 0 0.5rem;
}

.tiron-lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 300;
  color: var(--tiron-muted);
  max-width: 36rem;
  margin: 0;
}

.tiron-text {
  color: var(--tiron-muted);
  margin: 0;
}

.tiron-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.85rem;
  padding: 0.7rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.35s var(--tiron-ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.tiron-btn:hover {
  transform: translateY(-2px);
}

.tiron-btn--gold {
  background: var(--tiron-gold);
  color: var(--tiron-dark);
}

.tiron-btn--gold:hover {
  background: #e6d0a0;
}

.tiron-btn--ghost {
  background: transparent;
  border-color: var(--tiron-gold);
  color: var(--tiron-gold);
}

.tiron-btn--ghost:hover {
  background: rgba(216, 190, 129, 0.12);
}

.tiron-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

/* Header */
.tiron-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(29, 7, 5, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--tiron-line);
}

.tiron-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  min-height: 4.25rem;
  padding: 0.65rem 0;
}

.tiron-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.tiron-logo img {
  height: 64px;
  width: auto;
  max-width: min(280px, 48vw);
  display: block;
}

.tiron-logo__mark,
.tiron-logo__name {
  display: none;
}

.tiron-nav {
  display: none;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.15rem 0.85rem;
  flex: 1 1 auto;
  min-width: 0;
  white-space: nowrap;
}

.tiron-nav a {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--tiron-muted);
  transition: color 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.tiron-nav a:hover,
.tiron-nav a.is-active {
  color: var(--tiron-gold);
}

.tiron-header__cta {
  display: none;
  flex-shrink: 0;
  min-height: 2.4rem;
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
}

.tiron-burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--tiron-line);
  border-radius: var(--tiron-radius);
  background: transparent;
  color: var(--tiron-gold);
  cursor: pointer;
  flex-shrink: 0;
}

/* Десктоп: одна строка меню без переносов */
@media (min-width: 1100px) {
  .tiron-burger {
    display: none;
  }

  .tiron-nav {
    display: flex;
  }

  .tiron-header__cta {
    display: inline-flex;
  }
}

@media (max-width: 1099px) {
  .tiron-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    white-space: normal;
    padding: 1rem 1.25rem 1.25rem;
    background: rgba(29, 7, 5, 0.98);
    border-bottom: 1px solid var(--tiron-line);
  }

  .tiron-nav.is-open {
    display: flex;
  }

  .tiron-nav a {
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(216, 190, 129, 0.12);
    font-size: 0.92rem;
  }
}

/* Footer */
.tiron-footer {
  background: #0a0302;
  border-top: 1px solid var(--tiron-line);
  padding: 2rem 0;
}

.tiron-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.tiron-footer__copy {
  font-size: 0.85rem;
  color: var(--tiron-muted);
}

.tiron-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.tiron-footer__nav a {
  font-size: 0.85rem;
  color: var(--tiron-muted);
}

.tiron-footer__nav a:hover {
  color: var(--tiron-gold);
}

.tiron-top {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--tiron-gold);
}

/* CTA form */
.tiron-cta {
  display: grid;
  gap: 2rem;
}

@media (min-width: 880px) {
  .tiron-cta {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: end;
  }
}

.tiron-form {
  display: grid;
  gap: 0.75rem;
}

.tiron-form__row {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .tiron-form__row {
    grid-template-columns: 1fr 1fr;
  }
}

.tiron-input {
  width: 100%;
  min-height: 2.85rem;
  padding: 0.7rem 1rem;
  border: 1px solid var(--tiron-line);
  border-radius: var(--tiron-radius);
  background: rgba(0, 0, 0, 0.25);
  color: var(--tiron-white);
  font-family: inherit;
  font-size: 0.95rem;
}

.tiron-input::placeholder {
  color: rgba(247, 243, 234, 0.4);
}

.tiron-input:focus {
  outline: 1px solid var(--tiron-gold);
  border-color: var(--tiron-gold);
}

.tiron-note {
  font-size: 0.78rem;
  color: rgba(247, 243, 234, 0.45);
  margin: 0.35rem 0 0;
}

/* Motion */
@keyframes tiron-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tiron-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.tiron-rise {
  animation: tiron-rise 0.9s var(--tiron-ease) both;
}

.tiron-rise-delay-1 { animation-delay: 0.12s; }
.tiron-rise-delay-2 { animation-delay: 0.24s; }
.tiron-rise-delay-3 { animation-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  .tiron-rise,
  .tiron-btn {
    animation: none !important;
    transition: none !important;
  }
}

/* === home.css === */
/* Homepage sections */

.home-hero {
  position: relative;
  min-height: min(92vh, 720px);
  display: grid;
  align-items: end;
  padding: clamp(4rem, 10vw, 7rem) 0 clamp(3rem, 8vw, 5.5rem);
  overflow: hidden;
}

.home-hero__content {
  position: relative;
  z-index: 1;
  max-width: 40rem;
}

.home-hero__logo {
  display: block;
  width: min(420px, 88vw);
  height: auto;
  margin: 0 0 1.25rem;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.35));
}

.home-hero__brand {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 0.95;
  color: var(--tiron-gold);
  margin: 0 0 0.75rem;
}

.home-logo-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .home-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.home-logo-card {
  margin: 0;
  padding: 1.5rem 1.25rem 1rem;
  border: 1px solid var(--tiron-line);
  background: rgba(0, 0, 0, 0.22);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  min-height: 180px;
}

.home-logo-card img {
  max-height: 110px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.home-logo-card figcaption {
  font-size: 0.8rem;
  color: var(--tiron-muted);
  text-align: center;
}

.home-hero__tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tiron-gold-dark);
  margin-bottom: 1rem;
  max-width: 100%;
}

.home-lines {
  display: grid;
  gap: 0;
}

.home-line {
  display: grid;
  gap: 1rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--tiron-line);
  transition: background 0.3s ease;
}

@media (min-width: 800px) {
  .home-line {
    grid-template-columns: 1.4fr 1fr auto;
    align-items: center;
    gap: 2rem;
  }
}

.home-line:first-child {
  border-top: 1px solid var(--tiron-line);
}

.home-line--featured {
  padding: 2rem 0;
  background: linear-gradient(90deg, rgba(216, 190, 129, 0.08), transparent 70%);
}

.home-line__title {
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  font-weight: 700;
  color: var(--tiron-gold);
  margin: 0 0 0.35rem;
}

.home-line__text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--tiron-muted);
}

.home-line__meta {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tiron-gold-dark);
}

.home-why {
  display: grid;
  gap: 1.5rem 2rem;
}

@media (min-width: 800px) {
  .home-why {
    grid-template-columns: 1fr 1fr;
  }
}

.home-why__item {
  padding-top: 1.1rem;
  border-top: 1px solid var(--tiron-line);
}

.home-why__item h3 {
  margin: 0 0 0.5rem;
  color: var(--tiron-gold);
  font-size: 1.15rem;
}

.home-why__item p {
  margin: 0;
  color: var(--tiron-muted);
  font-size: 0.95rem;
}

.home-about {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .home-about {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: start;
  }
}

/* === pdu.css === */
/* PDU page — дополнение к tiron-base.css */

.pdu-hero {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  min-height: min(100vh, 1080px);
  max-width: 100%;
  overflow: hidden;
}

@media (min-width: 960px) {
  .pdu-hero {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.pdu-hero__visual {
  position: relative;
  min-height: 280px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pdu-hero__glow {
  position: absolute;
  inset: 10% 15%;
  background: radial-gradient(circle, rgba(216, 190, 129, 0.22), transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}

.pdu-hero__img {
  position: relative;
  max-height: min(560px, 70vh);
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.45));
  animation: tiron-fade 1.2s var(--tiron-ease) both;
}

.pdu-hero__img--controller {
  max-height: min(1080px, 98vh);
  width: min(100%, 720px);
  border-radius: 12px;
}

.pdu-features {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .pdu-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pdu-feature {
  padding: 1.35rem 1.25rem;
  border-top: 1px solid var(--tiron-line);
  background: linear-gradient(180deg, rgba(216, 190, 129, 0.06), transparent 70%);
  transition: border-color 0.3s ease, transform 0.35s var(--tiron-ease);
}

.pdu-feature:hover {
  border-color: var(--tiron-gold);
  transform: translateY(-3px);
}

.pdu-feature__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--tiron-gold);
  margin: 0 0 0.45rem;
}

.pdu-feature p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--tiron-muted);
}

.pdu-ui {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 960px) {
  .pdu-ui {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.pdu-ui__shot {
  border: 1px solid var(--tiron-line);
  background: #121416;
  overflow: hidden;
  max-width: 100%;
}

.pdu-ui__shot img {
  width: 100%;
  height: auto;
  display: block;
}

.pdu-ui__list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.pdu-ui__list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.1rem;
  border-bottom: 1px solid rgba(216, 190, 129, 0.12);
  color: var(--tiron-muted);
  font-size: 0.95rem;
}

.pdu-ui__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--tiron-gold);
}

.pdu-badge {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--tiron-gold);
  background: rgba(216, 190, 129, 0.08);
}

.pdu-badge__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tiron-gold);
  margin-bottom: 0.45rem;
}

.pdu-badge p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--tiron-white);
  line-height: 1.45;
}

.pdu-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 2rem;
}

.pdu-filter {
  min-height: 2.4rem;
  padding: 0.45rem 1rem;
  border: 1px solid var(--tiron-line);
  border-radius: 999px;
  background: transparent;
  color: var(--tiron-muted);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.pdu-filter.is-active,
.pdu-filter:hover {
  background: var(--tiron-gold);
  border-color: var(--tiron-gold);
  color: var(--tiron-dark);
}

.pdu-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .pdu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .pdu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pdu-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(216, 190, 129, 0.18);
  background: linear-gradient(165deg, rgba(86, 20, 14, 0.35), rgba(29, 7, 5, 0.65));
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.4s var(--tiron-ease);
}

.pdu-card:hover {
  border-color: var(--tiron-gold);
  transform: translateY(-4px);
}

.pdu-card.is-hidden {
  display: none;
}

.pdu-card__media {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 400px;
  padding: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(216, 190, 129, 0.12), transparent 55%),
    rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

/* Подсказка: можно прокрутить взглядом */
.pdu-card__media:not(.pdu-card__media--wide)::after {
  content: "наведите — осмотр сверху вниз";
  position: absolute;
  left: 50%;
  bottom: 0.75rem;
  transform: translateX(-50%);
  z-index: 2;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--tiron-line);
  background: rgba(29, 7, 5, 0.82);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--tiron-gold);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0.9;
  transition: opacity 0.35s ease;
}

.pdu-card__media:not(.pdu-card__media--wide):hover::after {
  opacity: 0;
}

.pdu-card__media img {
  width: auto;
  max-width: min(168px, 58%);
  height: auto;
  max-height: none;
  object-fit: contain;
  /* Старт: верх (голова / контроллер) */
  transform: translate3d(0, 0, 0);
  transition: transform 14s linear;
  will-change: transform;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
}

/* При наведении: сверху → вниз */
.pdu-card__media:not(.pdu-card__media--wide):hover img {
  transform: translate3d(0, min(0px, calc(400px - 100%)), 0);
}

.pdu-card__media--wide {
  height: 180px;
  min-height: 180px;
  max-height: 180px;
  align-items: center;
  justify-content: flex-start;
  padding: 1.25rem 0;
  container-type: inline-size;
  overflow: hidden;
}

.pdu-card__media--wide::after {
  content: "наведите — осмотр слева направо";
  position: absolute;
  left: 50%;
  bottom: 0.75rem;
  transform: translateX(-50%);
  z-index: 2;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--tiron-line);
  background: rgba(29, 7, 5, 0.82);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--tiron-gold);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0.9;
  transition: opacity 0.35s ease;
}

.pdu-card__media--wide:hover::after {
  opacity: 0;
}

.pdu-card__media--wide img {
  height: 140px;
  width: auto;
  max-height: 140px;
  max-width: none;
  object-fit: contain;
  /* Старт: левый край */
  transform: translate3d(0, 0, 0);
  transition: transform 14s linear;
  will-change: transform;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
}

/* При наведении: слева → направо */
.pdu-card__media--wide:hover img {
  transform: translate3d(min(0px, calc(100cqw - 100%)), 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .pdu-card__media img,
  .pdu-card__media--wide img {
    transition: none;
    transform: none;
    max-height: 280px;
  }

  .pdu-card__media--wide img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 140px;
  }

  .pdu-card__media:not(.pdu-card__media--wide)::after,
  .pdu-card__media--wide::after {
    content: none;
  }
}

.pdu-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.15rem 1.2rem 1.35rem;
  flex: 1;
}

.pdu-card__sku {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--tiron-gold);
  word-break: break-word;
}

.pdu-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.pdu-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border: 1px solid var(--tiron-line);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--tiron-muted);
}

.pdu-tag--accent {
  border-color: var(--tiron-gold);
  color: var(--tiron-gold);
}

.pdu-card__desc {
  font-size: 0.88rem;
  color: var(--tiron-muted);
  margin: 0;
  flex: 1;
}

.pdu-card__specs {
  display: none;
  margin: 0;
  padding: 0.75rem 0 0;
  border-top: 1px solid rgba(216, 190, 129, 0.15);
  font-size: 0.82rem;
  color: var(--tiron-muted);
}

.pdu-card__specs.is-open {
  display: block;
}

.pdu-card__specs dt {
  font-weight: 700;
  color: var(--tiron-white);
  margin-top: 0.45rem;
}

.pdu-card__specs dd {
  margin: 0.15rem 0 0;
}

.pdu-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.pdu-card__actions .tiron-btn {
  min-height: 2.4rem;
  padding: 0.45rem 0.95rem;
  font-size: 0.82rem;
}

.pdu-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--tiron-line);
}

.pdu-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  font-size: 0.86rem;
}

.pdu-table th,
.pdu-table td {
  padding: 0.85rem 0.9rem;
  text-align: left;
  border-bottom: 1px solid rgba(216, 190, 129, 0.15);
  vertical-align: top;
  color: var(--tiron-white) !important;
}

.pdu-table td,
.pdu-table td *,
.t-rec .pdu-table td,
.t-rec .pdu-table td * {
  color: var(--tiron-white) !important;
}

.pdu-table th,
.t-rec .pdu-table th {
  background: rgba(86, 20, 14, 0.55);
  color: var(--tiron-gold) !important;
  font-weight: 700;
  white-space: nowrap;
}

.pdu-table tr:hover td {
  background: rgba(216, 190, 129, 0.05);
}

.pdu-table code,
.t-rec .pdu-table code {
  font-family: inherit;
  font-size: 0.8rem;
  color: var(--tiron-white) !important;
}

.pdu-code {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .pdu-code {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.pdu-code__formula {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--tiron-gold);
  word-break: break-word;
  padding: 1.25rem;
  border: 1px solid var(--tiron-line);
  background: rgba(0, 0, 0, 0.2);
}

.pdu-code__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pdu-code__list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(216, 190, 129, 0.12);
  font-size: 0.92rem;
  color: var(--tiron-muted);
}

.pdu-code__list strong {
  color: var(--tiron-gold);
}

.pdu-download {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.75rem;
  border: 1px solid var(--tiron-line);
  background: linear-gradient(120deg, rgba(115, 27, 19, 0.45), rgba(29, 7, 5, 0.4));
}

/* Model detail modal */
html.pdu-modal-open,
html.pdu-modal-open body {
  overflow: hidden;
}

.pdu-modal[hidden] {
  display: none !important;
}

.pdu-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.pdu-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 3, 2, 0.78);
  backdrop-filter: blur(4px);
}

.pdu-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: min(90vh, 920px);
  overflow: auto;
  padding: 1.35rem 1.35rem 1.5rem;
  border: 1px solid var(--tiron-line);
  border-radius: 4px;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(115, 27, 19, 0.35), transparent 55%),
    #160504;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.pdu-modal__close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--tiron-line);
  border-radius: var(--tiron-radius);
  background: transparent;
  color: var(--tiron-gold);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.pdu-modal__grid {
  display: grid;
  gap: 1.35rem;
}

@media (min-width: 800px) {
  .pdu-modal__grid {
    grid-template-columns: 0.42fr 0.58fr;
    align-items: start;
  }
}

.pdu-modal__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  max-height: 420px;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(216, 190, 129, 0.14);
  overflow: hidden;
}

.pdu-modal__media img {
  width: auto;
  max-width: 100%;
  max-height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.4));
}

.pdu-modal__sku {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--tiron-gold);
  word-break: break-word;
  padding-right: 2.5rem;
}

.pdu-modal__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.85rem 0 1rem;
}

.pdu-modal__lead {
  margin: 0 0 1.1rem;
  color: var(--tiron-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.pdu-modal__specs {
  display: grid;
  grid-template-columns: minmax(8rem, 0.4fr) 1fr;
  gap: 0.45rem 1rem;
  margin: 0;
  padding: 0.9rem 0 0;
  border-top: 1px solid rgba(216, 190, 129, 0.18);
  font-size: 0.88rem;
}

.pdu-modal__specs dt {
  margin: 0;
  font-weight: 700;
  color: var(--tiron-gold);
}

.pdu-modal__specs dd {
  margin: 0;
  color: var(--tiron-white);
}

.pdu-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

/* === product-shell.css === */
/* Product shell pages */

.ps-hero {
  display: grid;
  gap: 1.5rem;
  max-width: 40rem;
}

.ps-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .ps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1050px) {
  .ps-grid.ps-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ps-item {
  padding: 1.35rem 1.25rem;
  border: 1px solid rgba(216, 190, 129, 0.18);
  background: linear-gradient(165deg, rgba(86, 20, 14, 0.3), rgba(29, 7, 5, 0.5));
  transition: border-color 0.3s ease, transform 0.35s var(--tiron-ease);
}

.ps-item:hover {
  border-color: var(--tiron-gold);
  transform: translateY(-3px);
}

.ps-item h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  color: var(--tiron-gold);
}

.ps-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--tiron-muted);
}

.ps-specs {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.ps-spec {
  display: grid;
  gap: 0.15rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(216, 190, 129, 0.12);
  font-size: 0.88rem;
}

.ps-spec strong {
  color: var(--tiron-white);
}

.ps-spec span {
  color: var(--tiron-muted);
}

.ps-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--tiron-line);
  margin-top: 1.5rem;
}

.ps-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 0.86rem;
}

.ps-table th,
.ps-table td {
  padding: 0.8rem 0.85rem;
  border-bottom: 1px solid rgba(216, 190, 129, 0.15);
  text-align: left;
  vertical-align: top;
  color: var(--tiron-muted);
}

.ps-table th {
  background: rgba(86, 20, 14, 0.55);
  color: var(--tiron-gold);
  font-weight: 700;
}

.ps-bullets {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.ps-bullets li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.1rem;
  border-bottom: 1px solid rgba(216, 190, 129, 0.12);
  color: var(--tiron-muted);
  font-size: 0.95rem;
}

.ps-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--tiron-gold);
}
