/* Roboto Condensed */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/roboto-condensed-v25-latin-regular.woff2') format('woff2'),
       url('../fonts/roboto-condensed-v25-latin-regular.woff') format('woff');
}

@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/roboto-condensed-v25-latin-700.woff2') format('woff2'),
       url('../fonts/roboto-condensed-v25-latin-700.woff') format('woff');
}

:root {
  --bg: #171717;
  --surface: #232323;
  --surface-2: #2b2b2b;
  --text: #f7f7f7;
  --muted: #bcbcbc;
  --line: rgba(255, 255, 255, 0.11);
  --brand: #9f0101;
  --brand-hover: #bd0909;
  --brand-soft: rgba(159, 1, 1, 0.16);
  --paypal: #ffc439;
  --paypal-text: #1f1f1f;
  --radius-lg: 22px;
  --radius-md: 14px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --shell: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(159, 1, 1, 0.14), transparent 36rem),
    var(--bg);
  color: var(--text);
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

a {
  color: inherit;
  text-underline-offset: 3px;
}

a:hover {
  text-decoration-thickness: 2px;
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(23, 23, 23, 0.86);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand__logo {
  width: auto;
  height: 44px;
}

.shop-section {
  padding: clamp(28px, 6vw, 72px) 0;
}

.page_content {
  padding: 0 !important;
  overflow: visible;
}

.shop-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(35, 35, 35, 0.94);
  box-shadow: var(--shadow);
}

.shop-intro {
  padding: clamp(26px, 5vw, 52px) !important;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(159, 1, 1, 0.20), rgba(159, 1, 1, 0.02) 52%);
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  color: #efaaaa;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.txt_big_2,
.shop-intro h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.025em;
}

.shop-intro p {
  max-width: 760px;
  margin: 0;
  color: #e6e6e6;
  font-size: clamp(1rem, 2vw, 1.12rem);
}

.shop-intro__notice {
  margin-top: 14px !important;
  color: var(--muted) !important;
}

.section-heading {
  padding: 32px clamp(20px, 5vw, 52px) 10px !important;
}

.section-heading h2 {
  margin: 0 0 4px;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.product-grid,
.page_downloads {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  padding: 18px clamp(20px, 5vw, 52px) 34px !important;
}

/* Product rows generated by %PRODUCTS% */
.page_downloads .row {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 16px;
  align-items: center;
  min-width: 0;
  min-height: 82px;
  margin: 0 !important;
  padding: 18px !important;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-2);
  color: var(--text);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.page_downloads .row:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.page_downloads .row.checked {
  border-color: #c71a1a;
  background: linear-gradient(135deg, #760000, var(--brand));
  box-shadow: 0 0 0 3px var(--brand-soft), 0 14px 28px rgba(0, 0, 0, 0.22);
}

.page_downloads .row input[type='radio'] {
  width: 22px;
  height: 22px;
  margin: 0;
  accent-color: #e04444;
  cursor: pointer;
}

.page_downloads .row label,
.page_downloads .row div,
.page_downloads .row span,
.page_downloads .row strong {
  min-width: 0;
}

.page_download,
.page_downloads .page_download {
  max-width: none;
  width: auto;
  height: auto;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-2);
  color: var(--text);
  box-shadow: none;
}

.checkout-panel {
  display: none;
  margin: 0 !important;
  padding: 0 !important;
  background: var(--brand);
  color: #fff;
}

.checkout-panel__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 24px clamp(20px, 5vw, 52px) !important;
}

.checkout-panel__copy {
  display: grid;
  gap: 3px;
  padding: 0 !important;
}

.checkout-panel__copy strong {
  font-size: 1.15rem;
}

.checkout-panel__copy span {
  opacity: 0.92;
}

.checkout-panel__action {
  padding: 0 !important;
}

.buy-button {
  min-width: 190px;
  min-height: 52px;
  padding: 12px 28px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #161616;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease;
}

.buy-button:hover {
  transform: translateY(-1px);
  background: #f2f2f2;
}

.buy-button:focus-visible,
.page_downloads .row:focus-within {
  outline: 3px solid rgba(255, 255, 255, 0.45);
  outline-offset: 3px;
}

.redirect-panel {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 !important;
  padding: 28px 24px !important;
  background: var(--paypal);
  color: var(--paypal-text);
  text-align: left;
}

.redirect-panel__icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.redirect-panel div {
  display: grid;
  padding: 0 !important;
}

.redirect-panel strong {
  font-size: 1.08rem;
}

.txt_big { font-size: 1.625rem; }
.txt_big_3 { font-size: 1rem; }
.txt_big_4 { font-size: 2rem; }
.txt_big_5 { font-size: 0.875rem; }
.txt_big_6 { font-size: 1.125rem; }

.line_top,
.page_headline {
  display: none;
}

.line_bottom {
  border-bottom: 1px solid var(--brand);
}

#customer_type {
  max-width: 100%;
}

input,
select,
textarea,
button {
  font: inherit;
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 24px, var(--shell));
  }

  .site-header__inner {
    min-height: 68px;
  }

  .brand__logo {
    height: 38px;
  }

  .shop-section {
    padding-top: 20px;
  }

  .product-grid,
  .page_downloads {
    grid-template-columns: 1fr;
  }

  .checkout-panel__inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .buy-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  .shell {
    width: min(100% - 16px, var(--shell));
  }

  .shop-card {
    border-radius: 16px;
  }

  .shop-intro {
    padding: 24px 20px !important;
  }

  .section-heading {
    padding: 24px 16px 6px !important;
  }

  .product-grid,
  .page_downloads {
    gap: 10px;
    padding: 14px 16px 24px !important;
  }

  .page_downloads .row,
  .page_download {
    padding: 15px !important;
  }

  .checkout-panel__inner {
    padding: 20px 16px !important;
  }

  .redirect-panel {
    justify-content: flex-start;
    padding: 20px 16px !important;
  }
}

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