/*
 * WIERD.ASSET — Products / Drops CSS
 * Pixel-perfect port of the standalone HTML version
 */

/* ===== HERO ===== */
.hero {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 160px 40px 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--wa-mid);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--wa-black);
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.28) contrast(1.2) saturate(0.4);
  z-index: 0;
  transition: filter 0.05s ease;
}

/* Glitch mask — rozjaśnienie przez ~3s, potem fadeout przez ~1s */
@keyframes hero-mask-glitch {
  0%   { filter: brightness(0.28) contrast(1.2) saturate(0.4); }
  2%   { filter: brightness(0.55) contrast(1.3) saturate(0.55); }
  4%   { filter: brightness(0.50) contrast(1.28) saturate(0.52); }
  /* trzyma rozjaśnienie przez ~3 sekundy */
  60%  { filter: brightness(0.50) contrast(1.28) saturate(0.52); }
  /* fadeout przez ~1 sekundę */
  80%  { filter: brightness(0.28) contrast(1.2) saturate(0.4); }
  /* pauza w ciemności przed kolejnym cyklem */
  100% { filter: brightness(0.28) contrast(1.2) saturate(0.4); }
}

.hero:hover .hero-bg {
  animation: hero-mask-glitch 5s ease infinite;
}

.hero-bg:not([style]) {
  background-image: url('https://images.unsplash.com/photo-1508739773434-c26b3d09e071?w=1400&q=80&fit=crop');
}

.hero-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(transparent,transparent 2px,rgba(0,0,0,0.08) 2px,rgba(0,0,0,0.08) 4px);
  pointer-events: none;
  z-index: 1;
}

.hero > *:not(.hero-bg):not(.hero-scanlines) { position: relative; z-index: 2; }
.hero-tag { font-size: 0.6rem !important; letter-spacing: 0.4em; color: var(--wa-red) !important; text-transform: uppercase; margin-bottom: 24px; opacity: 1 !important; }
.hero-headline { font-family: 'Bebas Neue', sans-serif !important; font-size: clamp(5rem, 14vw, 13rem) !important; line-height: 0.85 !important; letter-spacing: 0.02em; margin-bottom: 30px !important; color: var(--wa-white) !important; }
.hero-headline .wierd { display: block; color: var(--wa-white); }
.hero-headline .asset { display: block; color: var(--wa-red); -webkit-text-stroke: 0; }
.hero-sub { font-size: 0.65rem !important; letter-spacing: 0.5em; text-transform: uppercase; color: rgba(225,225,225,0.4) !important; margin-bottom: 14px !important; opacity: 1 !important; }
.hero-desc { font-size: 1rem !important; color: rgba(225,225,225,0.6) !important; margin-bottom: 40px !important; line-height: 1.6; max-width: 520px; opacity: 1 !important; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-index { font-size: 0.55rem; letter-spacing: 0.35em; text-transform: uppercase; color: rgba(225,225,225,0.2); }

/* ===== HERO HEADLINE GLITCH ===== */
.glitch {
  position: relative;
}

.glitch:hover::before,
.glitch:hover::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
}

.glitch:hover::before {
  color: var(--wa-red);
  clip-path: polygon(0 25%, 100% 25%, 100% 45%, 0 45%);
  transform: translateX(-2px);
  animation: hero-glitch-1 0.6s steps(1, end) infinite;
  opacity: 0.55;
  z-index: 3;
}

.glitch:hover::after {
  color: #00ffff;
  clip-path: polygon(0 60%, 100% 60%, 100% 75%, 0 75%);
  transform: translateX(2px);
  animation: hero-glitch-2 0.6s steps(1, end) infinite;
  opacity: 0.3;
  z-index: 3;
}

@keyframes hero-glitch-1 {
  0%   { transform: translateX(-2px); clip-path: polygon(0 25%, 100% 25%, 100% 40%, 0 40%); }
  40%  { transform: translateX(2px);  clip-path: polygon(0 15%, 100% 15%, 100% 28%, 0 28%); }
  70%  { transform: translateX(-1px); clip-path: polygon(0 45%, 100% 45%, 100% 55%, 0 55%); }
  100% { transform: translateX(-2px); clip-path: polygon(0 25%, 100% 25%, 100% 40%, 0 40%); }
}

@keyframes hero-glitch-2 {
  0%   { transform: translateX(2px);  clip-path: polygon(0 60%, 100% 60%, 100% 72%, 0 72%); }
  40%  { transform: translateX(-2px); clip-path: polygon(0 68%, 100% 68%, 100% 80%, 0 80%); }
  70%  { transform: translateX(1px);  clip-path: polygon(0 55%, 100% 55%, 100% 65%, 0 65%); }
  100% { transform: translateX(2px);  clip-path: polygon(0 60%, 100% 60%, 100% 72%, 0 72%); }
}

.btn-primary { font-family: 'Courier Prime', monospace; font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; padding: 14px 32px; background: var(--wa-red); color: var(--wa-black) !important; border: 1px solid var(--wa-red); text-decoration: none !important; transition: all 0.2s; cursor: crosshair; display: inline-block; }
.btn-primary:hover { background: transparent; color: var(--wa-red) !important; }
.btn-outline { font-family: 'Courier Prime', monospace; font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; padding: 14px 32px; background: transparent; color: var(--wa-white) !important; border: 1px solid var(--wa-mid); text-decoration: none !important; transition: all 0.2s; cursor: crosshair; display: inline-block; }
.btn-outline:hover { border-color: var(--wa-white); }

/* ===== TICKER ===== */
.ticker-wrap { background: var(--wa-red); overflow: hidden; padding: 12px 0; border-bottom: 1px solid #000; }
.ticker-inner { display: flex; white-space: nowrap; animation: ticker 20s linear infinite; }
.ticker-item { font-family: 'Bebas Neue', sans-serif; font-size: 1rem; letter-spacing: 0.15em; color: var(--wa-black); padding-right: 80px; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== SECTION HEADER ===== */
.drops { padding: 100px 40px; border-bottom: 1px solid var(--wa-mid); }
.section-header { display: flex; align-items: baseline; gap: 20px; margin-bottom: 60px; padding-bottom: 20px; border-bottom: 1px solid var(--wa-mid); }
.section-title { font-family: 'Bebas Neue', sans-serif !important; font-size: clamp(3rem, 6vw, 6rem) !important; letter-spacing: 0.05em; line-height: 1; color: var(--wa-white) !important; margin: 0 !important; }
.section-num { font-size: 0.65rem; letter-spacing: 0.2em; color: var(--wa-red); text-transform: uppercase; }

/* ===== COLLECTION TABS ===== */
.collection-tabs { display: flex; gap: 0; margin-bottom: 40px; border: 1px solid var(--wa-mid); width: fit-content; }
.tab-btn { font-family: 'Bebas Neue', sans-serif; font-size: 1rem; letter-spacing: 0.2em; padding: 14px 36px; background: transparent; color: #444; border: none; border-right: 1px solid var(--wa-mid); cursor: crosshair; transition: all 0.25s; position: relative; }
.tab-btn:last-child { border-right: none; }
.tab-btn::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--wa-red); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.tab-btn.active { color: var(--wa-white); background: #080808; }
.tab-btn.active::after { transform: scaleX(1); }
.tab-btn:hover:not(.active) { color: #777; }
.tab-btn .tab-count { font-family: 'Courier Prime', monospace; font-size: 0.5rem; letter-spacing: 0.1em; color: #444; margin-left: 8px; vertical-align: middle; }
.tab-btn.active .tab-count { color: var(--wa-red); }

/* ===== DROPS META ===== */
.drops-meta { display: flex; justify-content: space-between; align-items: center; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: #444; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid #111; }
.drops-count { color: var(--wa-red); }

.collection-section-divider { display: flex; align-items: center; gap: 20px; margin: 50px 0 30px; font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: #333; }
.collection-section-divider::before, .collection-section-divider::after { content: ''; flex: 1; height: 1px; background: #111; }

/* ===== PRODUCT GRIDS ===== */
.products-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; grid-template-rows: auto auto; gap: 1px; background: var(--wa-mid); border: 1px solid var(--wa-mid); }
.product-card--featured { grid-row: span 2; }
.products-grid-uniform { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--wa-mid); border: 1px solid var(--wa-mid); }
.products-grid .product-card, .products-grid-uniform .product-card { transition: opacity 0.3s ease; }

/* ===== PRODUCT CARD ===== */
.product-card { background: var(--wa-black); padding: 0; position: relative; overflow: hidden; transition: background 0.3s; display: flex; flex-direction: column; }
.product-card:hover { background: #0a0a0a; }
.product-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--wa-red); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; z-index: 5; }
.product-card:hover::before { transform: scaleX(1); }

.card-flip-wrapper { display: flex; flex-direction: column; flex: 1; }

/* ===== PRODUCT IMAGE ===== */
.product-img { width: 100%; aspect-ratio: 4/3; background: var(--wa-dim); display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; flex-shrink: 0; }
.product-img--tall { aspect-ratio: 3/4; }
.product-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: filter 0.3s; }
.product-img img:hover { filter: contrast(1.3) brightness(1.1) saturate(0.5) !important; }

.product-category-tag { position: absolute; top: 16px; left: 16px; font-size: 0.55rem; letter-spacing: 0.25em; text-transform: uppercase; color: #aaa; border: 1px solid #333; padding: 4px 10px; background: rgba(0,0,0,0.75); backdrop-filter: blur(4px); z-index: 2; }
.cap-label { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; letter-spacing: 0.3em; color: var(--wa-white); opacity: 0.3; text-align: center; width: 100%; z-index: 2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; padding: 0 10px; }

/* ===== CARD INFO ===== */
.product-badge { display: inline-block; font-size: 0.55rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--wa-red); margin-bottom: 15px; font-weight: 700; }
.collection-badge { display: inline-block; font-size: 0.48rem; letter-spacing: 0.25em; text-transform: uppercase; padding: 3px 8px; margin-bottom: 6px; margin-right: 6px; border: 1px solid; }
.badge-for-her { color: #c8708a; border-color: #c8708a44; }
.badge-for-him { color: #4a9fd4; border-color: #4a9fd444; }
.badge-outcasts { color: #888; border-color: #33333399; }
.product-name { font-family: 'Bebas Neue', sans-serif !important; font-size: 2.2rem !important; line-height: 1 !important; letter-spacing: 0.05em; margin-bottom: 10px !important; color: var(--wa-white) !important; }
.product-variant { font-size: 0.7rem !important; letter-spacing: 0.2em; text-transform: uppercase; color: #666 !important; margin-bottom: 16px !important; opacity: 1 !important; }
.product-slogan { font-size: 0.75rem !important; letter-spacing: 0.1em; color: #999 !important; font-style: italic; margin-bottom: 20px !important; border-left: 2px solid var(--wa-red); padding-left: 12px; line-height: 1.6; flex: 1; opacity: 1 !important; }
.product-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 20px; border-top: 1px solid #1a1a1a; margin-top: auto; gap: 10px; flex-wrap: wrap; }
.product-price { font-family: 'Bebas Neue', sans-serif !important; font-size: 2.2rem !important; color: var(--wa-white) !important; line-height: 1; }
.product-price small { display: block; font-family: 'Courier Prime', monospace; font-size: 0.45rem; letter-spacing: 0.15em; color: #444; margin-top: 2px; }

/* ===== BUTTONS ===== */
.btn-buy { background: transparent; color: var(--wa-white) !important; font-family: 'Bebas Neue', sans-serif; font-size: 0.85rem; letter-spacing: 0.2em; padding: 12px 24px; border: 1px solid #333; cursor: crosshair; text-decoration: none !important; transition: all 0.2s; display: inline-block; white-space: nowrap; }
.btn-buy:hover { background: var(--wa-red) !important; border-color: var(--wa-red) !important; color: var(--wa-black) !important; transform: skewX(-3deg); }
.btn-details { font-family: 'Courier Prime', monospace; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; background: transparent; border: 1px solid #222; color: #555; padding: 10px 14px; cursor: crosshair; transition: all 0.2s; white-space: nowrap; }
.btn-details:hover { border-color: var(--wa-white); color: var(--wa-white); }

/* ===== DETAILS PANEL ===== */
.card-details-panel { display: none; position: absolute; inset: 0; background: #050505; z-index: 20; padding: 30px; flex-direction: column; overflow-y: auto; animation: panelIn 0.35s ease forwards; }
.card-details-panel.active { display: flex; }
@keyframes panelIn { 0% { opacity: 0; clip-path: inset(0 100% 0 0); } 100% { opacity: 1; clip-path: inset(0 0% 0 0); } }
.details-close { position: absolute; top: 16px; right: 16px; font-family: 'Bebas Neue', sans-serif; font-size: 0.8rem; letter-spacing: 0.2em; color: var(--wa-red); cursor: crosshair; border: 1px solid #333; padding: 6px 14px; background: transparent; transition: all 0.2s; z-index: 30; }
.details-close:hover { background: var(--wa-red); color: var(--wa-black); border-color: var(--wa-red); }
.details-header { margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid #1a1a1a; }
.details-label { font-size: 0.55rem; letter-spacing: 0.3em; color: var(--wa-red); text-transform: uppercase; margin-bottom: 8px !important; opacity: 1 !important; }
.details-name { font-family: 'Bebas Neue', sans-serif !important; font-size: 2.4rem !important; line-height: 0.95; letter-spacing: 0.03em; color: var(--wa-white) !important; margin: 0 !important; }
.details-slogan { font-size: 0.75rem !important; color: #888 !important; font-style: italic; margin-top: 8px !important; letter-spacing: 0.05em; opacity: 1 !important; }
.details-spec { margin: 16px 0; flex-shrink: 0; }
.details-spec-title { font-size: 0.55rem !important; letter-spacing: 0.3em; text-transform: uppercase; color: #444; margin-bottom: 10px !important; opacity: 1 !important; }
.spec-row { display: flex; gap: 10px; padding: 8px 0; border-bottom: 1px solid #0f0f0f; font-size: 0.72rem; }
.spec-key { color: #444; min-width: 80px; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.6rem; flex-shrink: 0; }
.spec-val { color: #bbb; line-height: 1.5; }

/* ===== NEWSLETTER ===== */
.wa-newsletter { padding: 120px 40px; border-bottom: 1px solid var(--wa-mid); position: relative; overflow: hidden; }
.wa-newsletter::before { content: 'LISTA'; position: absolute; right: -40px; top: 50%; transform: translateY(-50%); font-family: 'Bebas Neue', sans-serif; font-size: 25vw; color: #080808; pointer-events: none; line-height: 1; white-space: nowrap; z-index: 0; }
.wa-newsletter-inner { position: relative; z-index: 1; max-width: 700px; }
.wa-section-label { font-size: 0.6rem !important; letter-spacing: 0.4em; color: var(--wa-red) !important; text-transform: uppercase; margin-bottom: 30px !important; opacity: 1 !important; }
.wa-newsletter-title { font-family: 'Bebas Neue', sans-serif !important; font-size: clamp(3.5rem, 8vw, 8rem) !important; line-height: 0.9 !important; letter-spacing: 0.02em; color: var(--wa-white) !important; margin-bottom: 20px !important; cursor: default; }

/* Spany DOŁĄCZ DO / LISTY — normalny biały tekst z przejściem */
.wa-newsletter-title .dolacz {
  display: inline;
  color: var(--wa-white);
  background: transparent;
  transition: color 0.15s, background 0.15s;
}

/* CZARNEJ — negatyw: czarne litery, białe tło */
.wa-newsletter-title .czarnej {
  display: inline-block;
  color: var(--wa-black);
  background: var(--wa-white);
  padding: 0 0.08em;
  line-height: inherit;
  transition: color 0.15s, background 0.15s;
}

/* hover na całym tytule */
/* DOŁĄCZ DO + LISTY — odwrócenie: czarna czcionka, białe tło */
.wa-newsletter-title:hover .dolacz {
  color: var(--wa-black);
  background: var(--wa-white);
}

/* CZARNEJ — odwraca kolory: białe litery, czarne tło */
.wa-newsletter-title:hover .czarnej {
  color: var(--wa-white);
  background: var(--wa-black);
}
.wa-newsletter-sub { font-size: 0.9rem !important; color: rgba(225,225,225,0.5) !important; line-height: 1.6; margin-bottom: 36px !important; opacity: 1 !important; }
.wa-newsletter-form { display: flex; border: 1px solid var(--wa-mid); max-width: 580px; margin-bottom: 16px; }
.wa-newsletter-input { flex: 1; background: transparent !important; border: none !important; outline: none; color: var(--wa-white) !important; font-family: 'Courier Prime', monospace !important; font-size: 0.8rem !important; letter-spacing: 0.1em; padding: 16px 20px !important; }
.wa-newsletter-input::placeholder { color: rgba(225,225,225,0.2); letter-spacing: 0.15em; }
.wa-newsletter-btn { font-family: 'Courier Prime', monospace; font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; padding: 0 28px; background: var(--wa-white); color: var(--wa-black) !important; border: none; cursor: crosshair; transition: background 0.2s; white-space: nowrap; }
.wa-newsletter-btn:hover { background: var(--wa-red); }
.wa-newsletter-note { font-size: 0.55rem !important; letter-spacing: 0.2em; color: rgba(225,225,225,0.2) !important; text-transform: uppercase; opacity: 1 !important; }

/* ===== COLLECTION GROUP VISIBILITY ===== */
.collection-group.wa-hidden { display: none !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) { .products-grid-uniform { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) {
  .drops { padding: 80px 30px; }
  .hero { padding: 120px 30px 60px; }
  .wa-newsletter { padding: 80px 30px; }
  .collection-tabs { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .collection-tabs::-webkit-scrollbar { display: none; }
  .tab-btn { padding: 12px 20px; font-size: 0.85rem; flex-shrink: 0; }
  .products-grid { grid-template-columns: 1fr 1fr !important; grid-template-rows: auto !important; }
  .product-card--featured { grid-column: span 2; grid-row: span 1; }
  .product-img--tall { aspect-ratio: 4/3; }
  .products-grid-uniform { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 768px) {
  .drops { padding: 60px 20px; }
  .hero { padding: 100px 20px 50px; }
  .wa-newsletter { padding: 60px 20px; }
  .hero-cta { flex-direction: column; }
  .hero-cta a { width: 100%; text-align: center; }
  .tab-btn { padding: 10px 16px; font-size: 0.8rem; }
  .products-grid, .products-grid-uniform { grid-template-columns: 1fr 1fr !important; gap: 1px !important; }
  .product-card--featured { grid-column: span 2; grid-row: span 1; }
  .product-name { font-size: 1.5rem !important; }
  .product-price { font-size: 1.6rem !important; }
  .wa-newsletter-form { flex-direction: column; }
  .wa-newsletter-input { border-bottom: 1px solid var(--wa-mid) !important; }
  .wa-newsletter-btn { padding: 14px; text-align: center; }

  /* Panel szczegółów na mobile — fullscreen zamiast absolute */
  .card-details-panel {
    position: fixed !important;
    inset: 0 !important;
    z-index: 9999 !important;
    padding: 24px 20px !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  /* flip-hint zawsze widoczny na mobile */
  .flip-hint {
    opacity: 1 !important;
    background: rgba(0,0,0,0.7) !important;
    font-size: 0.55rem !important;
  }

  /* Przyciski w panelu większe na dotyk */
  .details-close { padding: 14px 20px !important; font-size: 0.65rem !important; }
  .btn-buy { padding: 14px 20px !important; font-size: 0.65rem !important; }
  .details-price { font-size: 1.6rem !important; }

  /* Info w kartach — mniejszy padding */
  .card-flip-wrapper > div:last-child { padding: 16px !important; }
  .product-name { font-size: 1.2rem !important; }
}
@media (max-width: 480px) {
  .products-grid, .products-grid-uniform { grid-template-columns: 1fr !important; }
  .product-card--featured { grid-column: span 1; grid-row: span 1; }
}

/* ===== ANIMATIONS (port from HTML) ===== */
@keyframes panelOut {
  0%   { opacity: 1; clip-path: inset(0 0%   0 0); }
  100% { opacity: 0; clip-path: inset(0 100% 0 0); }
}

@keyframes glitchFlash {
  0%   { filter: none; }
  10%  { filter: brightness(3) saturate(0) hue-rotate(90deg); transform: translateX(-4px); }
  20%  { filter: brightness(0.5) saturate(2); transform: translateX(4px); }
  30%  { filter: none; transform: none; }
  40%  { filter: brightness(2) hue-rotate(-45deg); transform: translateX(-2px); }
  50%  { filter: none; transform: none; }
  100% { filter: none; }
}

.card-details-panel.glitch-open {
  animation: panelIn 0.35s ease forwards, glitchFlash 0.5s ease forwards;
}

/* ===== PRODUCT IMAGE — hover hint ===== */
.product-img::before {
  content: '// KLIKNIJ → SPECYFIKACJA';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Courier Prime', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  color: var(--wa-white);
  background: rgba(0,0,0,0.8);
  border: 1px solid #333;
  padding: 8px 16px;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 4;
  white-space: nowrap;
}

.product-img:hover::before { opacity: 1; }

/* ===== PRODUCT CARD inner padding ===== */
/* Drop 01 cards have inner padding via inline div — uniform grid same */
.products-grid .product-card > .card-flip-wrapper > div:not(.product-img),
.products-grid-uniform .product-card > .card-flip-wrapper > div:not(.product-img) {
  padding: 28px 28px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Featured card gets taller padding */
.product-card--featured > .card-flip-wrapper > div:not(.product-img) {
  padding: 30px 30px 24px;
}

/* ===== DETAILS PANEL extras ===== */
.details-limit {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #555;
  flex-shrink: 0;
}

.limit-bar {
  flex: 1;
  height: 2px;
  background: #111;
  position: relative;
}

.limit-bar-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: var(--wa-red);
  transition: width 1s ease;
}

.details-included {
  margin: 12px 0;
  padding: 14px;
  background: #080808;
  border: 1px solid #111;
  font-size: 0.68rem;
  color: #555;
  line-height: 2;
  flex-shrink: 0;
}

.details-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid #1a1a1a;
  margin-top: auto;
  flex-shrink: 0;
  gap: 10px;
  flex-wrap: wrap;
}

.details-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--wa-white);
}

.details-price small {
  display: block;
  font-family: 'Courier Prime', monospace;
  font-size: 0.45rem;
  letter-spacing: 0.15em;
  color: #444;
  margin-top: 2px;
}

.flip-hint {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #222;
  padding: 6px 10px;
  transition: color 0.3s;
  cursor: crosshair;
  z-index: 3;
}

.product-card:hover .flip-hint {
  color: #444;
}

/* ===== CLEAN FOOTER ===== */
.wa-footer {
  background: var(--wa-black) !important;
  border-top: 1px solid var(--wa-mid) !important;
  padding: 60px 40px !important;
  margin-top: 0 !important;
}

/* Hide TT21 widget area completely */
.widget-area,
.footer-widgets-outer-wrapper,
.footer-widgets-wrapper {
  display: none !important;
}

.wa-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
}

.wa-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wa-footer-logo {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 1.8rem !important;
  letter-spacing: 0.1em;
  color: var(--wa-white) !important;
  text-decoration: none !important;
  line-height: 1;
}

.wa-footer-logo span {
  color: var(--wa-red);
}

.wa-footer-tagline {
  font-size: 0.5rem !important;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(225,225,225,0.2) !important;
  margin: 0 !important;
  opacity: 1 !important;
}

/* Footer nav */
.wa-footer-nav-list {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
  flex-wrap: wrap;
}

.wa-footer-nav-list a {
  font-family: 'Courier Prime', monospace !important;
  font-size: 0.6rem !important;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(225,225,225,0.4) !important;
  text-decoration: none !important;
  transition: color 0.2s;
}

.wa-footer-nav-list a:hover {
  color: var(--wa-red) !important;
}

/* Copyright */
.wa-footer-copy {
  font-family: 'Courier Prime', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(225,225,225,0.2);
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.wa-footer-sep {
  color: var(--wa-red);
  opacity: 0.5;
}

.wa-footer-copy a {
  color: rgba(225,225,225,0.2) !important;
  text-decoration: none !important;
}

.wa-footer-copy a:hover {
  color: var(--wa-red) !important;
}

/* Override TT21 site-info inside our footer */
.wa-footer .site-info { display: none !important; }

/* ===== MANIFESTO PAGE ===== */
.wa-manifesto {
  padding: 100px 40px;
  min-height: 80vh;
}

.wa-manifesto-inner {
  max-width: 900px;
}

.wa-manifesto-lead {
  margin-bottom: 80px;
}

.wa-manifesto-quote {
  font-family: 'Courier Prime', monospace;
  font-size: clamp(1rem, 2vw, 1.4rem) !important;
  font-style: italic;
  color: rgba(225,225,225,0.5) !important;
  border-left: 3px solid var(--wa-red);
  padding-left: 30px;
  line-height: 1.6;
  opacity: 1 !important;
}

.wa-manifesto-body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wa-manifesto-block {
  display: flex;
  gap: 40px;
  padding: 50px 0;
  border-bottom: 1px solid var(--wa-mid);
  align-items: flex-start;
}

.wa-manifesto-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: #1a1a1a;
  line-height: 1;
  flex-shrink: 0;
  width: 80px;
  text-align: right;
  letter-spacing: 0;
}

.wa-manifesto-h {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: clamp(1.8rem, 4vw, 3rem) !important;
  letter-spacing: 0.05em;
  color: var(--wa-white) !important;
  line-height: 1;
  margin: 0 0 16px !important;
}

.wa-manifesto-block p {
  font-size: 0.9rem !important;
  line-height: 1.9;
  color: rgba(225,225,225,0.55) !important;
  margin: 0 !important;
  opacity: 1 !important;
}

.wa-manifesto-footer {
  padding-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.wa-manifesto-sign {
  font-size: 0.6rem !important;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(225,225,225,0.2) !important;
  margin: 0 !important;
  opacity: 1 !important;
}

@media (max-width: 768px) {
  .wa-footer { padding: 40px 20px !important; }
  .wa-footer-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .wa-footer-copy { flex-direction: column; gap: 4px; }

  .wa-manifesto { padding: 60px 20px; }
  .wa-manifesto-block { gap: 20px; }
  .wa-manifesto-num { font-size: 2.5rem; width: 50px; }
}
