:root {
  --fire-red: #b32323;
  --fire-red-dark: #871717;
  --fire-soft: #f5e1dc;
}

.fire-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: center;
  gap: 36px;
  padding-top: 58px;
  padding-bottom: 34px;
}

.fire-hero__content {
  max-width: 700px;
}

.fire-eyebrow {
  color: var(--fire-red-dark);
}

.fire-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.fire-hero__facts span {
  padding: 8px 12px;
  background: var(--surface);
  border: 1px solid rgba(179, 35, 35, 0.24);
  border-radius: 999px;
  color: var(--fire-red-dark);
  font-size: 0.84rem;
  font-weight: 700;
}

.fire-btn {
  background: var(--fire-red);
  border-color: var(--fire-red);
  color: var(--white);
}

.fire-btn:hover {
  background: var(--fire-red-dark);
  border-color: var(--fire-red-dark);
}

.fire-showcase {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 12px;
}

.fire-showcase__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 170px;
  overflow: hidden;
  background: linear-gradient(180deg, #f7f2ea 0%, #efe7da 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-small);
}

.fire-showcase__item--large {
  grid-row: span 2;
  min-height: 352px;
}

.fire-showcase__item img {
  width: 100%;
  height: 100%;
  max-height: 352px;
  object-fit: contain;
}

.fire-note-section {
  padding-top: 8px;
}

.fire-note {
  padding: 18px 20px;
  background: var(--fire-soft);
  border: 1px solid rgba(179, 35, 35, 0.22);
  border-radius: var(--radius-small);
}

.fire-note strong {
  color: var(--fire-red-dark);
}

.fire-note p {
  margin: 4px 0 0;
  color: var(--text);
}

.fire-products-section {
  padding-top: 58px;
}

.fire-heading {
  margin-bottom: 28px;
}

.fire-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.fire-card {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-small);
  transition: box-shadow var(--transition);
}

.fire-card:hover {
  box-shadow: var(--shadow-hover);
}

.fire-card__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 178px;
  padding: 10px 12px;
  overflow: hidden;
  background: linear-gradient(180deg, #f7f2ea 0%, #efe7da 100%);
  border: 0;
  cursor: pointer;
}

.fire-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: normal;
}

.fire-card__overlay {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 5px 9px;
  background: rgba(22, 23, 18, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
}

.fire-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 14px;
}

.fire-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.fire-badge {
  padding: 5px 8px;
  background: var(--fire-soft);
  border-radius: 999px;
  color: var(--fire-red-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fire-price {
  color: var(--fire-red-dark);
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
}

.fire-card__body h2 {
  margin-bottom: 8px;
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
}

.fire-card__body p {
  margin-bottom: 12px;
  font-size: 0.84rem;
  line-height: 1.45;
}

.fire-card__actions {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 8px;
  margin-top: auto;
}

.fire-card__actions .btn {
  min-height: 36px;
  padding: 7px 9px;
  font-size: 0.8rem;
}

.fire-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
}

.fire-cta h2,
.fire-cta p {
  margin-bottom: 0;
}

@media (max-width: 1180px) {
  .fire-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .fire-hero {
    grid-template-columns: 1fr;
  }

  .fire-showcase {
    order: -1;
  }
}

@media (max-width: 820px) {
  .fire-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fire-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .fire-grid,
  .fire-showcase,
  .fire-card__actions {
    grid-template-columns: 1fr;
  }

  .fire-showcase__item--large {
    grid-row: auto;
    min-height: 220px;
  }

  .fire-card__media {
    height: 280px;
  }

  .fire-card__actions .btn,
  .fire-cta .btn {
    width: 100%;
  }
}


.fire-hero {
  display: block;
  padding-bottom: 20px;
}

.fire-hero__content {
  max-width: 1120px;
}

.fire-hero__content h1 {
  max-width: 15ch;
}

.fire-hero__content .lead {
  max-width: 860px;
}

.fire-hero__facts {
  max-width: 920px;
}

@media (max-width: 900px) {
  .fire-hero__content h1 {
    max-width: none;
  }
}


.fire-hero {
  display: flex;
  align-items: center;
  min-height: 420px;
  padding-top: 72px;
  padding-bottom: 72px;
}

.fire-hero__content {
  max-width: 1180px;
}

.fire-hero__content h1 {
  max-width: 15ch;
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.6vw, 4.9rem);
  line-height: 0.95;
  text-wrap: balance;
}

.fire-hero__content .lead {
  max-width: 920px;
  font-size: clamp(1.02rem, 1.7vw, 1.22rem);
}

.fire-hero__facts {
  max-width: 980px;
  margin-top: 22px;
}

.fire-hero .btn-row {
  margin-top: 24px;
}

.fire-hero .category-switcher {
  margin-top: 28px;
}

@media (max-width: 900px) {
  .fire-hero {
    min-height: auto;
    padding-top: 56px;
    padding-bottom: 34px;
  }

  .fire-hero__content h1 {
    max-width: none;
    font-size: clamp(2.7rem, 8vw, 4.2rem);
  }
}


.fire-hero__content h1 {
  letter-spacing: -0.04em;
  text-wrap: pretty;
}

.fire-hero .btn-row,
.fire-hero__facts,
.fire-hero .category-switcher {
  display: flex;
  flex-wrap: wrap;
}

:root[data-theme="dark"] {
  --fire-red: #d84f4f;
  --fire-red-dark: #ff9b94;
  --fire-soft: #352020;
}

:root[data-theme="dark"] .fire-card__media,
:root[data-theme="dark"] .fire-showcase__item {
  background: linear-gradient(180deg, #2c2421 0%, #201a18 100%);
}

:root[data-theme="dark"] .fire-btn {
  color: #1b1212;
}
