:root {
  --tg-red: #e30613;
  --tg-red-dark: #b8000a;
  --tg-black: #090909;
  --tg-ink: #1c1c1c;
  --tg-muted: #666;
  --tg-soft: #f5f5f5;
  --tg-line: #e7e7e7;
  --tg-white: #fff;
  --tg-radius: 18px;
  --tg-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
  --tg-max: 1180px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body.teengira-page {
  margin: 0;
  overflow-x: hidden;
  background: var(--tg-white);
  color: var(--tg-ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
}
.teengira-page a { color: inherit; text-decoration: none; }
.teengira-page img { display: block; max-width: 100%; }
.teengira-page button, .teengira-page input, .teengira-page select { font: inherit; }

.teengira-container {
  width: min(var(--tg-max), calc(100% - 40px));
  margin-inline: auto;
}

.teengira-logo-wrap {
  display: inline-grid;
  place-items: center;
  width: 210px;
  min-height: 76px;
}
.teengira-logo-wrap img {
  width: 210px;
  height: auto;
  object-fit: contain;
}
.teengira-logo-fallback {
  display: none;
  color: var(--tg-black);
  font-size: 1.55rem;
  font-weight: 950;
  font-style: italic;
  letter-spacing: -0.04em;
}
.teengira-logo-wrap.is-missing img { display: none; }
.teengira-logo-wrap.is-missing .teengira-logo-fallback { display: inline-block; }

.teengira-inline-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  min-height: 24px;
  vertical-align: -0.22em;
}
.teengira-inline-logo img {
  width: 86px;
  height: auto;
  object-fit: contain;
}
.teengira-inline-logo span {
  display: none;
  color: var(--tg-black);
  font-weight: 950;
  font-style: italic;
  letter-spacing: -0.04em;
}
.teengira-inline-logo img:not([src]),
.teengira-inline-logo img[src=""] {
  display: none;
}
.teengira-inline-logo.is-missing img {
  display: none;
}
.teengira-inline-logo.is-missing span {
  display: inline-block;
}
.teengira-inline-logo--title {
  width: clamp(142px, 14vw, 210px);
  min-height: 46px;
  vertical-align: -0.38em;
}
.teengira-inline-logo--title img {
  width: clamp(142px, 14vw, 210px);
}
.teengira-inline-logo--topbar {
  width: 72px;
  min-height: 18px;
  filter: brightness(0) invert(1);
  vertical-align: -0.18em;
}
.teengira-inline-logo--topbar img {
  width: 72px;
}
.teengira-inline-logo--dark {
  filter: brightness(0) invert(1);
}
.teengira-inline-logo--dark span,
.teengira-inline-logo--topbar span,
.teengira-inline-logo--footer-heading span {
  color: #fff;
}
.teengira-inline-logo--footer-heading {
  width: 120px;
  min-height: 34px;
  filter: brightness(0) invert(1);
}
.teengira-inline-logo--footer-heading img {
  width: 120px;
}

.teengira-topbar {
  padding: 10px 14px;
  background: var(--tg-black);
  color: var(--tg-white);
  text-align: center;
  font-size: .78rem;
  line-height: 1.2;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.teengira-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(0, 0, 0, .07);
  backdrop-filter: blur(16px);
}
.teengira-nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
.teengira-brand-head {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 320px;
}
.teengira-claim {
  color: #555;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.teengira-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 34px);
  font-size: .88rem;
  font-weight: 750;
}
.teengira-nav a {
  position: relative;
  padding: 10px 0;
}
.teengira-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--tg-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.teengira-nav a:hover::after, .teengira-nav a.is-active::after { transform: scaleX(1); }
.teengira-header-actions { display: flex; align-items: center; gap: 16px; }
.teengira-icon-btn {
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
  color: var(--tg-black);
}

.teengira-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: linear-gradient(135deg, #e30613 0%, #ff2a36 48%, #ffffff 155%);
  color: var(--tg-white);
  font-weight: 900;
  text-shadow: 0 1px 8px rgba(0,0,0,.22);
  box-shadow: 0 12px 28px rgba(227, 6, 19, .24);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.teengira-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #a90009 0%, #e30613 42%, #ff6d75 78%, #ffffff 150%);
  color: #fff;
  box-shadow: 0 16px 34px rgba(227, 6, 19, .34);
}
.teengira-btn.is-outline {
  color: #fff;
  background: linear-gradient(135deg, #e30613 0%, #ff3540 52%, #ffffff 160%);
  border-color: rgba(227, 6, 19, .35);
  box-shadow: 0 10px 24px rgba(227, 6, 19, .18);
}
.teengira-btn.is-outline:hover {
  color: var(--tg-white);
  background: linear-gradient(135deg, #090909 0%, #e30613 58%, #ffffff 155%);
}

.teengira-hero {
  position: relative;
  isolation: isolate;
  min-height: 640px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: radial-gradient(circle at 72% 20%, rgba(227, 6, 19, .16), transparent 34%), linear-gradient(110deg, #fff 0%, #fff 42%, #f1f1f1 100%);
}
.teengira-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 35%, rgba(255,255,255,.62) 51%, rgba(255,255,255,.06) 70%);
}
.teengira-hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(135deg, rgba(255,255,255,.18), rgba(0,0,0,.08)),
    url("../img/brands/teengira/hero-teengira.jpg") center right / cover no-repeat;
}
.teengira-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.82) 38%, rgba(255,255,255,.1) 68%, rgba(0,0,0,.05) 100%),
    radial-gradient(circle at 88% 70%, rgba(227, 6, 19, .22), transparent 32%);
}
.teengira-hero-inner {
  width: min(var(--tg-max), calc(100% - 40px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, .55fr) minmax(0, .45fr);
  align-items: center;
  min-height: 640px;
  padding: 70px 0;
}
.teengira-hero-copy { max-width: 650px; }
.teengira-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--tg-black);
  font-size: .88rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.teengira-eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 20px;
  background: var(--tg-red);
}
.teengira-hero h1 {
  max-width: 850px;
  margin: 0 0 20px;
  color: var(--tg-black);
  font-size: clamp(3rem, 6.2vw, 6.25rem);
  line-height: .96;
  letter-spacing: -.075em;
  font-weight: 1000;
}
.teengira-hero h1 .red { color: var(--tg-red); }
.teengira-hero p {
  max-width: 570px;
  margin: 0 0 30px;
  color: #242424;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.62;
  font-weight: 560;
}
.teengira-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.teengira-trust {
  max-width: 620px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.teengira-trust-item {
  padding: 12px 14px;
  border: 1px solid rgba(0,0,0,.09);
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: var(--tg-black);
  font-size: .78rem;
  font-weight: 850;
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
}

.teengira-ticker {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--tg-line);
  background: var(--tg-white);
  isolation: isolate;
}
.teengira-ticker::before,
.teengira-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 120px;
  pointer-events: none;
}
.teengira-ticker::before {
  left: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0) 100%);
}
.teengira-ticker::after {
  right: 0;
  background: linear-gradient(270deg, #fff 0%, rgba(255,255,255,0) 100%);
}
.teengira-ticker-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: teengiraTickerMove 22s linear infinite;
}
.teengira-ticker:hover .teengira-ticker-track {
  animation-play-state: paused;
}
.teengira-ticker-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: clamp(22px, 3vw, 44px);
  padding: 24px 22px;
}
.teengira-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  white-space: nowrap;
  color: var(--tg-black);
  font-size: clamp(2.2rem, 5.2vw, 5.6rem);
  font-weight: 1000;
  line-height: .92;
  letter-spacing: -0.07em;
  text-transform: lowercase;
}
.teengira-ticker-item strong {
  color: var(--tg-red);
  font-weight: 1000;
}
.teengira-ticker-sep {
  width: clamp(34px, 4vw, 64px);
  height: clamp(34px, 4vw, 64px);
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--tg-red);
  color: #fff;
  box-shadow: 0 14px 30px rgba(227, 6, 19, .22);
  transform: rotate(-8deg);
}
.teengira-ticker-sep svg {
  width: 58%;
  height: 58%;
  fill: currentColor;
}
.teengira-ticker-chip {
  height: 38px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--tg-line);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(0,0,0,.04);
  color: #202020;
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.teengira-ticker-chip span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--tg-red);
  box-shadow: 0 0 0 4px rgba(227,6,19,.1);
}
@keyframes teengiraTickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .teengira-ticker-track {
    animation: none;
  }
}

.teengira-section { padding: clamp(54px, 7vw, 92px) 0; }
.teengira-section.is-soft { background: #fafafa; }
.teengira-section-head {
  max-width: 740px;
  margin: 0 auto 42px;
  text-align: center;
}
.teengira-kicker {
  margin-bottom: 10px;
  color: var(--tg-red);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.teengira-section-title, .teengira-product-head h2 {
  margin: 0;
  color: var(--tg-black);
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.03;
  letter-spacing: -.05em;
  font-weight: 1000;
}
.teengira-section-title span, .teengira-product-head h2 span { color: var(--tg-red); }
.teengira-section-subtitle {
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--tg-muted);
  font-size: 1rem;
  line-height: 1.7;
}
.teengira-how-subtitle {
  position: relative;
  width: fit-content;
  max-width: min(760px, 100%);
  color: #262626;
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
}
.teengira-how-subtitle strong {
  position: relative;
  color: var(--tg-black);
  font-weight: 950;
}
.teengira-how-subtitle strong::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -8px;
  bottom: -7px;
  height: 10px;
  border-bottom: 3px solid var(--tg-red);
  border-radius: 50%;
  transform: rotate(-2deg);
}

.teengira-steps, .teengira-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.teengira-steps-flow {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 78px);
  align-items: start;
  margin-top: clamp(34px, 5vw, 62px);
}
.teengira-benefits {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}
.teengira-step-card, .teengira-benefit-card, .teengira-product-card, .teengira-review-card, .teengira-faq-item {
  background: var(--tg-white);
  border: 1px solid var(--tg-line);
  border-radius: var(--tg-radius);
  box-shadow: 0 10px 34px rgba(0,0,0,.045);
}
.teengira-step-card {
  position: relative;
  min-height: 250px;
  padding: 30px 24px;
}
.teengira-flow-card {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}
.teengira-step-number {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--tg-red);
  color: #fff;
  font-size: .84rem;
  font-weight: 1000;
}
.teengira-step-icon {
  width: 74px;
  height: 74px;
  margin: 20px auto 24px;
  border-radius: 20px;
  background: radial-gradient(circle at 72% 25%, rgba(227,6,19,.16), transparent 34%), #f3f3f3;
}
.teengira-step-card h3, .teengira-benefit-card h3 {
  margin: 0 0 10px;
  color: var(--tg-black);
  text-align: center;
  font-size: 1.04rem;
  font-weight: 1000;
}
.teengira-step-card p, .teengira-benefit-card p {
  margin: 0;
  color: var(--tg-muted);
  text-align: center;
  line-height: 1.56;
  font-size: .92rem;
}
.teengira-flow-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  color: #111;
}
.teengira-flow-icon svg {
  width: 36px;
  height: 36px;
  stroke-width: 1.8;
}
.teengira-flow-icon.is-red {
  border: 2px solid #9f0d14;
  border-radius: 50%;
  color: var(--tg-red);
}
.teengira-step-label {
  display: block;
  margin-bottom: 14px;
  color: var(--tg-black);
  font-size: clamp(1.1rem, 1.7vw, 1.55rem);
  font-weight: 900;
}
.teengira-flow-card h3 {
  min-height: 58px;
  margin: 0 0 24px;
  color: #202020;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  font-weight: 950;
  letter-spacing: -0.03em;
  line-height: 1.12;
}
.teengira-step-box {
  min-height: 214px;
  padding: 26px 30px 22px;
  border: 2px solid #151515;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.09);
  text-align: left;
}
.teengira-step-box ul {
  display: grid;
  gap: 12px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}
.teengira-step-box li {
  position: relative;
  padding-left: 26px;
  color: #242424;
  font-size: clamp(1rem, 1.25vw, 1.28rem);
  font-weight: 560;
  line-height: 1.2;
}
.teengira-step-box li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--tg-red);
  font-weight: 950;
}
.teengira-step-box strong {
  display: block;
  margin-left: auto;
  max-width: 160px;
  color: #171717;
  font-size: clamp(1.05rem, 1.35vw, 1.38rem);
  font-weight: 950;
  line-height: 1.08;
  text-align: left;
}
.teengira-step-box strong span {
  display: block;
  color: var(--tg-red);
}
.teengira-credit-story {
  margin-top: clamp(44px, 7vw, 86px);
}
.teengira-credit-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  max-width: 860px;
  margin: 0 auto 38px;
}
.teengira-credit-tile {
  min-height: clamp(190px, 22vw, 320px);
  position: relative;
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 58% 28%, rgba(227, 6, 19, .22), transparent 32%),
    linear-gradient(135deg, #f8f8f8, #e8e8e8);
  background-size: cover;
  background-position: center;
}
.teengira-credit-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 44%, rgba(255,255,255,.88));
}
.teengira-credit-tile.is-shirt {
  background-image: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.28)), url("../img/brands/teengira/value-red-shirt.jpg");
}
.teengira-credit-tile.is-card {
  background-image: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.22)), url("../img/brands/teengira/value-card.jpg");
}
.teengira-credit-tile.is-hoodie {
  background-image: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.28)), url("../img/brands/teengira/value-red-hoodie.jpg");
}
.teengira-credit-tile span,
.teengira-credit-tile strong {
  position: relative;
  z-index: 1;
}
.teengira-credit-tile span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: #111;
  font-size: .82rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.teengira-credit-tile strong {
  position: absolute;
  top: 22px;
  right: 20px;
  color: var(--tg-red);
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: 1000;
  letter-spacing: -.06em;
  text-shadow: 0 10px 24px rgba(255,255,255,.85);
}
.teengira-value-banner {
  min-height: clamp(320px, 42vw, 560px);
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 54px);
  display: flex;
  align-items: end;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.92) 76%),
    url("../img/brands/teengira/value-outfit.jpg") center / cover no-repeat,
    linear-gradient(135deg, #efefef, #d9d9d9);
  box-shadow: 0 28px 70px rgba(0,0,0,.12);
  overflow: hidden;
}
.teengira-value-banner > div {
  max-width: 640px;
  padding: 24px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 22px;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
}
.teengira-value-banner h3 {
  margin: 0 0 10px;
  color: var(--tg-black);
  font-size: clamp(2rem, 4.2vw, 4.4rem);
  line-height: .96;
  letter-spacing: -.06em;
  font-weight: 1000;
}
.teengira-value-banner h3 span {
  color: var(--tg-red);
}
.teengira-value-banner p {
  margin: 0;
  max-width: 560px;
  color: #2b2b2b;
  font-weight: 680;
  line-height: 1.55;
}
.teengira-value-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.teengira-value-points span {
  padding: 9px 12px;
  border: 1px solid rgba(227,6,19,.22);
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: .82rem;
  font-weight: 900;
}
.teengira-benefit-card { min-height: 170px; padding: 24px 16px; text-align: center; }
.teengira-benefit-card span {
  display: block;
  width: 38px;
  height: 38px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--tg-red);
}
.teengira-benefit-card p { font-size: .82rem; }

.teengira-product-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 28px;
}
.teengira-view-all { font-weight: 900; }
.teengira-product-card {
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.teengira-product-card:hover { transform: translateY(-4px); box-shadow: var(--tg-shadow); }
.teengira-product-media {
  position: relative;
  display: block;
  aspect-ratio: 1.18 / 1;
  overflow: hidden;
  background: linear-gradient(135deg, #f2f2f2, #dedede);
}
.teengira-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s ease;
}
.teengira-product-card:hover .teengira-product-media img { transform: scale(1.04); }
.teengira-product-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 20px;
  text-align: center;
  color: rgba(0,0,0,.32);
  font-weight: 1000;
  background: radial-gradient(circle at 78% 22%, rgba(227,6,19,.18), transparent 28%), linear-gradient(135deg, #f7f7f7, #e5e5e5);
}
.teengira-badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--tg-black);
  color: #fff;
  font-size: .72rem;
  font-weight: 950;
}
.teengira-badge.is-red { background: var(--tg-red); }
.teengira-product-body { padding: 18px; }
.teengira-product-body h3 { margin: 0 0 7px; color: var(--tg-black); font-size: 1rem; font-weight: 1000; }
.teengira-product-body p {
  min-height: 40px;
  margin: 0 0 12px;
  color: var(--tg-muted);
  font-size: .87rem;
  line-height: 1.46;
}
.teengira-price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 16px; }
.teengira-price { color: var(--tg-black); font-size: 1.18rem; font-weight: 1000; }
.teengira-compare { color: #909090; text-decoration: line-through; font-size: .9rem; font-weight: 700; }
.teengira-card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.teengira-card-actions .teengira-btn { min-height: 40px; padding: 0 12px; border-radius: 8px; font-size: .82rem; box-shadow: none; }
.teengira-product-category {
  min-height: 0 !important;
  margin-bottom: 6px !important;
  color: var(--tg-red) !important;
  font-size: .74rem !important;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.teengira-shop-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}
.teengira-shop-flow span {
  min-height: 62px;
  padding: 14px 16px;
  border: 1px solid var(--tg-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0,0,0,.04);
  color: var(--tg-black);
  font-weight: 950;
}
.teengira-shop-flow strong {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--tg-red);
  color: #fff;
}
.teengira-category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -10px 0 24px;
}
.teengira-category-filters button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--tg-line);
  border-radius: 999px;
  background: #fff;
  color: var(--tg-black);
  cursor: pointer;
  font-weight: 950;
}
.teengira-category-filters button.is-active {
  border-color: var(--tg-red);
  background: var(--tg-red);
  color: #fff;
}
.teengira-shop-message {
  margin: 0 0 18px;
  padding: 12px 14px;
  border: 1px solid rgba(227,6,19,.24);
  border-radius: 12px;
  background: rgba(227,6,19,.07);
  color: var(--tg-black);
  font-weight: 900;
}
.teengira-shop-empty {
  grid-column: 1 / -1;
}

.teengira-callout {
  margin-top: 34px;
  padding: clamp(26px, 3.8vw, 46px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  border: 1px solid var(--tg-line);
  border-radius: 24px;
  background: radial-gradient(circle at 10% 50%, rgba(227,6,19,.12), transparent 20%), linear-gradient(100deg, #fff, #f4f4f4);
  overflow: hidden;
}
.teengira-callout-icon {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--tg-red) 0 34%, #fff 35%);
  box-shadow: inset 0 0 0 1px var(--tg-line), 0 16px 34px rgba(0,0,0,.06);
}
.teengira-callout h2 { margin: 0 0 8px; font-size: clamp(1.6rem, 2.6vw, 2.7rem); line-height: 1.04; letter-spacing: -.05em; font-weight: 1000; }
.teengira-callout p { margin: 0; color: var(--tg-muted); font-size: 1rem; line-height: 1.5; font-weight: 650; }

.teengira-credit-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}
.teengira-credit-copy {
  max-width: 620px;
}
.teengira-credit-copy p {
  margin: 18px 0 0;
  color: #303030;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.62;
  font-weight: 650;
}
.teengira-clean-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}
.teengira-clean-list li {
  position: relative;
  padding-left: 28px;
  color: #111;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  font-weight: 780;
}
.teengira-clean-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--tg-red);
  font-weight: 1000;
}
.teengira-credit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.teengira-balance-card {
  position: relative;
  padding: clamp(24px, 3.2vw, 38px);
  border: 1px solid rgba(227,6,19,.18);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(227, 6, 19, .12), 0 14px 38px rgba(0,0,0,.08);
}
.teengira-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 20px;
  padding: 8px 12px;
  border: 1px solid rgba(227,6,19,.25);
  border-radius: 999px;
  color: var(--tg-red);
  font-size: .75rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.teengira-status-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--tg-red);
}
.teengira-balance-card h3 {
  margin: 0 0 8px;
  color: var(--tg-black);
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  line-height: 1;
  letter-spacing: -.05em;
  font-weight: 1000;
}
.teengira-balance-card p {
  margin: 0 0 20px;
  color: var(--tg-muted);
  line-height: 1.55;
}
.teengira-balance-card .teengira-field {
  margin-bottom: 12px;
}
.teengira-balance-card .teengira-btn {
  width: 100%;
  margin-top: 8px;
}

.teengira-form-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 26px; align-items: start; }
.teengira-form-card, .teengira-panel-card {
  padding: clamp(24px, 3.2vw, 38px);
  border: 1px solid var(--tg-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--tg-shadow);
}
.teengira-form-card h2, .teengira-panel-card h2 { margin: 0 0 12px; font-size: clamp(1.7rem, 2.4vw, 2.5rem); letter-spacing: -.05em; line-height: 1.05; font-weight: 1000; }
.teengira-form-card p, .teengira-panel-card p { margin: 0 0 22px; color: var(--tg-muted); line-height: 1.62; }
.teengira-field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.teengira-field { display: flex; flex-direction: column; gap: 7px; }
.teengira-field.is-full { grid-column: 1 / -1; }
.teengira-field label { color: var(--tg-black); font-size: .82rem; font-weight: 900; }
.teengira-field input, .teengira-field select {
  min-height: 46px;
  border: 1px solid var(--tg-line);
  border-radius: 10px;
  padding: 0 14px;
  background: #fff;
  outline: none;
}
.teengira-field input:focus, .teengira-field select:focus { border-color: var(--tg-red); box-shadow: 0 0 0 4px rgba(227,6,19,.1); }
.teengira-form-card > .teengira-btn { margin-top: 18px; }
.teengira-form-note {
  display: none;
  margin-top: 16px;
  padding: 12px 14px;
  border: 1px solid #ffd2d2;
  border-radius: 10px;
  background: #fff0f0;
  color: #7a0006;
  font-weight: 750;
}
.teengira-form-note.is-info {
  border-color: #dedede;
  background: #f7f7f7;
  color: #222;
}
.teengira-form-note.is-success {
  border-color: #bfe9cd;
  background: #effbf3;
  color: #075d23;
}
.teengira-form-note.is-error {
  border-color: #ffd2d2;
  background: #fff0f0;
  color: #7a0006;
}

.teengira-page-card {
  padding: clamp(24px, 3.2vw, 42px);
  border: 1px solid var(--tg-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--tg-shadow);
}
.teengira-module-page .teengira-hero {
  min-height: 420px;
}
.teengira-module-page .teengira-hero-inner {
  min-height: 420px;
  grid-template-columns: minmax(0, .75fr) minmax(0, .25fr);
}
.teengira-module-page .teengira-section {
  padding-top: clamp(42px, 6vw, 74px);
}
.teengira-module-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.teengira-shop-status {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.teengira-shop-status h2 {
  margin: 0 0 12px;
  color: var(--tg-black);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -.06em;
  font-weight: 1000;
}
.teengira-shop-status p {
  margin: 0 auto 22px;
  max-width: 620px;
  color: var(--tg-muted);
  font-size: 1rem;
  line-height: 1.65;
}
.teengira-valuation-preview {
  margin-top: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,.05);
}
.teengira-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.teengira-result-grid div {
  min-height: 78px;
  padding: 14px;
  border: 1px solid var(--tg-line);
  border-radius: 14px;
  background: #fafafa;
}
.teengira-result-grid div.is-wide {
  grid-column: 1 / -1;
}
.teengira-result-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--tg-muted);
  font-size: .78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.teengira-result-grid strong {
  color: var(--tg-black);
  font-size: 1.05rem;
  font-weight: 1000;
  line-height: 1.1;
}
.teengira-mini-panels { display: grid; gap: 16px; }
.teengira-mini-panel { padding: 20px; border: 1px solid var(--tg-line); border-radius: 16px; background: #fafafa; }
.teengira-mini-panel h3 { margin: 0 0 8px; font-size: 1.15rem; font-weight: 1000; }
.teengira-mini-panel p { margin: 0 0 14px; font-size: .92rem; }
.teengira-mini-row { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.teengira-mini-row input { min-height: 42px; border: 1px solid var(--tg-line); border-radius: 9px; padding: 0 12px; }

.teengira-reviews, .teengira-faq-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.teengira-review-card { padding: 24px; }
.teengira-review-head { display: flex; align-items: center; gap: 13px; margin-bottom: 16px; }
.teengira-avatar {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--tg-line);
  border-radius: 50%;
  background: linear-gradient(135deg, #eee, #ddd);
  color: var(--tg-red);
  font-weight: 1000;
}
.teengira-review-card h3 { margin: 0; font-size: .98rem; font-weight: 1000; }
.teengira-review-card small { color: var(--tg-muted); font-weight: 700; }
.teengira-stars { margin-bottom: 10px; color: var(--tg-red); letter-spacing: .08em; font-size: .88rem; }
.teengira-review-card p { margin: 0; color: #333; line-height: 1.62; font-size: .95rem; }
.teengira-faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.teengira-faq-item { padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-weight: 900; }
.teengira-faq-item span:last-child { color: var(--tg-red); font-size: 1.35rem; line-height: 1; }
.teengira-faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}
.teengira-faq-card {
  border: 1px solid var(--tg-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(0,0,0,.045);
  overflow: hidden;
}
.teengira-faq-card summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--tg-black);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  font-weight: 950;
  list-style: none;
}
.teengira-faq-card summary::-webkit-details-marker {
  display: none;
}
.teengira-faq-card summary::before {
  content: "\25B8";
  display: inline-block;
  margin-right: 10px;
  color: var(--tg-red);
  transition: transform .18s ease;
}
.teengira-faq-card[open] summary::before {
  transform: rotate(90deg);
}
.teengira-faq-card p {
  margin: 0;
  padding: 0 24px 24px 46px;
  color: #1f1f1f;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 620;
}
.teengira-faq-cta {
  max-width: 920px;
  margin: 22px auto 0;
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(100deg, #050505, #a50008 55%, #e30613);
  color: #fff;
  text-align: center;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 900;
  box-shadow: 0 20px 44px rgba(227,6,19,.22);
}

.teengira-final-cta {
  padding: clamp(36px, 6vw, 70px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  border-radius: 28px;
  background: linear-gradient(115deg, rgba(0,0,0,.94), rgba(0,0,0,.78)), radial-gradient(circle at 84% 30%, rgba(227,6,19,.55), transparent 30%);
  color: #fff;
  overflow: hidden;
}
.teengira-final-cta h2 { margin: 0 0 10px; font-size: clamp(2rem, 4vw, 4rem); line-height: 1; letter-spacing: -.06em; font-weight: 1000; }
.teengira-final-cta p { max-width: 620px; margin: 0; color: rgba(255,255,255,.78); line-height: 1.65; font-weight: 650; }

.teengira-footer { padding: 60px 0 24px; background: #080808; color: #fff; }
.teengira-footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, .7fr) 1.2fr; gap: 28px; padding-bottom: 42px; border-bottom: 1px solid rgba(255,255,255,.12); }
.teengira-footer p { max-width: 300px; margin: 14px 0 18px; color: rgba(255,255,255,.72); line-height: 1.62; }
.teengira-footer h3 { margin: 0 0 14px; font-size: .86rem; text-transform: uppercase; letter-spacing: .06em; }
.teengira-footer a { display: block; margin: 9px 0; color: rgba(255,255,255,.72); font-size: .92rem; }
.teengira-footer a:hover { color: #fff; }
.teengira-newsletter { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin-top: 14px; }
.teengira-newsletter input { min-height: 44px; border: 0; border-radius: 9px; padding: 0 12px; }
.teengira-newsletter .teengira-btn { min-height: 44px; padding: 0 16px; box-shadow: none; }
.teengira-footer-bottom { padding-top: 20px; display: flex; justify-content: space-between; align-items: center; gap: 20px; color: rgba(255,255,255,.58); font-size: .84rem; }
.footer-logo {
  justify-items: start;
  width: 240px;
  min-height: 86px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.34));
}
.footer-logo img {
  width: 240px;
}
.footer-logo .teengira-logo-fallback { color: var(--tg-black); }

@media (max-width: 1080px) {
  .teengira-nav { display: none; }
  .teengira-hero-inner { grid-template-columns: 1fr; }
  .teengira-hero-copy { max-width: 720px; }
  .teengira-trust, .teengira-steps, .teengira-products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .teengira-steps-flow { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .teengira-credit-strip { grid-template-columns: 1fr; max-width: 520px; }
  .teengira-credit-panel { grid-template-columns: 1fr; }
  .teengira-benefits { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .teengira-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .teengira-container, .teengira-hero-inner { width: min(100% - 28px, var(--tg-max)); }
  .teengira-topbar { font-size: .68rem; }
  .teengira-nav-wrap { min-height: 76px; }
  .teengira-brand-head { gap: 10px; min-width: 0; }
  .teengira-claim { display: none; }
  .teengira-header-actions .teengira-btn { display: none; }
  .teengira-hero { min-height: auto; display: flex; flex-direction: column; }
  .teengira-hero-image { position: relative; inset: auto; order: 1; height: 340px; background-position: center right; }
  .teengira-hero::before, .teengira-hero-image::after { display: none; }
  .teengira-hero-inner { min-height: auto; padding: 42px 0 32px; }
  .teengira-hero h1 { font-size: clamp(2.55rem, 14vw, 4.3rem); }
  .teengira-ticker::before,
  .teengira-ticker::after {
    width: 56px;
  }
  .teengira-ticker-group {
    padding: 18px 14px;
  }
  .teengira-ticker-chip {
    display: none;
  }
  .teengira-trust, .teengira-steps, .teengira-benefits, .teengira-products-grid, .teengira-reviews, .teengira-faq-grid, .teengira-form-grid { grid-template-columns: 1fr; }
  .teengira-shop-flow { grid-template-columns: 1fr; }
  .teengira-step-box { border-radius: 26px; padding: 22px; }
  .teengira-flow-card h3 { min-height: 0; }
  .teengira-value-banner { border-radius: 22px; }
  .teengira-value-banner > div { padding: 18px; }
  .teengira-faq-card p { padding-left: 24px; }
  .teengira-product-head, .teengira-callout, .teengira-final-cta, .teengira-footer-bottom { grid-template-columns: 1fr; align-items: start; }
  .teengira-callout-icon { width: 72px; height: 72px; }
  .teengira-field-grid, .teengira-mini-row { grid-template-columns: 1fr; }
  .teengira-footer-grid { grid-template-columns: 1fr; }
}
