.redtek-body {
  background: #000;
  color: #fff;
  font-family: var(--redtek-font-body);
}

.redtek-body .container-xl {
  width: 100%;
  max-width: var(--redtek-container-max);
  padding-right: var(--redtek-container-pad-mobile);
  padding-left: var(--redtek-container-pad-mobile);
}

:root {
  --redtek-font-display: "Rajdhani", sans-serif;
  --redtek-font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --redtek-bg-0: #000000;
  --redtek-bg-50: #050505;
  --redtek-bg-75: #080808;
  --redtek-bg-100: #0d0d0d;
  --redtek-bg-125: #111111;
  --redtek-text-0: #ffffff;
  --redtek-text-100: #e5e7eb;
  --redtek-text-200: #d1d5db;
  --redtek-text-300: #9ca3af;
  --redtek-text-400: #6b7280;
  --redtek-text-500: #4b5563;
  --redtek-border-soft: rgba(255, 255, 255, 0.06);
  --redtek-border-red-soft: rgba(127, 29, 29, 0.2);
  --redtek-border-red-mid: rgba(220, 38, 38, 0.4);
  --redtek-red-400: #f87171;
  --redtek-red-500: #ef4444;
  --redtek-red-600: #dc2626;
  --redtek-red-700: #b91c1c;
  --redtek-red-900-20: rgba(127, 29, 29, 0.2);
  --redtek-green-500: #10b981;
  --redtek-container-max: 80rem;
  --redtek-container-pad-mobile: 1rem;
  --redtek-container-pad-desktop: 2rem;
  --redtek-section-pad-mobile: 5rem;
  --redtek-section-pad-desktop: 7rem;
  --redtek-radius-sm: 0.125rem;
  --redtek-radius-md: 0.375rem;
  --redtek-radius-lg: 0.5rem;
  --redtek-radius-xl: 0.75rem;
  --redtek-shadow-red-sm: 0 0 10px rgba(255, 0, 0, 0.5);
  --redtek-shadow-red-md: 0 0 12px rgba(255, 0, 0, 0.3);
  --redtek-shadow-red-lg: 0 0 20px rgba(255, 0, 0, 0.4), 0 0 40px rgba(255, 0, 0, 0.15);
  --redtek-shadow-red-card: 0 0 24px rgba(255, 0, 0, 0.2);
  --redtek-title-size-section: clamp(1.875rem, 5vw, 3rem);
  --redtek-title-size-hero: clamp(2.25rem, 8vw, 5.5rem);
}

@media (min-width: 768px) {
  .redtek-body .container-xl {
    padding-right: var(--redtek-container-pad-desktop);
    padding-left: var(--redtek-container-pad-desktop);
  }
}

.redtek-main {
  min-height: calc(100dvh - 12rem);
  padding-top: 5rem;
}

.redtek-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1050;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.redtek-header.is-scrolled {
  background: rgba(0, 0, 0, 0.95);
  border-bottom-color: rgba(127, 29, 29, 0.55);
  box-shadow: 0 12px 30px rgba(69, 10, 10, 0.15);
  backdrop-filter: blur(12px);
}

.redtek-header__inner {
  min-height: 5rem;
  padding-top: 0;
  padding-bottom: 0;
}

.redtek-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.redtek-header__brand:hover {
  text-decoration: none;
}

.redtek-header__logo {
  width: auto;
  height: 2.25rem;
}

.redtek-header__brand-mark {
  display: inline-block;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--redtek-radius-sm);
  background: var(--redtek-red-600);
  box-shadow: var(--redtek-shadow-red-sm);
  color: var(--redtek-text-0);
  font-family: var(--redtek-font-display);
  font-size: 1.125rem;
  font-weight: 900;
  line-height: 2.25rem;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
}

.redtek-header__brand-text {
  color: var(--redtek-text-0);
  font-family: var(--redtek-font-display);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  vertical-align: middle;
}

.redtek-header__brand-text span {
  color: var(--redtek-red-500);
  text-shadow: 0 0 8px rgba(255, 0, 0, 0.6);
}

.redtek-nav__list {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  margin-top: 0;
}

.redtek-nav__link {
  position: relative;
  display: inline-block;
  padding-bottom: 0.25rem;
  color: #d1d5db;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.redtek-nav__link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #ef4444;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.redtek-nav__link:hover,
.redtek-nav__link:focus {
  color: #ef4444;
  text-decoration: none;
}

.redtek-nav__link:hover::after,
.redtek-nav__link:focus::after {
  transform: scaleX(1);
}

.redtek-header__actions {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.redtek-header__icon,
.redtek-header__menu {
  display: inline-block;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  background: transparent;
  color: #d1d5db;
  font-size: 1.25rem;
  line-height: 2.25rem;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
}

.redtek-header__icon:hover,
.redtek-header__icon:focus,
.redtek-header__menu:hover,
.redtek-header__menu:focus {
  color: #fff;
  text-decoration: none;
}

.redtek-header__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  border-radius: var(--redtek-radius-md);
  background: var(--redtek-red-600);
  box-shadow: var(--redtek-shadow-red-md);
  color: var(--redtek-text-0);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

.redtek-header__cta:hover,
.redtek-header__cta:focus {
  background: var(--redtek-red-700);
  color: var(--redtek-text-0);
  text-decoration: none;
}

/* -------------------------------------------------------------------------- */
/* RedTek header mini-cart — same markup + behavior as `templates/element/    */
/* header/cart_dropdown.php` + `webroot/js/cart_hover.js` (Project Jerky bar). */
/* Visual tokens match RedTek shell (red badge, dark panel).                 */
/* -------------------------------------------------------------------------- */
.redtek-header .pj-cart {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.redtek-header .pj-cart__trigger.redtek-header__cart-trigger {
  position: relative;
  display: inline-block;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #d1d5db;
  font-size: 1.25rem;
  line-height: 2.25rem;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
}

.redtek-header .pj-cart__trigger.redtek-header__cart-trigger:hover,
.redtek-header .pj-cart__trigger.redtek-header__cart-trigger:focus {
  color: #fff;
  text-decoration: none;
}

.redtek-header .pj-cart__text:empty {
  display: none;
}

.redtek-header .pj-cart__badge {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 1.125rem;
  height: 1.125rem;
  padding: 0 0.25rem;
  border-radius: 999px;
  background: #dc2626;
  color: #fff;
  font-size: 0.625rem;
  font-weight: 800;
  line-height: 1.125rem;
  text-align: center;
  box-shadow: 0 0 0 2px #000;
}

.redtek-header .pj-cart__dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  z-index: 99999;
  display: none;
  width: min(22.5rem, 92vw);
  padding: 0.75rem;
  border: 1px solid #1f2937;
  border-radius: 0.375rem;
  background: #0a0a0a;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.65);
}

.redtek-header .pj-cart__dropdown.is-open {
  display: block;
}

.redtek-header .pj-cart__items {
  display: grid;
  gap: 0.625rem;
}

.redtek-header .pj-cart__empty {
  padding: 0.5rem 0;
  color: #9ca3af;
  font-size: 0.8125rem;
}

.redtek-header .pj-cartItem {
  display: grid;
  grid-template-columns: 1fr 3.25rem;
  gap: 0.625rem;
  align-items: start;
  padding: 0.625rem 0;
  border-bottom: 1px solid #1f2937;
}

.redtek-header .pj-cartItem:first-child {
  padding-top: 0;
}

.redtek-header .pj-cartItem:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.redtek-header .pj-cartItem__name {
  color: #f9fafb;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.25;
}

.redtek-header .pj-cartItem__sub {
  margin-top: 0.25rem;
  color: #9ca3af;
  font-size: 0.75rem;
}

.redtek-header .pj-cartItem__thumb img {
  width: 3.25rem;
  height: 3.25rem;
  border: 1px solid #1f2937;
  border-radius: 0.25rem;
  object-fit: cover;
}

.redtek-header .pj-cart__subtotal {
  display: table;
  width: 100%;
  margin-top: 0.625rem;
  padding-top: 0.625rem;
  border-top: 1px solid #1f2937;
  font-size: 0.8125rem;
}

.redtek-header .pj-cart__subtotalLabel,
.redtek-header .pj-cart__subtotalVal {
  display: table-cell;
  vertical-align: middle;
}

.redtek-header .pj-cart__subtotalLabel {
  color: #ef4444;
  font-weight: 800;
}

.redtek-header .pj-cart__subtotalVal {
  font-weight: 800;
  color: #f9fafb;
  text-align: right;
}

.redtek-header .pj-cart__actions {
  margin-top: 0.625rem;
  text-align: center;
}

.redtek-header .pj-cart__btn {
  display: inline-block;
  width: 48%;
  margin-right: 2%;
  padding: 0.625rem 0.5rem;
  border: 1px solid #374151;
  border-radius: 0.25rem;
  background: #111827;
  color: #e5e7eb;
  font-size: 0.8125rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  vertical-align: top;
}

.redtek-header .pj-cart__btn:last-child {
  margin-right: 0;
}

.redtek-header .pj-cart__btn--primary {
  border-color: rgba(220, 38, 38, 0.55);
  background: #dc2626;
  color: #fff;
}

.redtek-mobile-nav {
  border-top: 1px solid rgba(127, 29, 29, 0.4);
  background: rgba(0, 0, 0, 0.98);
}

.redtek-mobile-nav__item {
  border-bottom: 1px solid #1f2937;
}

.redtek-mobile-nav__link {
  display: block;
  padding: 0.9rem 0;
  color: #d1d5db;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
}

.redtek-mobile-nav__link:hover,
.redtek-mobile-nav__link:focus {
  color: #ef4444;
  text-decoration: none;
}

.redtek-mobile-nav__item--cta {
  border-bottom: 0;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.redtek-mobile-nav__cta {
  display: block;
  padding: 0.85rem 1rem;
  border-radius: 0.375rem;
  background: #dc2626;
  color: #fff;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.redtek-mobile-nav__cta:hover,
.redtek-mobile-nav__cta:focus {
  background: #b91c1c;
  color: #fff;
  text-decoration: none;
}

.redtek-footer {
  border-top: 1px solid rgba(127, 29, 29, 0.2);
  background: #080808;
  color: #9ca3af;
}

.redtek-footer .container-xl {
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.redtek-footer__top {
  margin-bottom: 3rem;
}

.redtek-footer__logo {
  width: auto;
  height: 2.25rem;
  margin-bottom: 1.25rem;
}

.redtek-footer__brand-text {
  margin-bottom: 1.25rem;
  color: #fff;
  font-family: var(--redtek-font-display);
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.redtek-footer__summary {
  max-width: 22rem;
  margin-bottom: 1.5rem;
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.7;
}

.redtek-footer__eyebrow,
.redtek-footer__title {
  margin-bottom: 1rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.redtek-footer__helper {
  margin-bottom: 1rem;
  color: #4b5563;
  font-size: 0.75rem;
}

.redtek-footer__input {
  border-color: #1f2937;
  background: #111;
  color: #fff;
}

.redtek-footer__input::placeholder {
  color: #6b7280;
}

.redtek-footer__input:focus {
  border-color: rgba(220, 38, 38, 0.7);
  background: #111;
  color: #fff;
  box-shadow: none;
}

.redtek-footer__submit {
  width: 100%;
  border: 0;
  background: #dc2626;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
}

.redtek-footer__submit:hover,
.redtek-footer__submit:focus {
  background: #b91c1c;
  color: #fff;
}

.redtek-footer__list {
  margin-bottom: 0;
}

.redtek-footer__list li {
  margin-bottom: 0.75rem;
}

.redtek-footer__list a {
  color: #6b7280;
  font-size: 0.875rem;
  text-decoration: none;
}

.redtek-footer__list a:hover,
.redtek-footer__list a:focus {
  color: #f87171;
  text-decoration: none;
}

.redtek-footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid #111827;
}

.redtek-footer__copyright {
  margin-bottom: 0;
  color: #4b5563;
  font-size: 0.75rem;
}

.redtek-footer__social a {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  color: #4b5563;
  font-size: 1rem;
  line-height: 2rem;
  text-align: center;
  text-decoration: none;
}

.redtek-footer__social a:hover,
.redtek-footer__social a:focus {
  color: #ef4444;
  text-decoration: none;
}

@media (max-width: 991.98px) {
  .redtek-main {
    padding-top: 4.5rem;
  }

  .redtek-header__inner {
    min-height: 4rem;
  }

  .redtek-header__actions {
    gap: 0.75rem;
  }

  .redtek-header__logo {
    height: 1.9rem;
  }

  .redtek-footer .container-xl {
    padding-top: 3rem;
  }

  .redtek-footer__bottom {
    text-align: center;
  }
}

.redtek-section {
  position: relative;
}

.redtek-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.redtek-btn:hover,
.redtek-btn:focus {
  text-decoration: none;
}

.redtek-btn--primary {
  overflow: hidden;
  background: #dc2626;
  box-shadow: 0 0 20px rgba(255,0,0,0.4), 0 0 40px rgba(255,0,0,0.15);
  color: #fff;
}

.redtek-btn--primary:hover,
.redtek-btn--primary:focus {
  background: #b91c1c;
  color: #fff;
}

.redtek-btn--ghost {
  border: 1px solid rgba(220,38,38,0.6);
  color: #f87171;
}

.redtek-btn--ghost:hover,
.redtek-btn--ghost:focus {
  border-color: #ef4444;
  color: #fca5a5;
}

.redtek-btn__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background: linear-gradient(90deg, #b91c1c, #ef4444);
  transition: opacity 0.3s ease;
}

.redtek-btn:hover .redtek-btn__glow,
.redtek-btn:focus .redtek-btn__glow {
  opacity: 1;
}

.redtek-btn > span,
.redtek-btn > i {
  position: relative;
  z-index: 1;
}

.redtek-card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.redtek-card-hover:hover,
.redtek-card-hover:focus {
  text-decoration: none;
}

.redtek-icon-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
}

.redtek-section__eyebrow {
  margin-bottom: 0.75rem;
  color: var(--redtek-red-500);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.redtek-section__eyebrow--left {
  text-align: left;
}

.redtek-section__eyebrow--inline {
  display: inline-block;
  margin-bottom: 0;
}

.redtek-section__title {
  margin-bottom: 1rem;
  color: var(--redtek-text-0);
  font-family: var(--redtek-font-display);
  font-size: var(--redtek-title-size-section);
  font-weight: 900;
  line-height: 1;
}

.redtek-section__title--left {
  text-align: left;
}

.redtek-section__rule {
  width: 4rem;
  height: 2px;
  margin: 0 auto 1.5rem;
  background: var(--redtek-red-600);
}

.redtek-hero {
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(135deg, var(--redtek-bg-0) 0%, #0a0000 50%, var(--redtek-bg-0) 100%);
}

.redtek-hero__background,
.redtek-hero__veil,
.redtek-hero__canvas,
.redtek-hero__orb {
  position: absolute;
  inset: 0;
}

.redtek-hero__background {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.2;
}

.redtek-hero__veil {
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.3), rgba(0,0,0,0.8));
}

.redtek-hero__canvas {
  width: 100%;
  height: 100%;
}

.redtek-hero__orb {
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  width: 24rem;
  height: 24rem;
  margin-top: -12rem;
  margin-left: -12rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,0,0,0.08) 0%, transparent 70%);
  animation: redtekPulseGlow 4s ease-in-out infinite;
}

.redtek-hero__container {
  position: relative;
  z-index: 2;
  padding-top: 8.5rem;
  padding-bottom: 5rem;
}

.redtek-hero__content {
  width: 100%;
  max-width: 64rem;
  margin: 0 auto;
  padding-right: 1rem;
  padding-left: 1rem;
  text-align: center;
}

.redtek-hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  padding: 0.45rem 1rem;
  border: 1px solid var(--redtek-border-red-mid);
  border-radius: 999px;
  background: rgba(220,38,38,0.2);
  color: var(--redtek-red-400);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  animation: redtekFadeUp 0.6s ease forwards;
}

.redtek-hero__badge::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  margin-right: 0.5rem;
  border-radius: 50%;
  background: var(--redtek-red-500);
  animation: redtekBlink 1.2s ease-in-out infinite;
}

.redtek-hero__title {
  margin-bottom: 1.5rem;
  color: var(--redtek-text-0);
  font-family: var(--redtek-font-display);
  font-size: clamp(3rem, 7vw, 6.75rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  animation: redtekFadeUp 0.8s ease 0.1s both;
}

.redtek-hero__title span {
  color: var(--redtek-red-500);
  text-shadow: 0 0 30px rgba(255,0,0,0.6), 0 0 60px rgba(255,0,0,0.3);
}

.redtek-hero__subtitle {
  max-width: 41rem;
  margin: 0 auto 2.5rem;
  color: var(--redtek-text-200);
  font-size: clamp(1rem, 1.8vw, 1.14rem);
  line-height: 1.55;
  animation: redtekFadeUp 0.8s ease 0.2s both;
}

.redtek-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.75rem;
  animation: redtekFadeUp 0.8s ease 0.3s both;
}

.redtek-hero__btn {
  min-width: 11.75rem;
}

.redtek-hero__stats {
  max-width: 28rem;
  margin: 0 auto 2.75rem;
  animation: redtekFadeUp 0.8s ease 0.4s both;
  text-align: center;
}

.redtek-hero__stat-value {
  color: var(--redtek-red-500);
  font-family: var(--redtek-font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 900;
}

.redtek-hero__stat-label {
  color: var(--redtek-text-300);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
}

.redtek-hero__scroll {
  color: rgba(156,163,175,0.8);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.redtek-hero__scroll i {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.125rem;
  animation: redtekBounceDown 1.5s ease-in-out infinite;
}

.redtek-trust-bar {
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  border-top: 1px solid var(--redtek-border-red-soft);
  border-bottom: 1px solid var(--redtek-border-red-soft);
  background: var(--redtek-bg-100);
}

.redtek-trust-bar__item {
  padding: 0.45rem 1rem;
}

.redtek-trust-bar__item--divider {
  border-right: 1px solid transparent;
}

.redtek-trust-bar__icon-wrap {
  border-radius: var(--redtek-radius-md);
  background: rgba(220,38,38,0.1);
  color: var(--redtek-red-500);
  font-size: 1.125rem;
}

.redtek-trust-bar__title {
  color: var(--redtek-text-0);
  font-size: 0.875rem;
  font-weight: 600;
}

.redtek-trust-bar__desc {
  color: var(--redtek-text-400);
  font-size: 0.75rem;
}

.redtek-categories,
.redtek-testimonials,
.redtek-why,
.redtek-products,
.redtek-news {
  padding-top: 5rem;
  padding-bottom: 6rem;
}

.redtek-categories {
  background: var(--redtek-bg-0);
}

.redtek-category-card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255,0,0,0.1);
  border-radius: var(--redtek-radius-lg);
  text-decoration: none;
}

.redtek-category-card__media,
.redtek-category-card__overlay,
.redtek-category-card__glow {
  position: absolute;
  inset: 0;
}

.redtek-category-card__media {
  position: relative;
  display: block;
  height: 19rem;
}

.redtek-category-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

.redtek-category-card__overlay {
  background: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0.6), transparent);
}

.redtek-category-card__glow {
  opacity: 0;
  box-shadow: inset 0 0 0 1.5px rgba(255,0,0,0.6), 0 0 20px rgba(255,0,0,0.2);
  transition: opacity 0.3s ease;
}

.redtek-category-card__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
}

.redtek-category-card__icon {
  margin-bottom: 0.75rem;
  color: #ef4444;
  font-size: 1.25rem;
}

.redtek-category-card__name {
  display: block;
  color: var(--redtek-text-0);
  font-family: var(--redtek-font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.redtek-category-card__description {
  display: block;
  color: var(--redtek-text-300);
  font-size: 0.75rem;
}

.redtek-category-card__arrow {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  background: rgba(220,38,38,0.2);
  color: #f87171;
  font-size: 0.875rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.redtek-category-card:hover,
.redtek-category-card:focus {
  text-decoration: none;
}

.redtek-category-card:hover .redtek-category-card__image,
.redtek-category-card:focus .redtek-category-card__image {
  transform: scale(1.1);
}

.redtek-category-card:hover .redtek-category-card__glow,
.redtek-category-card:focus .redtek-category-card__glow {
  opacity: 1;
}

.redtek-category-card:hover .redtek-category-card__arrow,
.redtek-category-card:focus .redtek-category-card__arrow {
  background: #dc2626;
  color: #fff;
}

.redtek-products {
  background: var(--redtek-bg-50);
}

.redtek-products__head {
  margin-bottom: 2.75rem;
}

.redtek-products__subtitle {
  color: var(--redtek-text-400);
  font-size: 0.875rem;
  line-height: 1.5;
}

.redtek-products__trend {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.25rem;
  color: #f87171;
  font-size: 0.875rem;
  font-weight: 600;
}

.redtek-products__trend span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #ef4444;
  animation: redtekBlink 1.2s ease-in-out infinite;
}

.redtek-product-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 0.5rem;
  background: #0d0d0d;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.redtek-product-card--link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.redtek-product-card--link:hover,
.redtek-product-card--link:focus {
  color: inherit;
  text-decoration: none;
}

.redtek-product-card:hover,
.redtek-product-card:focus-within {
  border-color: rgba(255,0,0,0.3);
  box-shadow: 0 0 24px rgba(255,0,0,0.2);
}

.redtek-product-card__media {
  position: relative;
  height: 13rem;
  overflow: hidden;
  background: #111;
}

.redtek-product-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,1), transparent);
  opacity: 0.6;
}

.redtek-product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

.redtek-product-card:hover .redtek-product-card__image,
.redtek-product-card:focus-within .redtek-product-card__image {
  transform: scale(1.05);
}

.redtek-product-card__badge,
.redtek-product-card__stock {
  position: absolute;
  top: 0.75rem;
  z-index: 2;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.redtek-product-card__badge {
  left: 0.75rem;
  padding: 0.25rem 0.625rem;
  color: #fff;
  line-height: 1.2;
}

.redtek-product-card__badge--best-seller {
  background: #dc2626;
}

.redtek-product-card__badge--trending {
  background: #ea580c;
}

.redtek-product-card__badge--new {
  background: #059669;
}

.redtek-product-card__stock {
  right: 0.75rem;
  padding: 0.25rem 0.6rem;
  border: 1px solid rgba(220,38,38,0.5);
  background: rgba(0,0,0,0.8);
  color: #f87171;
}

.redtek-product-card__body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  min-height: calc(100% - 13rem);
}

.redtek-product-card__rating {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  margin-bottom: 0.5rem;
  color: #ef4444;
  font-size: 0.75rem;
}

.redtek-product-card__rating i {
  width: 0.75rem;
  text-align: center;
}

.redtek-product-card__rating span {
  margin-left: 0.5rem;
  color: #6b7280;
}

.redtek-product-card__title {
  min-height: 2.7rem;
  margin-bottom: 0.875rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.375;
}

.redtek-product-card--link:hover .redtek-product-card__title,
.redtek-product-card--link:focus .redtek-product-card__title {
  color: #f87171;
}

.redtek-product-card__hook,
.redtek-product-card__excerpt {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.redtek-product-card__hook {
  margin-bottom: 0.75rem;
  color: #9ca3af;
  font-size: 0.75rem;
  font-style: italic;
  -webkit-line-clamp: 1;
}

.redtek-product-card__excerpt {
  margin-bottom: 1rem;
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.6;
  -webkit-line-clamp: 4;
}

.redtek-product-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid #1f2937;
  color: #6b7280;
  font-size: 0.75rem;
}

.redtek-product-card__meta span:last-child {
  margin-left: auto;
}

.redtek-product-card__price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.redtek-product-card__pricing {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.redtek-product-card__price {
  color: #ef4444;
  font-family: var(--redtek-font-display);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
}

.redtek-product-card__original {
  color: #4b5563;
  font-size: 0.875rem;
  text-decoration: line-through;
}

.redtek-product-card__discount {
  color: #10b981;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.redtek-product-card__button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: auto;
  padding: 0.625rem 1rem;
  border: 0;
  border-radius: 0.375rem;
  background: #dc2626;
  box-shadow: 0 0 12px rgba(255,0,0,0.25);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
}

.redtek-product-card__button i {
  font-size: 0.875rem;
}

.redtek-product-card__button:hover,
.redtek-product-card__button:focus {
  background: #b91c1c;
}

.redtek-product-card__button.is-added {
  background: #059669;
  box-shadow: none;
}

.redtek-products__view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
  padding: 0.85rem 2rem;
  border: 1px solid rgba(220,38,38,0.4);
  border-radius: 0.375rem;
  color: #f87171;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.redtek-products__view-all i {
  transition: transform 0.3s ease;
}

.redtek-products__view-all:hover,
.redtek-products__view-all:focus {
  border-color: #ef4444;
  color: #fca5a5;
  text-decoration: none;
}

.redtek-products__view-all:hover i,
.redtek-products__view-all:focus i {
  transform: translateX(0.25rem);
}

.redtek-testimonials {
  overflow: hidden;
  background: #000;
}

.redtek-testimonials__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: repeating-linear-gradient(45deg, #ff0000 0, #ff0000 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}

.redtek-testimonials__container,
.redtek-why__container {
  position: relative;
  z-index: 2;
}

.redtek-testimonials__card {
  padding: 2rem 2.25rem;
  border: 1px solid rgba(255,0,0,0.15);
  border-left: 4px solid #ff0000;
  border-radius: 0.75rem;
  background: #0d0d0d;
}

.redtek-testimonials__slide {
  display: none;
}

.redtek-testimonials__slide.is-active {
  display: block;
}

.redtek-testimonials__quote-icon {
  margin-bottom: 1rem;
  color: rgba(220,38,38,0.6);
  font-size: 2.5rem;
}

.redtek-testimonials__stars {
  margin-bottom: 1rem;
  color: #ef4444;
  font-size: 0.875rem;
}

.redtek-testimonials__quote {
  margin-bottom: 1.5rem;
  color: #e5e7eb;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.8;
}

.redtek-testimonials__avatar-wrap {
  position: relative;
  min-height: 3rem;
  padding-left: 4rem;
}

.redtek-testimonials__avatar {
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  height: 3rem;
  border: 2px solid #ff0000;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
}

.redtek-testimonials__name {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.redtek-testimonials__location {
  color: #6b7280;
  font-size: 0.875rem;
}

.redtek-testimonials__purchase {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid #1f2937;
  border-radius: 999px;
  color: #6b7280;
  font-size: 0.75rem;
}

.redtek-testimonials__nav {
  margin-top: 2rem;
  text-align: center;
}

.redtek-testimonials__arrow,
.redtek-testimonials__dot {
  display: inline-block;
  vertical-align: middle;
}

.redtek-testimonials__arrow {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(220,38,38,0.4);
  border-radius: 50%;
  background: transparent;
  color: #f87171;
  line-height: 2.4rem;
  text-align: center;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.redtek-testimonials__dots {
  display: inline-block;
  margin: 0 1rem;
}

.redtek-testimonials__dot {
  width: 0.5rem;
  height: 0.5rem;
  margin: 0 0.25rem;
  border: 0;
  border-radius: 999px;
  background: #374151;
  transition: width 0.3s ease, background-color 0.3s ease;
}

.redtek-testimonials__dot.is-active {
  width: 1.5rem;
  background: #dc2626;
}

.redtek-testimonials__arrow:hover,
.redtek-testimonials__arrow:focus {
  border-color: #ef4444;
  color: #fca5a5;
}

.redtek-testimonials__stats {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid #111827;
}

.redtek-testimonials__stat-value {
  margin-bottom: 0.3rem;
  color: #ef4444;
  font-family: var(--redtek-font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 900;
}

.redtek-testimonials__stat-label {
  color: #6b7280;
  font-size: 0.875rem;
}

.redtek-why {
  overflow: hidden;
  background: #050505;
}

.redtek-why__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 37.5rem;
  height: 37.5rem;
  margin-top: -18.75rem;
  margin-left: -18.75rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,0,0,0.04) 0%, transparent 70%);
}

.redtek-why__subtitle {
  max-width: 40rem;
  margin: 0 auto 3rem;
  color: #6b7280;
  font-size: 1rem;
}

.redtek-why-card {
  position: relative;
  height: 100%;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.05);
  border-top: 2px solid rgba(255,0,0,0.4);
  border-radius: 0.5rem;
  background: #0d0d0d;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.redtek-why-card:hover,
.redtek-why-card:focus-within {
  background: #111;
  box-shadow: 0 0 20px rgba(255,0,0,0.1);
}

.redtek-why-card__index {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: rgba(255,0,0,0.06);
  font-family: var(--redtek-font-display);
  font-size: 3.5rem;
  font-weight: 900;
}

.redtek-why-card__icon {
  display: inline-block;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;
  background: rgba(220,38,38,0.1);
  color: #ef4444;
  font-size: 1.6rem;
  line-height: 3.5rem;
  text-align: center;
}

.redtek-why-card__title {
  margin-bottom: 0.75rem;
  color: #fff;
  font-family: var(--redtek-font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.redtek-why-card__description {
  margin-bottom: 0;
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.75;
}

.redtek-cta {
  overflow: hidden;
  background: linear-gradient(135deg, #1a0000 0%, #000 40%, #0d0000 100%);
}

.redtek-cta__pattern,
.redtek-cta__overlay,
.redtek-cta__glow {
  position: absolute;
  inset: 0;
}

.redtek-cta__pattern {
  opacity: 0.1;
  background-image: var(--redtek-cta-image);
  background-position: center;
  background-size: cover;
}

.redtek-cta__overlay {
  background: linear-gradient(to right, rgba(0,0,0,0.8), transparent, rgba(0,0,0,0.8));
}

.redtek-cta__glow {
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  width: 31.25rem;
  height: 18.75rem;
  margin-top: -9.375rem;
  margin-left: -15.625rem;
  background: radial-gradient(ellipse, rgba(255,0,0,0.12) 0%, transparent 70%);
}

.redtek-cta__container {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.redtek-cta__badge {
  margin-bottom: 2rem;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(220,38,38,0.4);
  border-radius: 999px;
  background: rgba(220,38,38,0.2);
  color: #f87171;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.redtek-cta__title {
  margin-bottom: 1.5rem;
  color: #fff;
  font-family: var(--redtek-font-display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 0.95;
}

.redtek-cta__title span {
  color: #ef4444;
  text-shadow: 0 0 30px rgba(255,0,0,0.5);
}

.redtek-cta__subtitle {
  max-width: 38rem;
  margin: 0 auto 2.5rem;
  color: #9ca3af;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.redtek-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.redtek-cta__urgency {
  color: #ef4444;
  font-size: 0.875rem;
  font-weight: 600;
}

.redtek-news {
  border-top: 1px solid #111827;
  background: #080808;
}

.redtek-news__head {
  margin-bottom: 2.5rem;
}

.redtek-news__eyebrow-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.redtek-news__eyebrow-bar {
  display: block;
  flex: 0 0 auto;
  width: 0.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background: #dc2626;
}

.redtek-news__subtitle {
  color: #6b7280;
  font-size: 0.875rem;
}

.redtek-news__view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #9ca3af;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.redtek-news__view-all:hover,
.redtek-news__view-all:focus {
  color: #f87171;
  text-decoration: none;
}

.redtek-news__view-all--mobile {
  margin-top: 2rem;
  display: inline-block;
}

.redtek-news-hero {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 0.75rem;
  text-decoration: none;
  cursor: pointer;
}

.redtek-news-hero__media {
  display: block;
  height: 24rem;
}

.redtek-news-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.7s ease;
}

.redtek-news-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0.5), transparent);
}

.redtek-news-hero__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.75rem;
  z-index: 2;
}

.redtek-news__pill {
  display: inline-block;
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.redtek-news__pill--default { background: #3f3f46; color: #fff; }
.redtek-news__pill--gaming { background: #dc2626; color: #fff; }
.redtek-news__pill--audio { background: #f97316; color: #fff; }
.redtek-news__pill--peripherals { background: #e11d48; color: #fff; }
.redtek-news__pill--ai-tech { background: #52525b; color: #fff; }
.redtek-news__pill--reviews { background: #d97706; color: #fff; }
.redtek-news__pill--buying-guides { background: #047857; color: #fff; }

.redtek-news-hero__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.redtek-news-hero__tags .redtek-news__pill {
  margin: 0;
}

.redtek-news__trending {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #f87171;
  font-size: 0.75rem;
  font-weight: 700;
}

.redtek-news-hero__title {
  display: block;
  margin-bottom: 0.5rem;
  color: #fff;
  font-family: var(--redtek-font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1.15;
}

.redtek-news-hero__hook {
  display: block;
  margin-bottom: 1rem;
  color: #9ca3af;
  font-size: 0.875rem;
  font-style: italic;
}

.redtek-news-hero__meta {
  color: #6b7280;
  font-size: 0.75rem;
}

.redtek-news-hero__meta i {
  margin-right: 0.25rem;
}

.redtek-news-hero__cta {
  display: inline-block;
  margin-top: 1rem;
  color: #f87171;
  font-size: 0.875rem;
  font-weight: 700;
  transition: transform 0.3s ease, color 0.3s ease;
}

.redtek-news-hero:hover,
.redtek-news-hero:focus,
.redtek-news-side-card:hover,
.redtek-news-side-card:focus,
.redtek-news-explore:hover,
.redtek-news-explore:focus {
  text-decoration: none;
}

.redtek-news-hero:hover .redtek-news-hero__image,
.redtek-news-hero:focus .redtek-news-hero__image {
  transform: scale(1.05);
}

.redtek-news-hero:hover .redtek-news-hero__cta,
.redtek-news-hero:focus .redtek-news-hero__cta {
  color: #fca5a5;
  transform: translateX(0.25rem);
}

.redtek-news-side-card {
  display: block;
  margin-bottom: 1.25rem;
  padding: 1rem;
  border: 1px solid #111827;
  border-radius: 0.75rem;
  background: #111;
  text-decoration: none;
  transition: border-color 0.3s ease;
}

.redtek-news-side-card:hover,
.redtek-news-side-card:focus {
  border-color: rgba(127,29,29,0.4);
}

.redtek-news-side-card__media {
  display: block;
  height: 6rem;
  overflow: hidden;
  border-radius: 0.5rem;
}

.redtek-news-side-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

.redtek-news-side-card:hover .redtek-news-side-card__image,
.redtek-news-side-card:focus .redtek-news-side-card__image {
  transform: scale(1.1);
}

.redtek-news-side-card__body {
  display: block;
  padding-left: 1rem;
}

.redtek-news-side-card__title {
  display: block;
  margin-top: 0.6rem;
  color: #fff;
  font-family: var(--redtek-font-display);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.redtek-news-side-card:hover .redtek-news-side-card__title,
.redtek-news-side-card:focus .redtek-news-side-card__title {
  color: #f87171;
}

.redtek-news-side-card__meta {
  margin-top: 0.75rem;
  color: #6b7280;
  font-size: 0.75rem;
}

.redtek-news-side-card__meta i {
  margin-right: 0.2rem;
}

.redtek-news-explore {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(127,29,29,0.3);
  border-radius: 0.75rem;
  background: rgba(220,38,38,0.1);
  text-decoration: none;
  transition: border-color 0.3s ease;
}

.redtek-news-explore__text {
  display: inline-block;
  max-width: calc(100% - 3.5rem);
}

.redtek-news-explore__title {
  display: block;
  color: #fff;
  font-family: var(--redtek-font-display);
  font-size: 1.1rem;
  font-weight: 900;
}

.redtek-news-explore__subtitle {
  display: block;
  color: #6b7280;
  font-size: 0.75rem;
}

.redtek-news-explore__icon {
  display: inline-block;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: #dc2626;
  color: #fff;
  font-size: 1.125rem;
  line-height: 2.25rem;
  text-align: center;
  vertical-align: middle;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.redtek-news-explore:hover,
.redtek-news-explore:focus {
  border-color: rgba(220,38,38,0.5);
}

.redtek-news-explore:hover .redtek-news-explore__icon,
.redtek-news-explore:focus .redtek-news-explore__icon {
  background: #b91c1c;
  transform: translateX(0.25rem);
}

.redtek-news-page {
  min-height: 100vh;
  background: #0a0a0a;
}

.redtek-news-page__masthead {
  padding-top: 5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #111827;
  background: #0d0d0d;
}

.redtek-news-page__title {
  margin-bottom: 0.75rem;
  color: #fff;
  font-family: var(--redtek-font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.05;
}

.redtek-news-page__subtitle {
  max-width: 40rem;
  margin-bottom: 1.5rem;
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.7;
}

.redtek-news-page__cta {
  min-width: 14rem;
}

.redtek-news-page__search-form {
  max-width: 22rem;
  margin-left: auto;
}

.redtek-news-page__search-label {
  margin-bottom: 0.5rem;
  color: #9ca3af;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.redtek-news-page__search-icon {
  border-color: #1f2937;
  background: #111;
  color: #6b7280;
}

.redtek-news-page__search-input {
  border-color: #1f2937;
  background: #111;
  color: #fff;
}

.redtek-news-page__search-input::placeholder {
  color: #4b5563;
}

.redtek-news-page__search-input:focus {
  border-color: rgba(220, 38, 38, 0.5);
  background: #111;
  color: #fff;
  box-shadow: none;
}

.redtek-news-page__filters {
  margin-top: 2rem;
  margin-bottom: 0;
}

.redtek-news-page__filter {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid #1f2937;
  border-radius: 999px;
  background: #1a1a1a;
  color: #9ca3af;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
}

.redtek-news-page__filter:hover,
.redtek-news-page__filter:focus {
  border-color: #374151;
  color: #fff;
  text-decoration: none;
}

.redtek-news-page__filter.is-active {
  border-color: #dc2626;
  background: #dc2626;
  color: #fff;
}

button.redtek-news-page__filter {
  font-family: inherit;
  cursor: pointer;
}

.redtek-news-page__filter--tag {
  border-color: rgba(217, 119, 6, 0.3);
  background: rgba(217, 119, 6, 0.12);
  color: #f59e0b;
}

.redtek-news-page__content {
  padding-top: 2.5rem;
  padding-bottom: 5rem;
}

.redtek-news-page__hero-block,
.redtek-news-page__feature-block,
.redtek-news-page__trending-block {
  margin-bottom: 3rem;
}

.redtek-news-page__trending-block {
  padding: 1.5rem;
  border: 1px solid #1f2937;
  border-radius: 0.75rem;
  background: #111;
}

.redtek-news-page__section-title {
  margin-bottom: 0;
  color: #fff;
  font-family: var(--redtek-font-display);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.redtek-news-feature-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 0.75rem;
  text-decoration: none;
}

.redtek-news-feature-card__media {
  display: block;
  height: 16rem;
}

.redtek-news-feature-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

.redtek-news-feature-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}

.redtek-news-feature-card__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
  z-index: 2;
}

.redtek-news-feature-card__hot {
  display: inline-block;
  margin-left: 0.35rem;
  color: #f87171;
  font-size: 0.75rem;
  font-weight: 700;
}

.redtek-news-feature-card__title {
  display: block;
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
  color: #fff;
  font-family: var(--redtek-font-display);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.2;
}

.redtek-news-feature-card__hook {
  display: block;
  margin-bottom: 0.75rem;
  color: #9ca3af;
  font-size: 0.75rem;
  font-style: italic;
}

.redtek-news-feature-card__meta {
  color: #6b7280;
  font-size: 0.75rem;
}

.redtek-news-feature-card:hover,
.redtek-news-feature-card:focus {
  text-decoration: none;
}

.redtek-news-feature-card:hover .redtek-news-feature-card__image,
.redtek-news-feature-card:focus .redtek-news-feature-card__image {
  transform: scale(1.05);
}

.redtek-news-rank-card {
  display: block;
  text-decoration: none;
}

.redtek-news-rank-card__media {
  position: relative;
  display: block;
  height: 7rem;
  margin-bottom: 0.75rem;
  overflow: hidden;
  border-radius: 0.5rem;
}

.redtek-news-rank-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.redtek-news-rank-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

.redtek-news-rank-card__rank {
  display: block;
  margin-bottom: 0.35rem;
  color: #ef4444;
  font-family: var(--redtek-font-display);
  font-size: 1.4rem;
  font-weight: 900;
}

.redtek-news-rank-card__title {
  display: block;
  margin-bottom: 0.35rem;
  color: #fff;
  font-family: var(--redtek-font-display);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.35;
}

.redtek-news-rank-card__meta {
  display: block;
  color: #6b7280;
  font-size: 0.75rem;
}

.redtek-news-rank-card:hover,
.redtek-news-rank-card:focus {
  text-decoration: none;
}

.redtek-news-rank-card:hover .redtek-news-rank-card__image,
.redtek-news-rank-card:focus .redtek-news-rank-card__image {
  transform: scale(1.08);
}

.redtek-news-rank-card:hover .redtek-news-rank-card__title,
.redtek-news-rank-card:focus .redtek-news-rank-card__title {
  color: #f87171;
}

.redtek-news-page__count {
  color: #6b7280;
  font-size: 0.875rem;
}

.redtek-news-page__sidebar {
  position: sticky;
  top: 6rem;
}

.redtek-news-page__sidebar-card,
.redtek-news-page__cta-card {
  margin-bottom: 1.5rem;
  padding: 1.3rem;
  border: 1px solid #1f2937;
  border-radius: 0.75rem;
  background: #111;
}

.redtek-news-page__sidebar-title {
  margin-bottom: 1rem;
  color: #fff;
  font-family: var(--redtek-font-display);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.redtek-news-page__most-read-item {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.redtek-news-page__most-read-item--border {
  margin-bottom: 0.75rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid #1f2937;
}

.redtek-news-page__most-read-link {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  text-decoration: none;
}

.redtek-news-page__most-read-rank {
  display: block;
  flex: 0 0 1.2rem;
  color: #6b7280;
  font-family: var(--redtek-font-display);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.1;
}

.redtek-news-page__most-read-text {
  display: block;
  color: #d1d5db;
  font-family: var(--redtek-font-display);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.35;
}

.redtek-news-page__most-read-link:hover,
.redtek-news-page__most-read-link:focus {
  text-decoration: none;
}

.redtek-news-page__most-read-link:hover .redtek-news-page__most-read-text,
.redtek-news-page__most-read-link:focus .redtek-news-page__most-read-text {
  color: #f87171;
}

.redtek-news-page__topics {
  margin-bottom: 0;
}

.redtek-news-page__topic-link {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border: 1px solid #1f2937;
  border-radius: 999px;
  background: #111827;
  color: #9ca3af;
  font-size: 0.75rem;
  text-decoration: none;
}

.redtek-news-page__topic-link:hover,
.redtek-news-page__topic-link:focus {
  border-color: rgba(127,29,29,0.5);
  color: #f87171;
  text-decoration: none;
}

.redtek-news-page__cta-card {
  border-color: rgba(127,29,29,0.3);
  background: linear-gradient(135deg, rgba(69,10,10,0.55), #111);
}

.redtek-news-page__cta-eyebrow {
  margin-bottom: 0.5rem;
  color: #ef4444;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.redtek-news-page__cta-title {
  margin-bottom: 0.5rem;
  color: #fff;
  font-family: var(--redtek-font-display);
  font-size: 1.25rem;
  font-weight: 900;
}

.redtek-news-page__cta-copy {
  margin-bottom: 1rem;
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.6;
}

.redtek-news-page__cta-link {
  display: block;
  padding: 0.85rem 1rem;
  border-radius: 0.5rem;
  background: #dc2626;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.redtek-news-page__cta-link:hover,
.redtek-news-page__cta-link:focus {
  background: #b91c1c;
  color: #fff;
  text-decoration: none;
}

.redtek-news-page__empty {
  padding: 4rem 1rem;
  text-align: center;
}

.redtek-news-page__empty-icon {
  margin-bottom: 1rem;
  color: #374151;
  font-size: 2.5rem;
}

.redtek-news-page__empty-title {
  margin-bottom: 0.35rem;
  color: #fff;
  font-family: var(--redtek-font-display);
  font-size: 1.5rem;
  font-weight: 900;
}

.redtek-news-page__empty-copy {
  color: #6b7280;
}

.redtek-news-page__load-more {
  display: inline-block;
  padding: 0.9rem 2rem;
  border: 1px solid #1f2937;
  border-radius: 0.75rem;
  background: #111;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.redtek-news-page__load-more:hover,
.redtek-news-page__load-more:focus {
  border-color: rgba(127,29,29,0.5);
  color: #fff;
  text-decoration: none;
}

.redtek-news-page__load-more-note {
  margin-top: 0.75rem;
  color: #4b5563;
  font-size: 0.75rem;
}

.redtek-article-page__hero {
  position: relative;
  height: 26rem;
  overflow: hidden;
}

.redtek-article-page__hero-image,
.redtek-article-page__hero-overlay {
  position: absolute;
  inset: 0;
}

.redtek-article-page__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.redtek-article-page__hero-overlay {
  background: linear-gradient(to top, #0a0a0a, rgba(0,0,0,0.55), rgba(0,0,0,0.2));
}

.redtek-article-page__hero-content {
  position: relative;
  z-index: 2;
  padding-top: 8rem;
}

.redtek-news-page__back-link {
  color: #9ca3af;
  font-size: 0.875rem;
  text-decoration: none;
}

.redtek-news-page__back-link:hover,
.redtek-news-page__back-link:focus {
  color: #fff;
  text-decoration: none;
}

.redtek-article-page__title {
  margin-bottom: 1rem;
  color: #fff;
  font-family: var(--redtek-font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.08;
}

.redtek-article-page__hook {
  max-width: 42rem;
  color: #d1d5db;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.7;
}

.redtek-article-page__content {
  padding-top: 2.5rem;
  padding-bottom: 5rem;
}

.redtek-article-page__meta {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #1f2937;
}

.redtek-article-page__author {
  position: relative;
  min-height: 3rem;
  padding-left: 3.75rem;
}

.redtek-article-page__author-avatar {
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
}

.redtek-article-page__author-text,
.redtek-article-page__author-name,
.redtek-article-page__author-role {
  display: block;
}

.redtek-article-page__author-name {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
}

.redtek-article-page__author-role {
  color: #6b7280;
  font-size: 0.75rem;
}

.redtek-article-page__meta-list {
  color: #6b7280;
  font-size: 0.85rem;
}

.redtek-article-page__meta-list i {
  margin-right: 0.25rem;
}

.redtek-article-page__share a {
  color: #9ca3af;
  font-size: 0.85rem;
  text-decoration: none;
}

.redtek-article-page__share a:hover,
.redtek-article-page__share a:focus {
  color: #fff;
  text-decoration: none;
}

.redtek-article-page__excerpt {
  margin-bottom: 2rem;
  padding: 1.5rem;
  border-left: 4px solid #dc2626;
  border-radius: 0 0.75rem 0.75rem 0;
  background: rgba(127,29,29,0.16);
}

.redtek-article-page__excerpt p {
  margin-bottom: 0;
  color: #e5e7eb;
  font-size: 1.05rem;
  line-height: 1.8;
}

.redtek-article-page__body p {
  margin-bottom: 1.5rem;
  color: #d1d5db;
  font-size: 1rem;
  line-height: 1.85;
}

.redtek-article-page__tags {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #1f2937;
}

.redtek-article-page__author-card {
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  border: 1px solid #1f2937;
  border-radius: 0.75rem;
  background: #111;
}

.redtek-article-page__author-card-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
}

.redtek-article-page__author-card-name {
  margin-bottom: 0.2rem;
  color: #fff;
  font-family: var(--redtek-font-display);
  font-size: 1.25rem;
  font-weight: 900;
}

.redtek-article-page__author-card-role {
  margin-bottom: 0.5rem;
  color: #f87171;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.redtek-article-page__author-card-copy {
  margin-bottom: 0;
  color: #9ca3af;
  line-height: 1.7;
}

.redtek-article-page__related {
  margin-top: 3rem;
}

@keyframes redtekPulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.3); opacity: 1; }
}

@keyframes redtekBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes redtekFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes redtekBounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@media (min-width: 992px) {
  .redtek-trust-bar__item--divider {
    border-right-color: rgba(127, 29, 29, 0.2);
  }
}

@media (max-width: 991.98px) {
  .redtek-hero__container {
    padding-top: 8rem;
    padding-bottom: 3rem;
  }

  .redtek-hero__orb {
    width: 18rem;
    height: 18rem;
    margin-top: -9rem;
    margin-left: -9rem;
  }

  .redtek-categories,
  .redtek-testimonials,
  .redtek-why,
  .redtek-products,
  .redtek-news {
    padding-top: 4rem;
    padding-bottom: 4.5rem;
  }

  .redtek-hero__actions {
    flex-direction: column;
  }

  .redtek-hero__btn {
    width: 100%;
    max-width: 18rem;
  }

  .redtek-products__trend {
    margin-top: 0;
    text-align: left;
  }

  .redtek-testimonials__quote {
    font-size: 1rem;
  }

  .redtek-news-side-card__body {
    padding-top: 1rem;
    padding-left: 0;
  }

  .redtek-news-page__masthead {
    padding-top: 4.5rem;
    padding-bottom: 2.5rem;
  }

  .redtek-news-page__search-form {
    margin-left: 0;
  }

  .redtek-news-page__sidebar {
    position: static;
  }

  .redtek-news-page__trending-block {
    padding: 1.25rem;
  }

  .redtek-article-page__hero {
    height: 22rem;
  }

  .redtek-article-page__hero-content {
    padding-top: 6.5rem;
  }

}

/* Redtek product detail page (Readdy parity). */
.redtek-pdp {
  background: #000;
}

.redtek-pdp__container {
  width: min(1280px, calc(100% - 2rem));
  margin: 0 auto;
}

.redtek-pdp__main {
  padding-top: 5rem;
  padding-bottom: 3rem;
}

.redtek-pdp__crumbs {
  margin-bottom: 1.5rem;
  color: #6b7280;
  font-size: 0.8125rem;
}

.redtek-pdp__crumbs a {
  color: #6b7280;
  text-decoration: none;
}

.redtek-pdp__crumbs a:hover {
  color: #f87171;
}

.redtek-pdp__crumbs span {
  margin: 0 0.35rem;
}

.redtek-pdp__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.redtek-pdp__image-wrap {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.5rem;
  background: #111;
  aspect-ratio: 1 / 1;
}

.redtek-pdp__main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.redtek-pdp__empty {
  padding: 2rem 1rem;
  color: #6b7280;
  text-align: center;
}

.redtek-pdp__thumbs {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.5rem;
}

.redtek-pdp__thumb-btn {
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.375rem;
  background: #111;
  overflow: hidden;
  cursor: pointer;
}

.redtek-pdp__thumb-btn.is-active {
  border-color: #ef4444;
}

.redtek-pdp__thumb-btn img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top;
  display: block;
}

.redtek-pdp__eyebrow {
  margin-bottom: 0.5rem;
  color: #ef4444;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.redtek-pdp__title {
  margin-bottom: 0.8rem;
  color: #fff;
  font-family: var(--redtek-font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.05;
}

.redtek-pdp__rating {
  color: #ef4444;
}

.redtek-pdp__rating-star {
  margin-right: 0.1rem;
  font-size: 0.875rem;
}

.redtek-pdp__rating-meta {
  color: #6b7280;
  font-size: 0.85rem;
}

.redtek-pdp__price-row {
  margin-bottom: 1rem;
}

.redtek-pdp__price {
  margin-right: 0.6rem;
  color: #ef4444;
  font-family: var(--redtek-font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
}

.redtek-pdp__compare {
  margin-right: 0.45rem;
  color: #4b5563;
  font-size: 1.1rem;
  text-decoration: line-through;
}

.redtek-pdp__discount {
  display: inline-block;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.9);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
}

.redtek-pdp__desc {
  margin-bottom: 1rem;
  color: #9ca3af;
  font-size: 0.94rem;
  line-height: 1.7;
}

.redtek-pdp__desc--html p,
.redtek-pdp__desc--html li,
.redtek-pdp__desc--html td,
.redtek-pdp__desc--html th {
  color: inherit;
}

.redtek-pdp__desc--html > *:last-child {
  margin-bottom: 0;
}

.redtek-pdp__stock-row {
  font-size: 0.9rem;
}

.redtek-pdp__stock {
  color: #6b7280;
  font-weight: 500;
}

.redtek-pdp__stock.is-in {
  color: #34d399;
}

.redtek-pdp__stock-dot {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  margin-right: 0.45rem;
  border-radius: 999px;
  background: #6b7280;
  vertical-align: middle;
}

.redtek-pdp__stock.is-in .redtek-pdp__stock-dot {
  background: #10b981;
  animation: redtek-pdp-stock-pulse 1.2s ease-in-out infinite;
}

@keyframes redtek-pdp-stock-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}

.redtek-pdp__stock-low {
  color: #f87171;
  font-size: 0.875rem;
  font-weight: 600;
}

.redtek-pdp__field {
  margin-bottom: 0.9rem;
}

.redtek-pdp__field label {
  margin-bottom: 0.35rem;
  color: #9ca3af;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.redtek-pdp__option-label {
  color: #9ca3af;
  font-size: 0.875rem;
  font-weight: 600;
}

.redtek-pdp__option-value {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
}

.redtek-pdp__sku-row {
  font-size: 0.75rem;
  color: #6b7280;
}

.redtek-pdp__sku-label {
  margin-right: 0.25rem;
}

.redtek-pdp__sku-value {
  color: #d1d5db;
  margin-right: 0.75rem;
}

.redtek-pdp__variant-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.redtek-pdp__variant-chip {
  border: 1px solid #374151;
  border-radius: 0.375rem;
  background: #111;
  color: #d1d5db;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.55rem 0.9rem;
  cursor: pointer;
}

.redtek-pdp__variant-chip.is-active {
  border-color: #dc2626;
  background: #dc2626;
  color: #fff;
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.25);
}

.redtek-pdp__field select {
  width: 100%;
  height: 2.8rem;
  border: 1px solid #1f2937;
  border-radius: 0.375rem;
  background: #111;
  color: #fff;
  padding: 0 0.65rem;
}

.redtek-pdp__cart-row {
  margin-bottom: 1.2rem;
}

.redtek-pdp__qty {
  display: grid;
  grid-template-columns: 2.25rem 3rem 2.25rem;
  align-items: stretch;
  min-height: 2.25rem;
  border: 1px solid #374151;
  border-radius: 0.375rem;
  overflow: hidden;
  background: #111;
}

.redtek-pdp__qty-btn {
  border: 0;
  background: #111;
  color: #fff;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.redtek-pdp__qty-btn:disabled {
  color: #6b7280;
  cursor: not-allowed;
  opacity: 0.85;
}

.redtek-pdp__qty-input {
  border: 0;
  border-left: 1px solid #374151;
  border-right: 1px solid #374151;
  background: #111;
  color: #fff;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  width: 100%;
  min-width: 0;
  -moz-appearance: textfield;
}

.redtek-pdp__qty-input::-webkit-outer-spin-button,
.redtek-pdp__qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.redtek-pdp__add-btn {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 0 16px rgba(255, 0, 0, 0.3);
}

.redtek-pdp__add-btn:disabled {
  opacity: 0.55;
  box-shadow: none;
}

.redtek-pdp__trust-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem;
  align-items: start;
  padding: 0.55rem 0.65rem;
  border: 1px solid #1f2937;
  border-radius: 0.375rem;
  background: #111;
  color: #9ca3af;
  font-size: 0.75rem;
}

.redtek-pdp__trust-card i {
  color: #ef4444;
  font-size: 1.1rem;
  line-height: 1.2;
}

.redtek-pdp__trust-card strong,
.redtek-pdp__trust-card small {
  display: block;
}

.redtek-pdp__trust-card strong {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
}

.redtek-pdp__trust-card small {
  color: #6b7280;
  font-size: 0.625rem;
}

.redtek-pdp__reviews,
.redtek-pdp__related {
  padding: 3rem 0;
  border-top: 1px solid #1f2937;
}

.redtek-pdp__section-title {
  margin-bottom: 1.25rem;
}

.redtek-pdp__section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: center;
}

.redtek-pdp__review-total {
  color: #6b7280;
  font-size: 0.875rem;
}

.redtek-pdp__review-summary {
  margin-bottom: 1rem;
  display: grid;
  grid-template-columns: minmax(110px, 170px) 1fr;
  gap: 1.5rem;
}

.redtek-pdp__review-score strong {
  display: inline-block;
  margin-right: 0.5rem;
  color: #fff;
  font-family: var(--redtek-font-display);
  font-size: 2.8rem;
  line-height: 1;
}

.redtek-pdp__review-score span {
  color: #6b7280;
  font-size: 0.8rem;
}

.redtek-pdp__rating--summary {
  margin: 0.35rem 0 0.2rem;
}

.redtek-pdp__review-bars {
  display: grid;
  gap: 0.4rem;
}

.redtek-pdp__review-bar-row {
  display: grid;
  grid-template-columns: 44px 1fr 24px;
  gap: 0.5rem;
  align-items: center;
}

.redtek-pdp__review-bar-label {
  color: #9ca3af;
  font-size: 0.75rem;
}

.redtek-pdp__review-bar-label i {
  color: #fbbf24;
  font-size: 0.65rem;
}

.redtek-pdp__review-bar-track {
  height: 8px;
  border: 1px solid #1f2937;
  border-radius: 999px;
  background: #111;
  overflow: hidden;
}

.redtek-pdp__review-bar-track span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: #fbbf24;
}

.redtek-pdp__review-bar-count {
  color: #6b7280;
  font-size: 0.75rem;
  text-align: right;
}

.redtek-pdp__review-toolbar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
}

.redtek-pdp__review-filters {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  gap: 0.4rem;
  overflow-x: auto;
}

.redtek-pdp__review-filters button,
.redtek-pdp__review-sort button {
  border: 1px solid #1f2937;
  border-radius: 999px;
  background: #111;
  color: #9ca3af;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.65rem;
  white-space: nowrap;
  cursor: pointer;
}

.redtek-pdp__review-filters button i {
  color: #fbbf24;
}

.redtek-pdp__review-filters button.is-active {
  border-color: #dc2626;
  background: #dc2626;
  color: #fff;
}

.redtek-pdp__review-list {
  display: grid;
  gap: 0.75rem;
}

.redtek-pdp__related-card {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.5rem;
  background: #0d0d0d;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
}

.redtek-pdp__related-card:hover {
  border-color: rgba(255, 0, 0, 0.25);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.15);
  text-decoration: none;
}

.redtek-pdp__related-media {
  display: block;
  width: 100%;
  height: 10rem;
  overflow: hidden;
  background: #111;
}

.redtek-pdp__related-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

.redtek-pdp__related-card:hover .redtek-pdp__related-media img {
  transform: scale(1.05);
}

.redtek-pdp__related-title {
  display: block;
  padding: 0.75rem 0.75rem 0.25rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
}

.redtek-pdp__related-price {
  display: block;
  padding: 0 0.75rem 0.75rem;
  color: #ef4444;
  font-family: var(--redtek-font-display);
  font-size: 1rem;
  font-weight: 900;
}

.redtek-pdp__review-card {
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.5rem;
  background: #0d0d0d;
}

.redtek-pdp__review-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.5rem;
}

.redtek-pdp__review-author {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 0.5rem;
  align-items: center;
}

.redtek-pdp__review-avatar {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 999px;
  background: rgba(220, 38, 38, 0.15);
  color: #f87171;
  font-size: 0.72rem;
  font-weight: 700;
}

.redtek-pdp__review-author-meta strong,
.redtek-pdp__review-author-meta small {
  display: block;
}

.redtek-pdp__review-author-meta strong {
  color: #fff;
  font-size: 0.85rem;
}

.redtek-pdp__review-author-meta small {
  color: #6b7280;
  font-size: 0.72rem;
}

.redtek-pdp__review-stars i {
  margin-left: 0.05rem;
  color: #fbbf24;
  font-size: 0.78rem;
}

.redtek-pdp__review-helpful {
  margin-top: 0.55rem;
  padding-top: 0.55rem;
  border-top: 1px solid #1f2937;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  align-items: center;
}

.redtek-pdp__review-helpful span {
  color: #6b7280;
  font-size: 0.72rem;
}

.redtek-pdp__review-helpful button {
  border: 0;
  background: transparent;
  color: #9ca3af;
  font-size: 0.72rem;
  cursor: pointer;
}

.redtek-pdp__write-cta {
  margin-top: 1.25rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.5rem;
  background: #0d0d0d;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: center;
}

.redtek-pdp__write-cta p {
  margin: 0 0 0.2rem;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}

.redtek-pdp__write-cta small {
  color: #6b7280;
  font-size: 0.75rem;
}

.redtek-pdp__write-cta button {
  border: 0;
  border-radius: 0.375rem;
  background: #dc2626;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.65rem 0.85rem;
  box-shadow: 0 0 16px rgba(255, 0, 0, 0.25);
  cursor: pointer;
}

.redtek-pdp__review-load-wrap {
  margin-top: 0.9rem;
  text-align: center;
}

.redtek-pdp__review-load {
  border: 1px solid #1f2937;
  border-radius: 0.5rem;
  background: #111;
  color: #d1d5db;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.65rem 1rem;
  cursor: pointer;
}

.redtek-pdp__review-form-wrap {
  margin-top: 1rem;
}

.redtek-pdp__review-form {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.5rem;
  background: #0d0d0d;
}

.redtek-pdp__review-form h3 {
  margin-bottom: 0.8rem;
  color: #fff;
  font-family: var(--redtek-font-display);
  font-size: 1.2rem;
  font-weight: 900;
}

.redtek-pdp__review-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.redtek-pdp__review-form label span {
  display: block;
  margin-bottom: 0.3rem;
  color: #9ca3af;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.redtek-pdp__review-form input,
.redtek-pdp__review-form select,
.redtek-pdp__review-form textarea {
  width: 100%;
  border: 1px solid #1f2937;
  border-radius: 0.375rem;
  background: #111;
  color: #fff;
  padding: 0.55rem 0.65rem;
}

.redtek-pdp__review-form-actions {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.redtek-pdp__review-form-actions button {
  border: 1px solid #374151;
  border-radius: 0.375rem;
  background: #111;
  color: #d1d5db;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.6rem 0.75rem;
  cursor: pointer;
}

.redtek-pdp__review-form-actions #redtekPdpReviewSubmit {
  border-color: #dc2626;
  background: #dc2626;
  color: #fff;
}

.redtek-pdp__review-card h3 {
  margin: 0 0 0.4rem;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}

.redtek-pdp__review-card p {
  margin: 0;
  color: #9ca3af;
  font-size: 0.85rem;
  line-height: 1.65;
}

.redtek-pdp__related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}


@media (min-width: 992px) {
  .redtek-pdp__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .redtek-pdp__related-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .redtek-pdp__main {
    padding-top: 4.5rem;
    padding-bottom: 2.5rem;
  }

  .redtek-pdp__review-summary {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .redtek-pdp__review-toolbar {
    grid-template-columns: 1fr;
  }

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

  .redtek-pdp__review-form-grid,
  .redtek-pdp__review-form-actions {
    grid-template-columns: 1fr;
  }
}

/* Cart (RedTek storefront) — empty state + line thumbs */
.redtek-cart__empty-visual {
  width: 5rem;
  height: 5rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: 999px;
  background: var(--redtek-bg-125, #111);
  border: 1px solid #374151;
  color: #9ca3af;
  font-size: 2rem;
  line-height: 5rem;
  text-align: center;
}

.redtek-cart__empty-lede {
  max-width: 28rem;
}

.redtek-cart__line-thumb-wrap {
  width: 4.5rem;
  height: 4.5rem;
}

@media (min-width: 768px) {
  .redtek-cart__line-thumb-wrap {
    width: 5.5rem;
    height: 5.5rem;
  }
}

.redtek-cart__line-thumb-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.redtek-cart__remove-btn i {
  font-size: 1.15rem;
}

.redtek-cart__card,
.redtek-cart__panel {
  background: #0d0d0d;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

/* Qty strip: grid tracks are fixed width; prevent the bordered box stretching full column */
.redtek-cart__line-qty.redtek-pdp__qty {
  width: fit-content;
  max-width: 100%;
}

/* Cart promo: single definition (do not reuse news toolbar search classes here) */
.redtek-cart__promo-group .redtek-cart__promo-addon {
  border-color: #1f2937;
  background: #111;
  color: #6b7280;
}

.redtek-cart__promo-input {
  border-color: #1f2937;
  background: #111;
  color: #fff;
}

.redtek-cart__promo-input::placeholder {
  color: #4b5563;
}

.redtek-cart__promo-input:focus {
  border-color: rgba(220, 38, 38, 0.5);
  background: #111;
  color: #fff;
  box-shadow: none;
  outline: 0;
}

.redtek-cart__line-body {
  min-width: 0;
}

.redtek-cart__line-thumb-img--top {
  object-position: top center;
}

.redtek-cart__line-title:hover {
  color: var(--redtek-red-400);
}

.redtek-cart__line-actions {
  text-align: right;
  white-space: nowrap;
}

.redtek-cart__line-actions .redtek-cart__line-price {
  display: inline-block;
  margin-right: 0.75rem;
  vertical-align: middle;
  font-size: 1rem;
  font-weight: 900;
}

.redtek-cart__line-actions .redtek-cart__remove-form {
  display: inline-block;
  vertical-align: middle;
}

.redtek-cart__summary-title {
  font-family: var(--redtek-font-display);
}

@media (min-width: 992px) {
  .redtek-cart__summary-sticky {
    position: sticky;
    top: 5.5rem;
  }
}

.redtek-cart__ship-progress-track {
  height: 0.35rem;
  border-radius: 999px;
  background: #1f2937;
  overflow: hidden;
}

.redtek-cart__ship-progress-fill {
  height: 100%;
  border-radius: 999px;
  background: #dc2626;
  transition: width 0.35s ease;
}

.redtek-cart__free-ship-alert {
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
  border: 1px solid rgba(16, 185, 129, 0.45);
  background: rgba(6, 78, 59, 0.25);
  color: #6ee7b7;
  font-size: 0.875rem;
  font-weight: 600;
}

.redtek-cart__total-figure {
  font-size: 1.75rem;
}

/* Checkout — layout parity with Readdy `src/pages/checkout/*.tsx` (Tailwind → tokens) */
.redtek-checkout__page-head {
  margin-bottom: 1.5rem;
}

.redtek-checkout__page-kicker {
  margin-bottom: 0.25rem;
  color: #ef4444;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.redtek-checkout__page-title {
  margin-bottom: 0;
  color: #fff;
  font-family: var(--redtek-font-display);
  font-size: clamp(1.5rem, 4vw, 1.875rem);
  font-weight: 900;
  line-height: 1.15;
}

@media (min-width: 768px) {
  .redtek-checkout__page-title {
    font-size: 1.875rem;
  }
}

/* StepIndicator — page.tsx */
.redtek-checkout__step-indicator {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.redtek-checkout__step-cluster {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.redtek-checkout__step-inner {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.redtek-checkout__step-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
}

.redtek-checkout__step-circle--done {
  background: #059669;
  color: #fff;
}

.redtek-checkout__step-circle--done i {
  font-size: 0.75rem;
}

.redtek-checkout__step-circle--active {
  background: #dc2626;
  color: #fff;
}

.redtek-checkout__step-circle--todo {
  border: 1px solid #374151;
  background: #111;
  color: #6b7280;
}

.redtek-checkout__step-text {
  display: none;
  font-size: 0.75rem;
  font-weight: 500;
}

@media (min-width: 576px) {
  .redtek-checkout__step-text {
    display: inline;
  }
}

.redtek-checkout__step-text--on {
  color: #fff;
}

.redtek-checkout__step-text--off {
  color: #6b7280;
}

.redtek-checkout__step-connector {
  width: 1.5rem;
  height: 1px;
  background: #1f2937;
}

.redtek-checkout__step-connector--done {
  background: #059669;
}

.redtek-readdy-panel {
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #0d0d0d;
}

.redtek-readdy-panel__body {
  padding: 1.25rem 1.25rem;
}

@media (min-width: 768px) {
  .redtek-readdy-panel__body {
    padding: 1.5rem 1.5rem;
  }
}

.redtek-checkout__field-label {
  letter-spacing: 0.08em;
}

.redtek-checkout__field,
.redtek-checkout select.redtek-checkout__field,
.redtek-checkout .redtek-cart__promo-addon,
.redtek-checkout .redtek-cart__promo-input,
.redtek-checkout .redtek-cart__promo-group .redtek-btn,
.redtek-checkout__ship-option,
.redtek-checkout__stripe-box {
  border: 1px solid #4b5563 !important;
  border-radius: 0.375rem;
  background: #111;
  color: #fff;
}

.redtek-checkout__field,
.redtek-checkout select.redtek-checkout__field,
.redtek-checkout .redtek-cart__promo-input {
  display: block;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.625rem 0.75rem;
  line-height: 1.4;
  background-clip: padding-box;
}

.redtek-checkout .redtek-cart__promo-addon,
.redtek-checkout .redtek-cart__promo-group .redtek-btn {
  min-height: 2.75rem;
}

.redtek-checkout__field::placeholder,
.redtek-checkout .redtek-cart__promo-input::placeholder {
  color: #4b5563;
}

.redtek-checkout__field:focus,
.redtek-checkout .redtek-cart__promo-input:focus {
  border-color: rgba(220, 38, 38, 0.5);
  background: #111;
  color: #fff;
  box-shadow: none;
  outline: 0;
}

.redtek-checkout__segments {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.redtek-checkout__segment {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.55rem 1.25rem;
  border: 1px solid #374151;
  border-radius: 0.375rem;
  background: #111;
  color: #9ca3af;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.redtek-checkout__segment--active {
  border-color: rgba(220, 38, 38, 0.65);
  background: rgba(220, 38, 38, 0.12);
  color: #fff;
}

.redtek-checkout__pickup-box {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.375rem;
  background: #111;
}

.redtek-checkout__ship-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
  padding: 0.75rem 1rem;
  border: 1px solid #374151;
  border-radius: 0.375rem;
  background: #111;
  color: #e5e7eb;
  font-size: 0.875rem;
  cursor: pointer;
}

.redtek-checkout__ship-option input {
  flex-shrink: 0;
  margin: 0 0.5rem 0 0;
}

.redtek-checkout__ship-option > span {
  flex: 1;
  min-width: 0;
}

.redtek-checkout__ship-price {
  margin: 0;
  color: #ef4444;
  font-family: var(--redtek-font-display);
  font-size: 1rem;
  font-weight: 900;
}

.redtek-checkout__stripe-box {
  min-height: 3.25rem;
  padding: 0.75rem 1rem;
  border: 1px solid #374151;
  border-radius: 0.375rem;
  background: #111;
}

/* CheckoutSummary.tsx — line items */
.redtek-checkout__summary-items {
  margin-bottom: 1.25rem;
  max-height: 16rem;
  overflow-y: auto;
  padding-right: 0.25rem;
}

.redtek-checkout__summary-items > * + * {
  margin-top: 0.75rem;
}

.redtek-checkout__summary-item {
  display: flex;
  gap: 0.75rem;
}

.redtek-checkout__summary-thumb-wrap {
  position: relative;
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.375rem;
  overflow: hidden;
  background: #111;
}

.redtek-checkout__summary-thumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.redtek-checkout__summary-qty-badge {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  background: #dc2626;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  font-family: var(--redtek-font-display);
}

.redtek-checkout__summary-item-body {
  min-width: 0;
  flex: 1;
}

.redtek-checkout__summary-item-name {
  margin: 0;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.redtek-checkout__summary-item-variant {
  margin: 0;
  color: #6b7280;
  font-size: 0.75rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.redtek-checkout__summary-item-line-price {
  margin: 0.125rem 0 0;
  color: #f87171;
  font-size: 0.875rem;
  font-weight: 600;
}

.redtek-checkout__summary-ship-progress {
  margin-bottom: 1.25rem;
  padding: 0.75rem;
  border-radius: 0.375rem;
  border: 1px solid #1f2937;
  background: #111;
}

.redtek-checkout__summary-ship-progress-track {
  width: 100%;
  height: 0.375rem;
  margin-top: 0.5rem;
  border-radius: 999px;
  background: #1f2937;
  overflow: hidden;
}

.redtek-checkout__summary-ship-progress-fill {
  height: 100%;
  border-radius: 999px;
  background: #dc2626;
  transition: width 0.35s ease;
}

.redtek-checkout__totals-stack {
  padding-top: 1rem;
  border-top: 1px solid #1f2937;
}

.redtek-checkout__totals-stack > * + * {
  margin-top: 0.625rem;
}

.redtek-checkout__total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.875rem;
}

.redtek-checkout__total-row--grand {
  margin-top: 0.625rem;
  padding-top: 0.75rem;
  border-top: 1px solid #1f2937;
}

.redtek-checkout__total-grand-amount {
  color: #ef4444;
  font-family: var(--redtek-font-display);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}

.redtek-checkout__trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.redtek-checkout__trust-badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.625rem;
  border-radius: 0.375rem;
  background: #111;
}

.redtek-checkout__trust-badge i {
  color: #10b981;
  font-size: 0.75rem;
}

.redtek-checkout__trust-badge span {
  color: #9ca3af;
  font-size: 11px;
  font-weight: 500;
}

.redtek-checkout__payment-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  gap: 1rem;
}

.redtek-checkout__payment-title {
  margin: 0;
  color: #fff;
  font-family: var(--redtek-font-display);
  font-size: 1.125rem;
  font-weight: 700;
}

.redtek-checkout__stripe-badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: #6b7280;
  font-size: 0.75rem;
  white-space: nowrap;
}

.redtek-checkout__stripe-badge i {
  color: #10b981;
  font-size: 0.875rem;
}

/* Final checkout field normalization: keep text inputs/selects/coupon visually identical. */
.redtek-checkout input.form-control.redtek-checkout__field,
.redtek-checkout select.form-control.redtek-checkout__field,
.redtek-checkout .redtek-cart__promo-group .form-control,
.redtek-checkout .redtek-cart__promo-addon,
.redtek-checkout .redtek-cart__promo-group .btn,
.redtek-checkout .redtek-checkout__ship-option,
.redtek-checkout .redtek-checkout__stripe-box {
  border: 1px solid #1f2937 !important;
  border-radius: 0.375rem !important;
  background-color: #111 !important;
  color: #fff !important;
  box-shadow: inset 0 0 0 1px #4b5563 !important;
  outline: 1px solid #4b5563 !important;
  outline-offset: -1px;
}

.redtek-checkout input.form-control.redtek-checkout__field,
.redtek-checkout select.form-control.redtek-checkout__field,
.redtek-checkout .redtek-cart__promo-group .form-control {
  min-height: 2.75rem;
  padding: 0.625rem 0.75rem;
}

.redtek-checkout input.form-control.redtek-checkout__field:focus,
.redtek-checkout select.form-control.redtek-checkout__field:focus,
.redtek-checkout .redtek-cart__promo-group .form-control:focus {
  border-color: rgba(220, 38, 38, 0.5) !important;
  box-shadow: inset 0 0 0 1px rgba(220, 38, 38, 0.5) !important;
  outline: 0;
}

.redtek-checkout__shipping-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.redtek-checkout__shipping-head h2 {
  margin: 0;
  color: #fff;
  font-family: var(--redtek-font-display);
  font-size: 1.125rem;
  font-weight: 700;
}

.redtek-checkout__form-label {
  display: block;
  margin-bottom: 0.375rem;
  color: #9ca3af;
  font-size: 0.75rem;
  font-weight: 500;
}

.redtek-checkout__cta-row {
  margin-top: 1.5rem;
}

