/** Shopify CDN: Minification failed

Line 1206:29 Unexpected "}"
Line 2155:0 All "@import" rules must come first

**/
/* ═══════════════════════════════════════════════
   DEATH BY CROSS — SHOPIFY THEME
   theme.css
═══════════════════════════════════════════════ */

:root {
  --black:    #000000;
  --gd:       #111111;
  --gm:       #1a1a1a;
  --red:      #8B0000;
  --red-b:    #cc0000;
  --red-g:    #ff0000;
  --white:    #ffffff;
  --off-w:    #e8e0d0;
  --gothic: 'Chomsky', 'UnifrakturMaguntia', serif;
  --display:  'Cinzel', serif;
  --body:     'Cormorant Garamond', serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  overflow-x: hidden;
  cursor: crosshair;
}

/* ── GRAIN ── */
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}

/* ═══════════════════════════════════════════════
   PRE-LOADER
═══════════════════════════════════════════════ */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: #000;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  transition: opacity 1s ease, visibility 1s ease;
  overflow: hidden;
}
#preloader.hide {
  opacity: 0; visibility: hidden; pointer-events: none;
}
body:has(#preloader:not(.hide)) {
  overflow: hidden;
}
.pl-video-wrap {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
#pl-video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
}
.pl-brand {
  position: relative; z-index: 2;
  font-family: var(--gothic);
  font-size: clamp(36px, 6vw, 72px);
  color: rgba(255,255,255,0.92);
  letter-spacing: 4px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: color 0.35s ease, text-shadow 0.35s ease;
  user-select: none;
  text-shadow: 0 2px 40px rgba(0,0,0,0.9);
  animation: plFadeUp 1.2s ease 0.7s both;
}
.pl-brand:hover {
  color: var(--red);
  text-shadow: 0 0 28px rgba(139,0,0,0.9), 0 0 60px rgba(139,0,0,0.4);
}
.pl-hint {
  position: relative; z-index: 2;
  font-family: var(--display);
  font-size: 9px; letter-spacing: 5px;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  margin-bottom: 48px;
  cursor: pointer;
  transition: color 0.3s;
  animation: plFadeUp 1.2s ease 1.2s both;
}
.pl-hint:hover { color: rgba(139,0,0,0.8); }

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

/* ═══════════════════════════════════════════════
   HEADER  (3-column grid: nav | logo | cart)
═══════════════════════════════════════════════ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 70px; padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(139,0,0,0.2);
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(16px);
}

/* left nav */
.nav-left { display: flex; align-items: center; gap: 34px; }
.nav-left .nav-link {
  font-family: var(--display);
  font-size: 9.5px; letter-spacing: 3.5px;
  color: rgba(255,255,255,0.6);
  text-decoration: none; text-transform: uppercase;
  transition: color 0.3s; position: relative; white-space: nowrap;
}
.nav-left .nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--red);
  transform: scaleX(0); transform-origin: center; transition: transform 0.3s;
}
.nav-left .nav-link:hover,
.nav-left .nav-link.active { color: #fff; }
.nav-left .nav-link:hover::after,
.nav-left .nav-link.active::after { transform: scaleX(1); }

.nav-antidemon {
  color: var(--red) !important;
  font-weight: 700 !important;
  text-shadow: 0 0 12px rgba(139,0,0,0.6) !important;
  animation: demonFlicker 4s infinite;
}
@keyframes demonFlicker {
  0%,88%,100% { opacity:1; }
  90%,96%     { opacity:0.4; }
  93%,99%     { opacity:1; }
}

/* center logo */
.header-logo-link {
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
}
.header-logo-img {
  height: 50px; width: 50px; object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(180,200,220,0.25));
  transition: filter 0.3s, transform 0.3s;
}
.header-logo-img:hover {
  filter: drop-shadow(0 0 18px rgba(200,220,240,0.7));
  transform: scale(1.08);
}

/* right cart */
.nav-right { display: flex; align-items: center; justify-content: flex-end; }
.cart-trigger {
  cursor: pointer; background: none; border: none;
  display: flex; align-items: center;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s; padding: 8px;
}
.cart-trigger:hover { color: #fff; }
.cart-icon-wrap { position: relative; width: 26px; height: 24px; display: block; }
.cart-icon-wrap svg { width: 26px; height: 24px; display: block; }
.cart-badge {
  position: absolute; top: -7px; right: -8px;
  background: var(--red); color: #fff;
  width: 17px; height: 17px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 8px; font-weight: 700;
  box-shadow: 0 0 8px var(--red);
  transition: transform 0.3s;
}
.cart-badge.bump { animation: badgeBump 0.35s ease; }
@keyframes badgeBump { 0%,100%{transform:scale(1)} 50%{transform:scale(1.7)} }

/* push page content below fixed header */
main#main-content { padding-top: 70px; }

/* Mobile: body padding-top already handles the offset (ann-bar + header) */
@media (max-width: 768px) {
  main#main-content { padding-top: 0 !important; }
}

/* ═══════════════════════════════════════════════
   ANTI-DEMON SCREEN
═══════════════════════════════════════════════ */
#antidemon-screen {
  position: fixed; inset: 0; z-index: 2000;
  display: none; align-items: center; justify-content: center;
  background: #000;
}
#antidemon-screen.open { display: flex; }

.ad-bg { position: absolute; inset: 0; overflow: hidden; }
#static-canvas { width: 100%; height: 100%; opacity: 0.3; }
.ad-scanlines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg,
    transparent, transparent 2px,
    rgba(0,0,0,0.1) 2px, rgba(0,0,0,0.1) 4px);
  animation: scanAnim 0.08s linear infinite;
  pointer-events: none;
}
@keyframes scanAnim {
  from { background-position: 0 0; }
  to   { background-position: 0 4px; }
}
.ad-content { position: relative; z-index: 2; text-align: center; padding: 40px; }
.ad-title {
  font-family: var(--gothic);
  font-size: clamp(28px,8vw,96px);
  line-height: 1; letter-spacing: 4px;
  color: var(--red);
  text-shadow: 0 0 20px var(--red-g), 0 0 60px var(--red);
  animation: adFlicker 0.15s infinite, adGlitch 3s infinite;
}
@keyframes adGlitch {
  0%,100% { text-shadow:0 0 20px var(--red-g),0 0 60px var(--red); transform:none; }
  94%     { text-shadow:-3px 0 cyan, 3px 0 var(--red); transform:skewX(-5deg); }
  95%     { text-shadow: 3px 0 cyan,-3px 0 var(--red); transform:skewX(2deg); }
  96%     { text-shadow:0 0 20px var(--red-g),0 0 60px var(--red); transform:none; }
}
.ad-sub {
  font-family: var(--display);
  font-size: clamp(12px,2.5vw,20px); letter-spacing: 10px;
  color: rgba(200,0,0,0.8); text-transform: uppercase;
  margin: 20px 0; animation: adFlicker 0.3s infinite alternate;
}
.ad-danger {
  font-family: var(--gothic);
  font-size: clamp(20px,5vw,58px); letter-spacing: 6px;
  color: var(--red-b);
  text-shadow: 0 0 30px var(--red-g);
  animation: adGlitch 2s infinite;
}
.ad-back {
  display: inline-block; margin-top: 60px;
  padding: 14px 40px; border: 1px solid rgba(139,0,0,0.5);
  font-family: var(--display); font-size: 10px; letter-spacing: 4px;
  color: rgba(255,255,255,0.5); text-transform: uppercase;
  cursor: pointer; background: none; transition: all 0.3s;
}
.ad-back:hover {
  color: #fff; border-color: var(--red);
  box-shadow: 0 0 20px rgba(139,0,0,0.3);
}
@keyframes adFlicker {
  0%,100%  { opacity:1; }
  92%,96%  { opacity:0.8; }
  94%      { opacity:0.15; }
  98%      { opacity:0.9; }
}

/* ═══════════════════════════════════════════════
   CART DRAWER  — slides from right
   Background: FALLING LOGOS CANVAS
═══════════════════════════════════════════════ */
/* ══════════════════════════════════════════════
   CART DRAWER — Death by Cross
   Estética: cimento queimado + guerra premium
══════════════════════════════════════════════ */

.cart-overlay {
  position: fixed; inset: 0; z-index: 800;
  background: rgba(0,0,0,0.72); backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden; transition: all 0.5s;
}
.cart-overlay.open { opacity: 1; visibility: visible; }

/* ── Sidebar principal ── */
.cart-sidebar {
  position: fixed; top: 0; right: -540px; bottom: 0;
  width: 460px; z-index: 900;
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: right 0.6s cubic-bezier(0.16,1,0.3,1);
  /* Sombra lateral avermelhada / fumaça */
  box-shadow: -30px 0 100px rgba(0,0,0,0.95), -2px 0 0 rgba(139,0,0,0.4);
}
.cart-sidebar.open { right: 0; }

/* ── Background: concreto queimado ── */
.cart-bg-layer {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('bg-concrete.jpg');
  background-size: cover;
  background-position: center;
}
/* Canvas logo (mantido, mas oculto por cima do concreto) */
#logos-canvas { display: none; }

/* Overlay escuro sobre o concreto — cria profundidade */
.cart-bg-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(0,0,0,0.91) 0%,
      rgba(5,2,2,0.85) 40%,
      rgba(8,3,3,0.88) 70%,
      rgba(0,0,0,0.95) 100%
    );
}

/* Linha vermelha sangue no topo */
.cart-sidebar::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), rgba(200,0,0,0.4), transparent);
  z-index: 10; pointer-events: none;
}

/* ── CABEÇALHO ── */
.cart-head {
  position: relative; z-index: 2;
  padding: 24px 26px 18px;
  border-bottom: 1px solid rgba(139,0,0,0.2);
  display: flex; align-items: flex-start; justify-content: space-between;
  flex-shrink: 0;
  background: rgba(0,0,0,0.3);
}
.cart-head-title {
  font-family: var(--gothic);
  font-size: clamp(22px,3vw,28px); letter-spacing: 3px;
  /* Chrome gradient */
  background: linear-gradient(180deg, #fff 0%, #c8c4bc 40%, #e8e4dc 70%, #9a9690 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 8px rgba(200,196,188,0.15));
}
.cart-head-sub {
  font-family: var(--body); font-size: 11px;
  color: rgba(139,0,0,0.65); font-style: italic;
  margin-top: 5px; letter-spacing: 3px;
}
.cart-head-close {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200,196,188,0.15);
  color: rgba(200,196,188,0.5); cursor: pointer;
  width: 34px; height: 34px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; transition: all 0.25s; border-radius: 2px;
}
.cart-head-close:hover {
  border-color: rgba(200,0,0,0.5);
  color: rgba(200,196,188,0.9);
  background: rgba(139,0,0,0.12);
}

/* ── ITEMS WRAP ── */
.cart-items-wrap {
  flex: 1; overflow-y: auto; padding: 8px 16px;
  position: relative; z-index: 2;
}
.cart-items-wrap::-webkit-scrollbar { width: 2px; }
.cart-items-wrap::-webkit-scrollbar-thumb { background: rgba(139,0,0,0.5); }
.cart-items-wrap::-webkit-scrollbar-track { background: transparent; }

/* ── ESTADO VAZIO ── */
.cart-empty-state {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  height: 260px; gap: 14px;
  color: rgba(200,196,188,0.2);
  font-family: var(--display); font-size: 9px;
  letter-spacing: 5px; text-transform: uppercase;
}
.cart-empty-logo { width: 48px; opacity: 0.08; filter: grayscale(100%); }

/* ── ITEM INDIVIDUAL ── */
.cart-item {
  display: flex; gap: 14px; padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  animation: cartItemIn 0.45s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes cartItemIn {
  from { opacity:0; transform:translateX(24px); }
  to   { opacity:1; transform:none; }
}

/* Thumbnail — quadro com borda metálica */
.cart-item-thumb {
  width: 72px; height: 88px; flex-shrink: 0;
  overflow: hidden;
  border: 1px solid rgba(200,196,188,0.12);
  box-shadow: 0 4px 16px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.4);
  position: relative;
}
/* brilho cromado topo do thumb */
.cart-item-thumb::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,196,188,0.3), transparent);
}
.cart-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-logo-ph { object-fit: contain !important; opacity: 0.2; filter: grayscale(60%); }

/* Info do produto */
.cart-item-details { flex: 1; min-width: 0; padding-top: 2px; }
.cart-item-name {
  font-family: var(--display); font-size: 9px; letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 5px;
  color: rgba(220,216,210,0.85);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cart-item-variant {
  font-family: var(--body); font-size: 12px;
  color: rgba(160,156,150,0.45); font-style: italic; margin-bottom: 12px;
}
.cart-item-qty-row { display: flex; align-items: center; gap: 8px; }
.qty-btn {
  width: 26px; height: 26px;
  background: rgba(200,196,188,0.06);
  border: 1px solid rgba(200,196,188,0.18);
  color: rgba(200,196,188,0.7); cursor: pointer; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; border-radius: 1px;
}
.qty-btn:hover {
  background: rgba(139,0,0,0.3);
  border-color: rgba(139,0,0,0.6);
  color: #fff;
}
.qty-num {
  font-family: var(--display); font-size: 11px; letter-spacing: 2px;
  min-width: 22px; text-align: center; color: rgba(200,196,188,0.7);
}

/* Preço + remover */
.cart-item-right {
  flex-shrink: 0; display: flex; flex-direction: column;
  align-items: flex-end; justify-content: space-between;
  padding-top: 2px;
}
.cart-item-price {
  font-family: var(--body); font-size: 18px; font-weight: 600;
  /* Chrome gradient no preço */
  background: linear-gradient(180deg, #fff 0%, #c8c4bc 50%, #e8e4dc 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cart-item-remove {
  background: none; border: none; cursor: pointer;
  color: rgba(160,156,150,0.3); font-family: var(--display);
  font-size: 8px; letter-spacing: 3px; text-transform: uppercase;
  transition: color 0.2s; padding: 0;
}
.cart-item-remove:hover { color: rgba(180,40,40,0.8); }

/* ── RODAPÉ ── */
.cart-foot {
  position: relative; z-index: 2;
  padding: 16px 24px 24px;
  flex-shrink: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  border-top: 1px solid rgba(200,196,188,0.06);
}

/* Total */
.cart-total-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(200,196,188,0.07);
}
.cart-total-label {
  font-family: var(--display); font-size: 8px; letter-spacing: 5px;
  color: rgba(180,176,170,0.4); text-transform: uppercase;
}
.cart-total-amount {
  font-family: var(--body); font-size: 26px; font-weight: 600;
  background: linear-gradient(180deg, #fff 0%, #d0ccc4 40%, #f0ece4 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Botão Checkout — premium vermelho com sweep */
.cart-checkout-btn {
  display: block; width: 100%; padding: 17px;
  background: linear-gradient(180deg, #a00000 0%, #8B0000 50%, #700000 100%);
  border: none; color: #fff;
  font-family: var(--display); font-size: 10px; letter-spacing: 6px;
  text-transform: uppercase; cursor: pointer; text-align: center;
  text-decoration: none; transition: all 0.35s;
  position: relative; overflow: hidden;
  box-shadow: 0 4px 24px rgba(139,0,0,0.35), inset 0 1px 0 rgba(255,100,100,0.15);
  border-radius: 1px;
}
/* Reflexo topo do botão */
.cart-checkout-btn::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 40%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.07), transparent);
  pointer-events: none;
}
/* Sweep hover */
.cart-checkout-btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,120,120,0.18), transparent);
  transform: translateX(-100%); transition: transform 0.6s ease;
}
.cart-checkout-btn:hover::before { transform: translateX(100%); }
.cart-checkout-btn:hover {
  background: linear-gradient(180deg, #c00000 0%, #a00000 50%, #880000 100%);
  box-shadow: 0 6px 36px rgba(139,0,0,0.6), inset 0 1px 0 rgba(255,100,100,0.2);
  transform: translateY(-1px);
}
.cart-checkout-btn:active { transform: translateY(0); }

/* Continuar comprando */
.cart-keep-shopping {
  display: block; width: 100%; text-align: center; margin-top: 10px;
  background: none; border: none; cursor: pointer;
  font-family: var(--display); font-size: 8px; letter-spacing: 4px;
  color: rgba(180,176,170,0.28); text-transform: uppercase; transition: color 0.2s;
}
.cart-keep-shopping:hover { color: rgba(200,196,190,0.55); }


/* ═══════════════════════════════════════════════
   TOAST
═══════════════════════════════════════════════ */
.toast {
  position: fixed; bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--gd);
  border: 1px solid rgba(139,0,0,0.5); border-left: 3px solid var(--red);
  padding: 14px 30px; z-index: 9000;
  font-family: var(--display); font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  box-shadow: 0 0 30px rgba(139,0,0,0.3);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  white-space: nowrap; pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ═══════════════════════════════════════════════
   SHARED COMPONENTS
═══════════════════════════════════════════════ */
.section-label {
  font-family: var(--display); font-size: 9px; letter-spacing: 8px;
  color: var(--red); text-transform: uppercase; margin-bottom: 20px;
  display: flex; align-items: center; gap: 20px;
}
.section-label::before,
.section-label::after { content: ''; flex: 1; height: 1px; background: rgba(139,0,0,0.3); }

/* outlined war button */
.btn-war {
  display: inline-block; padding: 16px 50px;
  border: 1px solid var(--red);
  font-family: var(--display); font-size: 11px; letter-spacing: 5px;
  color: #fff; text-decoration: none; text-transform: uppercase;
  transition: all 0.4s; position: relative; overflow: hidden;
  background: transparent; cursor: pointer;
}
.btn-war::before {
  content: ''; position: absolute; inset: 0;
  background: var(--red); transform: translateX(-100%); transition: transform 0.4s;
}
.btn-war span { position: relative; z-index: 1; }
.btn-war:hover::before { transform: translateX(0); }
.btn-war:hover { box-shadow: 0 0 30px rgba(139,0,0,0.5); }

/* solid red button */
.btn-solid {
  display: inline-block; padding: 18px 60px;
  background: var(--red); border: none;
  font-family: var(--display); font-size: 11px; letter-spacing: 5px;
  color: #fff; text-decoration: none; text-transform: uppercase;
  transition: all 0.4s; cursor: pointer;
}
.btn-solid:hover {
  background: var(--red-b);
  box-shadow: 0 0 40px rgba(139,0,0,0.6);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════
   HOME PAGE
═══════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; margin-top: -70px;  /* overlap header */
}
@media (max-width: 768px) {
  .hero { margin-top: -88px !important; } /* overlap ann-bar(32) + header(56) */
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center top, #1a0000 0%, #000 60%);
}
.hero-watermark {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
.hero-watermark img {
  width: min(68vw, 580px); height: min(68vw, 580px);
  object-fit: contain;
  opacity: 0.07;
  filter: grayscale(20%) sepia(30%) hue-rotate(320deg) saturate(0.5);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 40px;
}
.hero-brand {
  font-family: var(--gothic);
  font-size: clamp(42px, 8vw, 96px);
  line-height: 1.1;
  text-shadow: 0 0 60px rgba(139,0,0,0.4);
  animation: fadeUp 1.5s ease both;
}
.hero-divider {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--red), transparent);
  margin: 30px auto;
  animation: fadeUp 1.5s ease 0.3s both;
}
.hero-slogan {
  font-family: var(--display);
  font-size: clamp(12px, 2.5vw, 22px); letter-spacing: 12px;
  color: var(--red); text-transform: uppercase; font-weight: 600;
  text-shadow: 0 0 30px rgba(139,0,0,0.8);
  animation: fadeUp 1.5s ease 0.5s both;
}
.hero-sub {
  font-family: var(--body);
  font-size: clamp(14px, 1.8vw, 20px); letter-spacing: 6px;
  color: rgba(255,255,255,0.5); text-transform: uppercase;
  margin-top: 20px; font-style: italic;
  animation: fadeUp 1.5s ease 0.8s both;
}
.btn-war.hero-btn {
  margin-top: 50px;
  animation: fadeUp 1.5s ease 1s both;
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}
.hero-scroll-hint {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--display); font-size: 8px; letter-spacing: 5px;
  color: rgba(255,255,255,0.3); text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll-hint::after {
  content: ''; width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(139,0,0,0.8), transparent);
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(8px); }
}

/* war identity */
/* WAR IDENTITY SECTION — replaced by new design */
.section-war-wm { display: none !important; }
.section-war-text { display: none; }

/* featured products */
.section-featured {
  padding: 100px 60px; max-width: 1400px; margin: 0 auto;
}
.section-title {
  font-family: var(--gothic);
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: 4px; text-transform: uppercase;
  margin-bottom: 60px; text-align: center;
}
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2px;
}
.section-view-all { text-align: center; margin-top: 40px; }

/* final cta */
.section-final-cta {
  text-align: center; padding: 120px 60px;
  background: linear-gradient(to bottom, transparent, rgba(139,0,0,0.05), transparent);
}
.final-cta-title {
  font-family: var(--gothic);
  font-size: clamp(22px, 6.2vw, 9999px);
  line-height: 1.1; letter-spacing: 1px;
  white-space: nowrap;
  width: 100%;
  display: block;
  text-align: center;
  animation: warPulse 3s ease-in-out infinite;
  padding: 0 !important;
}
.section-final-cta {
  overflow: hidden !important;
  padding: 120px 0 !important;
}
@media(max-width:900px){
  .final-cta-title { white-space: normal !important; font-size: clamp(22px, 6vw, 42px) !important; }
  .section-final-cta { padding: 80px 24px !important; overflow: visible !important; }
}
@keyframes warPulse {
  0%,100% { text-shadow: 0 0 20px rgba(139,0,0,0.4); color: #fff; }
  50%     { text-shadow: 0 0 50px rgba(200,0,0,0.8), 0 0 100px rgba(139,0,0,0.4); color: #fff5f5; }
}
.final-cta-sub {
  font-family: var(--display); font-size: 11px; letter-spacing: 8px;
  color: var(--red); text-transform: uppercase; margin: 20px 0 40px;
}

/* ═══════════════════════════════════════════════
   PRODUCT CARDS
═══════════════════════════════════════════════ */
.product-card {
  background: var(--gd); overflow: hidden; cursor: pointer;
  transition: transform 0.4s;
}
.product-card:hover { transform: translateY(-4px); z-index: 2; position: relative; }

.product-card-img-link { display: block; text-decoration: none; }
.product-card-img {
  width: 100%; aspect-ratio: 3/4;
  background: var(--gm);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.product-card-img > img { width: 100%; height: 100%; object-fit: cover; }

.product-card-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 50%, #0a0a0a 100%);
}
.product-card-placeholder img {
  width: 90px; height: 90px; object-fit: contain;
  opacity: 0.22; filter: grayscale(20%) sepia(20%) hue-rotate(320deg);
}
.product-card-hover {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.4s;
  display: flex; align-items: flex-end; justify-content: center; padding: 28px;
}
.product-card:hover .product-card-hover { opacity: 1; }
.product-card-add {
  width: 100%; padding: 14px;
  background: var(--red); border: none; color: #fff;
  font-family: var(--display); font-size: 10px; letter-spacing: 4px;
  text-transform: uppercase; cursor: pointer; transition: all 0.3s;
}
.product-card-add:hover {
  background: var(--red-b); box-shadow: 0 0 20px rgba(139,0,0,0.6);
}
.product-card-info { padding: 20px; border-top: 1px solid rgba(255,255,255,0.05); }
.product-card-name {
  font-family: var(--display); font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 8px; color: #fff;
}
.product-card-price {
  font-family: var(--body); font-size: 18px; color: var(--red); font-weight: 600;
}
.product-card-compare {
  text-decoration: line-through; color: rgba(255,255,255,0.3);
  margin-right: 8px; font-size: 14px;
}
.product-card-tag {
  display: inline-block; padding: 3px 10px; margin-top: 8px;
  border: 1px solid rgba(139,0,0,0.4);
  font-family: var(--display); font-size: 7px; letter-spacing: 3px;
  color: rgba(139,0,0,0.8); text-transform: uppercase;
}

/* ═══════════════════════════════════════════════
   SHOP PAGE
═══════════════════════════════════════════════ */
.shop-page-header {
  padding: 50px 60px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.shop-page-header-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: flex-end; justify-content: space-between;
}
.shop-eyebrow {
  font-family: var(--display); font-size: 11px; letter-spacing: 8px;
  color: var(--red); text-transform: uppercase; margin-bottom: 10px;
  opacity: 1; font-weight: 700;
  text-shadow: 0 0 20px rgba(139,0,0,0.4);
  margin-bottom: 2px;
}
.shop-page-title {
  font-family: 'Chomsky', 'UnifrakturMaguntia', serif; font-size: clamp(70px,9vw,120px); letter-spacing: 4px; font-weight: 400;
}
.shop-product-count {
  font-family: var(--display); font-size: 10px; letter-spacing: 4px;
  color: rgba(255,255,255,0.4); text-transform: uppercase;
}
.shop-product-grid {
  max-width: 1400px; margin: 0 auto;
  padding: 40px 60px 100px;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 2px;
}
.shop-empty {
  padding: 80px 20px; text-align: center; grid-column: 1/-1;
  font-family: var(--display); font-size: 11px; letter-spacing: 4px;
  color: rgba(255,255,255,0.3); text-transform: uppercase;
}
.shop-pagination {
  text-align: center; padding: 40px;
  font-family: var(--display); font-size: 11px; letter-spacing: 3px;
}
.shop-pagination a {
  color: rgba(255,255,255,0.5); text-decoration: none; margin: 0 10px; text-transform: uppercase;
}
.shop-pagination a:hover { color: var(--red); }
.shop-pagination .current { color: var(--red); margin: 0 10px; }

/* ═══════════════════════════════════════════════
   PRODUCT PAGE
═══════════════════════════════════════════════ */
.product-page { max-width: none; margin: 0; padding: 0; }
.product-page-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.product-gallery { position: sticky; top: 90px; }
.product-main-image {
  width: 100%; aspect-ratio: 3/4; overflow: hidden;
  background: var(--gm);
}
.product-main-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.product-main-image:hover img { transform: scale(1.04); }
.product-no-image {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg,#0a0a0a 0%,#1a0000 50%,#0a0a0a 100%);
}
.product-no-image img { width: 160px; opacity: 0.22; filter: grayscale(30%); }
.product-thumbs { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.product-thumb {
  width: 70px; height: 88px; object-fit: cover; cursor: pointer;
  opacity: 0.6; transition: opacity 0.2s, border 0.2s;
  border: 1px solid transparent;
}
.product-thumb:hover { opacity: 1; border-color: var(--red); }

.product-info { padding: 10px 0; }
.product-eyebrow {
  font-family: var(--display); font-size: 9px; letter-spacing: 6px;
  color: var(--red); text-transform: uppercase; margin-bottom: 12px;
}
.product-title {
  font-family: var(--gothic);
  font-size: clamp(24px, 3.5vw, 48px); letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 20px; line-height: 1.2;
}
.product-price-block { margin-bottom: 28px; }
.product-price-main {
  font-family: var(--body); font-size: 28px; color: var(--red); font-weight: 600;
}
.product-price-compare {
  font-family: var(--body); font-size: 18px;
  color: rgba(255,255,255,0.3); text-decoration: line-through; margin-right: 10px;
}
.product-option-group { margin-bottom: 20px; }
.product-option-label {
  display: block; font-family: var(--display); font-size: 9px; letter-spacing: 4px;
  color: rgba(255,255,255,0.5); text-transform: uppercase; margin-bottom: 10px;
}
.product-option-values { display: flex; gap: 8px; flex-wrap: wrap; }
.product-option-btn {
  padding: 10px 18px; background: var(--gm);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7); font-family: var(--display); font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: all 0.2s;
}
.product-option-btn:hover,
.product-option-btn.active { background: var(--red); border-color: var(--red); color: #fff; }

.product-qty-block {
  display: flex; align-items: center; gap: 0;
  border: 1px solid rgba(255,255,255,0.1); width: fit-content; margin-bottom: 20px;
}
.product-qty-btn {
  width: 40px; height: 44px; background: var(--gm); border: none;
  color: #fff; font-size: 18px; cursor: pointer; transition: background 0.2s;
}
.product-qty-btn:hover { background: var(--red); }
.product-qty-input {
  width: 60px; height: 44px; background: transparent;
  border: none; border-left: 1px solid rgba(255,255,255,0.1);
  border-right: 1px solid rgba(255,255,255,0.1);
  color: #fff; text-align: center; font-family: var(--display); font-size: 14px; outline: none;
}
.product-atc-btn {
  width: 100%; padding: 18px; background: var(--red); border: none; color: #fff;
  font-family: var(--display); font-size: 12px; letter-spacing: 5px;
  text-transform: uppercase; cursor: pointer; margin-bottom: 24px; transition: all 0.4s;
}
.product-atc-btn:hover { background: var(--red-b); box-shadow: 0 0 40px rgba(139,0,0,0.5); transform: translateY(-2px); }
.product-atc-sold { opacity: 0.4; cursor: not-allowed; }
.product-atc-sold:hover { background: var(--red); transform: none; box-shadow: none; }

.product-desc-block { margin-top: 30px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); }
.product-desc-label {
  font-family: var(--display); font-size: 9px; letter-spacing: 5px;
  color: var(--red); text-transform: uppercase; margin-bottom: 15px;
}
.rte { font-family: var(--body); font-size: 16px; line-height: 1.8; color: rgba(255,255,255,0.65); }
.rte p, .rte li { margin-bottom: 10px; }
.rte strong { color: #fff; }
.rte a { color: var(--red); }
.product-war-note {
  margin-top: 28px; padding: 18px;
  border-left: 2px solid rgba(139,0,0,0.4);
  font-family: var(--body); font-size: 16px;
  font-style: italic; color: rgba(255,255,255,0.4);
}

/* ═══════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════ */
.about-hero {
  padding: 100px 60px 60px; text-align: center;
  border-bottom: 1px solid rgba(139,0,0,0.2);
}
.about-hero-title {
  font-family: var(--gothic);
  font-size: clamp(32px, 6vw, 80px); letter-spacing: 4px;
  text-transform: uppercase; margin: 16px 0 28px;
}
.about-hero-quote {
  font-family: var(--body); font-size: clamp(16px,2.5vw,28px);
  font-style: italic; color: rgba(255,255,255,0.6);
  letter-spacing: 2px; max-width: 700px; margin: 0 auto; line-height: 1.8;
}
.about-hero-quote em { color: var(--red); font-style: normal; }
.about-body {
  max-width: 900px; margin: 0 auto; padding: 80px 60px;
  display: flex; flex-direction: column; gap: 60px;
}
.about-block { border-left: 2px solid rgba(139,0,0,0.3); padding-left: 30px; }
.about-block-eyebrow {
  font-family: var(--display); font-size: 9px; letter-spacing: 6px;
  color: var(--red); text-transform: uppercase; margin-bottom: 14px;
}
.about-block-title {
  font-family: var(--gothic);
  font-size: clamp(18px, 2.5vw, 30px); letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 18px;
}
.about-block-text {
  font-family: var(--body); font-size: 17px; line-height: 1.9;
  color: rgba(255,255,255,0.7); font-weight: 300;
}
.about-block-text strong { color: #fff; font-weight: 600; }
.about-block-text em { color: var(--red); font-style: italic; }
.about-scripture {
  text-align: center; padding: 60px;
  border: 1px solid rgba(139,0,0,0.3); background: rgba(139,0,0,0.03); position: relative;
}
.about-scripture::before {
  content: '✝'; position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
  background: #000; padding: 0 20px; font-size: 20px; color: var(--red);
}
.scripture-text {
  font-family: var(--body); font-size: clamp(18px,3vw,32px);
  font-style: italic; line-height: 1.7; color: var(--off-w);
}
.scripture-ref {
  font-family: var(--display); font-size: 11px; letter-spacing: 4px;
  color: var(--red); text-transform: uppercase; margin-top: 20px;
}

/* ═══════════════════════════════════════════════
   CART PAGE
═══════════════════════════════════════════════ */
.cart-page { max-width: 1200px; margin: 0 auto; padding: 60px; }
.cart-page-title {
  font-family: var(--gothic);
  font-size: clamp(28px, 4vw, 52px); letter-spacing: 4px;
  text-transform: uppercase; margin-bottom: 50px;
}
.cart-page-empty {
  text-align: center; padding: 80px 20px;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.cart-page-empty img { width: 80px; opacity: 0.18; filter: grayscale(100%); }
.cart-page-empty p {
  font-family: var(--display); font-size: 11px; letter-spacing: 4px;
  color: rgba(255,255,255,0.4); text-transform: uppercase;
}
.cart-page-layout { display: grid; grid-template-columns: 1fr 360px; gap: 60px; align-items: start; }
.cart-page-item {
  display: flex; gap: 20px; padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cpi-img { width: 90px; height: 112px; flex-shrink: 0; background: var(--gm); overflow: hidden; }
.cpi-img img { width: 100%; height: 100%; object-fit: cover; }
.cpi-logo-ph { object-fit: contain !important; opacity: 0.2; }
.cpi-info { flex: 1; }
.cpi-name { font-family: var(--display); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 6px; }
.cpi-variant { font-family: var(--body); font-size: 14px; color: rgba(255,255,255,0.35); font-style: italic; margin-bottom: 12px; }
.cpi-qty-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.cpi-qty-row button { width: 28px; height: 28px; background: rgba(139,0,0,0.15); border: 1px solid rgba(139,0,0,0.3); color: #fff; cursor: pointer; font-size: 14px; transition: all 0.2s; }
.cpi-qty-row button:hover { background: var(--red); }
.cpi-qty-row span { font-family: var(--display); font-size: 13px; min-width: 24px; text-align: center; }
.cpi-remove { background: none; border: none; color: rgba(255,255,255,0.2); cursor: pointer; font-family: var(--display); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; transition: color 0.2s; }
.cpi-remove:hover { color: var(--red); }
.cpi-price { font-family: var(--body); font-size: 20px; color: var(--red); font-weight: 600; align-self: flex-start; }
.cart-page-summary { background: var(--gd); padding: 30px; border: 1px solid rgba(139,0,0,0.15); position: sticky; top: 90px; }
.cart-summary-title { font-family: var(--display); font-size: 10px; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 25px; padding-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.cart-summary-row { display: flex; justify-content: space-between; padding: 8px 0; font-family: var(--body); font-size: 15px; color: rgba(255,255,255,0.5); }
.cart-summary-total { padding-top: 15px; margin-top: 10px; border-top: 1px solid rgba(255,255,255,0.1); color: #fff; font-size: 20px; font-weight: 600; }
.cart-summary-total span:last-child { color: var(--red); }
.cart-keep-link { display: block; text-align: center; margin-top: 12px; font-family: var(--display); font-size: 9px; letter-spacing: 3px; color: rgba(255,255,255,0.25); text-transform: uppercase; text-decoration: none; transition: color 0.2s; }
.cart-keep-link:hover { color: rgba(255,255,255,0.6); }

/* ═══════════════════════════════════════════════
   GENERIC / AUTH / ERROR PAGES
═══════════════════════════════════════════════ */
.generic-page { max-width: 900px; margin: 0 auto; padding: 80px 60px; }
.generic-page-title {
  font-family: var(--gothic); font-size: clamp(28px,4vw,52px);
  letter-spacing: 4px; text-transform: uppercase; margin-bottom: 50px;
  padding-bottom: 28px; border-bottom: 1px solid rgba(139,0,0,0.2);
}
.generic-page-body { font-family: var(--body); font-size: 17px; line-height: 1.9; color: rgba(255,255,255,0.7); }

.auth-page { max-width: 480px; margin: 0 auto; padding: 80px 24px; }
.auth-title { font-family: var(--gothic); font-size: clamp(28px,4vw,48px); letter-spacing: 4px; text-transform: uppercase; margin-bottom: 40px; }
.auth-error { color: var(--red); font-family: var(--display); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 20px; }
.auth-field { margin-bottom: 20px; }
.auth-label { display: block; margin-bottom: 8px; font-family: var(--display); font-size: 9px; letter-spacing: 4px; color: rgba(255,255,255,0.5); text-transform: uppercase; }
.auth-input { width: 100%; padding: 14px 16px; background: var(--gd); border: 1px solid rgba(255,255,255,0.08); color: #fff; font-family: var(--body); font-size: 16px; outline: none; transition: border-color 0.3s; }
.auth-input:focus { border-color: var(--red); }
.auth-input::placeholder { color: rgba(255,255,255,0.2); }
.auth-links { display: flex; justify-content: center; gap: 16px; margin-top: 20px; font-family: var(--display); font-size: 9px; letter-spacing: 3px; text-transform: uppercase; }
.auth-links a { color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.auth-links a:hover { color: var(--red); }

.error-page { min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 60px 20px; }
.error-page-code { font-family: var(--gothic); font-size: clamp(80px,18vw,180px); color: var(--red); line-height: 1; text-shadow: 0 0 40px rgba(139,0,0,0.5); }
.error-page-msg { font-family: var(--display); font-size: 11px; letter-spacing: 6px; color: rgba(255,255,255,0.4); text-transform: uppercase; margin: 20px 0 40px; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.site-footer { border-top: 1px solid rgba(255,255,255,0.05); padding: 60px; text-align: center; }
.footer-logo-text { font-family: var(--gothic); font-size: 30px; letter-spacing: 3px; color: rgba(255,255,255,0.25); margin-bottom: 16px; }
.footer-slogan { font-family: var(--display); font-size: 9px; letter-spacing: 6px; color: var(--red); text-transform: uppercase; margin-bottom: 24px; }
.footer-nav { display: flex; justify-content: center; gap: 32px; margin-bottom: 24px; }
.footer-nav a { font-family: var(--display); font-size: 9px; letter-spacing: 3px; color: rgba(255,255,255,0.3); text-decoration: none; text-transform: uppercase; transition: color 0.2s; }
.footer-nav a:hover { color: rgba(255,255,255,0.7); }
.footer-copy { font-family: var(--body); font-size: 13px; color: rgba(255,255,255,0.2); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .product-page-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-gallery { position: static; }
  .cart-page-layout { grid-template-columns: 1fr; }
  .cart-page-summary { position: static; }
}
@media (max-width: 900px) {
  #site-header { padding: 0 18px; }
  .nav-left { gap: 14px; }
  .nav-left .nav-link { font-size: 8.5px; letter-spacing: 2px; }
  .header-logo-img { height: 42px; width: 42px; }
  .cart-sidebar { width: 100%; right: -100%; }
  .hero-content { padding: 88px 20px 0 !important; align-items: flex-start !important; justify-content: flex-start !important; }
  /* section-war mobile handled by sw-* classes */
  .section-featured { padding: 60px 24px; }
  .section-final-cta { padding: 80px 24px; }
  .shop-page-header { padding: 40px 24px 30px; }
  .shop-product-grid { padding: 30px 24px 60px; }
  .about-hero { padding: 80px 24px 40px; }
  .about-body { padding: 40px 24px; }
  .cart-page { padding: 40px 24px; }
  .product-page { padding: 30px 24px; }
  .generic-page { padding: 40px 24px; }
  .auth-page { padding: 60px 24px; }
  .site-footer { padding: 40px 24px; }
}

/* ═══════════════════════════════════════════════
   CATHEDRAL HERO BACKGROUND
═══════════════════════════════════════════════ */
.hero-cathedral {
  position: absolute; inset: 0; z-index: 0;
}
.hero-cathedral img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  opacity: 1; filter: none;
}
.hero-video-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 48.7% center;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1) 0%,
    rgba(0,0,0,0.05) 40%,
    rgba(0,0,0,0.3) 75%,
    rgba(0,0,0,0.85) 100%
  );
}
/* push watermark and content above cathedral */
.hero-watermark { z-index: 2; }
.hero-content   { z-index: 3; }
.hero-scroll-hint { z-index: 3; }

/* ═══════════════════════════════════════════════
   BUTTERFLY SKULL — DEATH & RESURRECTION
═══════════════════════════════════════════════ */
.section-butterfly {
  padding: 120px 60px;
  border-top: 1px solid rgba(139,0,0,0.15);
  border-bottom: 1px solid rgba(139,0,0,0.15);
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(20,0,0,0.4) 50%, rgba(0,0,0,0) 100%);
  overflow: hidden;
}
.butterfly-wrap {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.butterfly-img {
  width: 100%; max-width: 420px;
  margin: 0 auto; display: block;
  /* remove remaining silver bg via mix-blend-mode */
  mix-blend-mode: multiply;
  filter: invert(1) contrast(1.1);
  animation: butterflyFloat 6s ease-in-out infinite;
  opacity: 0.92;
}
@keyframes butterflyFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-14px) scale(1.02); }
}
.butterfly-eyebrow {
  font-family: var(--display); font-size: 9px; letter-spacing: 8px;
  color: var(--red); text-transform: uppercase; margin-bottom: 16px;
}
.butterfly-title {
  font-family: var(--gothic);
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: 3px; text-transform: uppercase;
  line-height: 1.2; margin-bottom: 28px;
  color: #fff;
}
.butterfly-body {
  font-family: var(--body);
  font-size: 18px; line-height: 1.9;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
}
.butterfly-body em { color: var(--red); font-style: italic; }
.butterfly-verse {
  font-family: var(--body);
  font-size: 16px; font-style: italic;
  color: rgba(255,255,255,0.45);
  border-left: 2px solid rgba(139,0,0,0.4);
  padding-left: 20px; line-height: 1.7;
  margin-bottom: 10px;
}
.butterfly-ref {
  font-family: var(--display); font-size: 9px; letter-spacing: 4px;
  color: var(--red); text-transform: uppercase; padding-left: 22px;
}

@media (max-width: 900px) {
  .butterfly-wrap { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .butterfly-img { max-width: 280px; }
  .butterfly-verse { text-align: left; }
  .section-butterfly { padding: 80px 24px; }
}

/* ── USER BUTTON ── */
.user-btn{
  display:inline-flex; align-items:center; justify-content:center; text-decoration:none;background:none;border:none;cursor:pointer;color:rgba(255,255,255,.65);padding:8px 10px;transition:color .3s;display:flex;align-items:center;}
.user-btn:hover{color:#fff;}
.user-btn.logged-in svg circle,.user-btn.logged-in svg path{stroke:#8B0000;}
.nav-right{gap:4px;}

/* ── LOGIN MODAL ── */

to{transform:none;opacity:1;}}

/* ── ANTI-DEMON: dark red blink only ── */
.ad-title{font-family:var(--gothic);font-size:clamp(28px,8vw,100px);font-weight:900;line-height:1;letter-spacing:6px;color:#8B0000 !important;text-shadow:0 0 15px rgba(139,0,0,0.5) !important;animation:adBlink 1.4s ease-in-out infinite !important;}
.ad-sub{font-family:var(--display);font-size:clamp(12px,2.5vw,20px);letter-spacing:10px;color:#6b0000 !important;text-transform:uppercase;margin:20px 0;animation:adBlink 1.8s ease-in-out infinite !important;}
.ad-danger{font-family:var(--gothic);font-size:clamp(20px,5vw,58px);letter-spacing:6px;color:#7a0000 !important;animation:adBlink 2.2s ease-in-out infinite !important;text-shadow:none !important;}
@keyframes adBlink{0%,100%{opacity:1;}45%,55%{opacity:0.1;}}

/* ── BUTTERFLY fix ── */
.butterfly-img,.sbfly-img{filter:none !important;mix-blend-mode:normal !important;}


/* ══════════════════════════════════════
   HERO: title top-left edge, btn bottom-left
══════════════════════════════════════ */
.hero-content {
  position: absolute !important;
  inset: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  /* top = header height (70px) + small gap; left = tight to edge */
  padding: 78px 0 52px 28px !important;
  z-index: 3;
}
.hero-above {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-below {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-brand {
  font-family: 'UnifrakturMaguntia', serif !important;
  font-size: clamp(34px, 5.5vw, 80px) !important;
  font-weight: 400 !important;
  letter-spacing: 3px !important;
  line-height: 1 !important;
  white-space: nowrap;
  text-shadow: 0 0 60px rgba(139,0,0,.4);
  animation: fadeUp 1.5s ease both;
  margin: 0 !important;
}
.hero-divider {
  width: 55px !important;
  height: 1px !important;
  background: linear-gradient(to right, var(--red), transparent) !important;
  margin: 18px 0 !important;
  animation: fadeUp 1.5s 0.3s ease both;
}
.hero-slogan {
  text-align: left !important;
  font-size: clamp(10px, 1.6vw, 17px) !important;
  letter-spacing: 7px !important;
  animation: fadeUp 1.5s 0.5s ease both;
}
.hero-sub {
  text-align: left !important;
  margin-top: 12px !important;
  animation: fadeUp 1.5s 0.8s ease both;
}
.hero-watermark { display: none !important; }

/* ══════════════════════════════════════
   BUTTERFLY SKULL PNG
══════════════════════════════════════ */
.butterfly-skull-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bfloat 6s ease-in-out infinite;
}
.butterfly-skull-img {
  width: 100%;
  max-width: 480px;
  display: block;
  filter: drop-shadow(0 0 24px rgba(139,0,0,.3));
}
@keyframes bfloat {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-12px) scale(1.02); }
}


/* ══════════════════════════════════════
   BUTTERFLY SKULL — static, no animation
══════════════════════════════════════ */
.butterfly-skull-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.butterfly-skull-img {
  width: 100%;
  max-width: 460px;
  display: block;
  filter: drop-shadow(0 0 20px rgba(139,0,0,.2));
  /* static — no float animation */
}

/* ══════════════════════════════════════
   SLOGAN CHROME in war section
══════════════════════════════════════ */
.section-war-img {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
}
.slogan-chrome-img {
  width: 100%;
  max-width: 700px;
  display: block;
  filter: drop-shadow(0 0 30px rgba(180,180,200,.15));
}

/* ══════════════════════════════════════
   BTN-WAR hover: fills red (matching Enter the Fight screenshot)
══════════════════════════════════════ */
.btn-war {
  border: 1px solid var(--red) !important;
  color: #fff !important;
  transition: background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease !important;
}
.btn-war::before {
  background: var(--red) !important;
}
.btn-war:hover {
  background: var(--red) !important;
  color: #fff !important;
  box-shadow: 0 0 24px rgba(139,0,0,.5) !important;
}
/* Also apply to .hcta (hero cta) since it shares same style */
.hcta, .hero-cta {
  border: 1px solid var(--red) !important;
  transition: background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease !important;
}
.hcta:hover, .hero-cta:hover {
  background: var(--red) !important;
  box-shadow: 0 0 24px rgba(139,0,0,.5) !important;
}

/* ══════════════════════════════════════
   WAR IDENTITY — foto origem + texto canto sup. direito
══════════════════════════════════════ */
.section-war {
  position: relative;
  height: clamp(420px, 55vw, 680px);
  overflow: hidden;
  border-top: 1px solid rgba(200,196,188,0.06);
  border-bottom: 1px solid rgba(200,196,188,0.06);
}

/* Background: foto da origem */
.sw-bg {
  position: absolute; inset: 0;
  /* background-image set via inline Liquid style tag */
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.03);
  transition: transform 8s ease;
}
.section-war:hover .sw-bg {
  transform: scale(1.0);
}

/* Overlay: gradiente — transparente no centro, escuro nos cantos */
.sw-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to left,
      rgba(0,0,0,0.0) 0%,
      rgba(0,0,0,0.1) 35%,
      rgba(0,0,0,0.5) 65%,
      rgba(0,0,0,0.75) 100%
    ),
    linear-gradient(to bottom,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.0) 40%,
      rgba(0,0,0,0.0) 70%,
      rgba(0,0,0,0.6) 100%
    );
}

/* Conteúdo: canto superior direito */
.sw-content {
  position: absolute;
  top: clamp(28px, 5vw, 60px);
  right: clamp(24px, 6vw, 80px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  max-width: 420px;
}

/* Eyebrow */
.sw-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: clamp(7px, 1vw, 9px);
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(200,196,188,0.38);
  margin-bottom: 14px;
}

/* Título principal — gradiente cromado */
.sw-title {
  font-family: 'UnifrakturMaguntia', serif;
  font-size: clamp(32px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  background: linear-gradient(180deg,
    #ffffff 0%, #e8e4dc 20%,
    #c8c4bc 40%, #f0ece4 58%,
    #9a9690 75%, #d0ccc4 90%
  );
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 16px rgba(200,196,188,0.18));
  margin-bottom: 16px;
}

/* Divisor */
.sw-divider {
  width: 48px; height: 1px;
  background: linear-gradient(to left, var(--red), transparent);
  margin-bottom: 14px;
}

/* Subtítulo */
.sw-sub {
  font-family: 'Cinzel', serif;
  font-size: clamp(8px, 1.2vw, 11px);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(200,196,188,0.45);
  line-height: 1.9;
  margin-bottom: 24px;
}

/* Botão */
.sw-btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: 'Cinzel', serif;
  font-size: clamp(8px, 1vw, 10px);
  letter-spacing: 5px;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(200,196,188,0.8);
  border: 1px solid rgba(200,196,188,0.25);
  background: rgba(0,0,0,0.35);
  position: relative; overflow: hidden;
  transition: border-color .3s, color .3s;
  backdrop-filter: blur(4px);
}
.sw-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(139,0,0,0.35);
  transform: translateX(-101%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.sw-btn:hover::before { transform: translateX(0); }
.sw-btn:hover { border-color: rgba(200,196,188,0.55); color: #fff; }
.sw-btn span { position: relative; z-index: 1; }

/* Mobile: conteúdo no canto superior direito menor */
@media (max-width: 768px) {
  .section-war { height: clamp(320px, 90vw, 480px); }
  .sw-content {
    top: 20px; right: 18px;
    max-width: calc(100% - 36px);
  }
  .sw-title { font-size: clamp(26px, 8vw, 44px); }
  .sw-sub { font-size: 8px; letter-spacing: 3px; }
  .sw-btn { padding: 10px 20px; font-size: 8px; letter-spacing: 4px; }
}

/* ══════════════════════════════════════
   BUTTERFLY — large chrome, fills container
   image left → about us / branding right
══════════════════════════════════════ */
.section-butterfly {
  padding: 0;
  border-top: 1px solid rgba(139,0,0,.12);
  border-bottom: 1px solid rgba(139,0,0,.12);
  overflow: hidden;
}
.butterfly-wrap {
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  min-height: 600px;
}
.butterfly-img-link {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: #000;
}
.butterfly-img-link::after {
  content: 'About Us →';
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Cinzel', serif;
  font-size: 9px; letter-spacing: 5px;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  opacity: 0;
  transition: opacity .35s;
  white-space: nowrap;
}
.butterfly-img-link:hover::after { opacity: 1; }
.butterfly-skull-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  transition: transform .6s ease;
  padding: 40px;
}
.butterfly-img-link:hover .butterfly-skull-img {
  transform: scale(1.03);
}

/* Branding right side */
.butterfly-text {
  padding: 70px 60px 70px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #000;
}
.butterfly-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 9px; letter-spacing: 8px;
  color: var(--red); text-transform: uppercase;
  margin-bottom: 20px;
}
.butterfly-title {
  font-family: 'UnifrakturMaguntia', serif;
  font-size: clamp(28px, 4vw, 54px);
  letter-spacing: 3px; text-transform: uppercase;
  line-height: 1.1; margin-bottom: 28px;
  color: #fff;
}
.butterfly-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; line-height: 1.9;
  color: rgba(255,255,255,.65);
  margin-bottom: 28px;
}
.butterfly-body em { color: var(--red); font-style: italic; }
.butterfly-verse {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; font-style: italic;
  color: rgba(255,255,255,.4);
  border-left: 2px solid rgba(139,0,0,.4);
  padding-left: 18px; line-height: 1.7;
  margin-bottom: 10px;
}
.butterfly-ref {
  font-family: 'Cinzel', serif; font-size: 9px;
  letter-spacing: 4px; color: var(--red);
  text-transform: uppercase; padding-left: 20px;
}

/* ══════════════════════════════════════
   BUTTONS — hover fills red (Enter the Fight style)
══════════════════════════════════════ */
.btn-war {
  position: relative; overflow: hidden;
  border: 1px solid var(--red) !important;
  background: transparent !important;
  color: #fff !important;
  transition: color .35s, box-shadow .35s !important;
}
.btn-war::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--red);
  transform: translateX(-100%);
  transition: transform .35s ease;
}
.btn-war span { position: relative; z-index: 1; }
.btn-war:hover::before { transform: translateX(0); }
.btn-war:hover {
  box-shadow: 0 0 20px rgba(139,0,0,.5) !important;
  color: #fff !important;
}

@media(max-width:900px){
  .butterfly-wrap { grid-template-columns: 1fr; }
  .butterfly-text { padding: 40px 24px; }
  .butterfly-skull-img { max-height: 400px; object-fit: contain; background: #000; }
  /* slogan-chrome-img deprecated */
}

/* ══════════════════════════════════════
   MOBILE HERO ADJUSTMENTS ONLY
   (max-width: 768px)
══════════════════════════════════════ */
@media (max-width: 768px) {

  /* Hero content: texto no canto superior esquerdo, colado ao header */
  .hero-content {
    /* ann-bar(32) + header(56) = 88px — mais 16px de respiro */
    padding: 104px 20px 0 20px !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 0 !important;
  }

  .hero-above {
    align-items: flex-start !important;
    text-align: left !important;
    width: 100%;
  }

  /* Death by Cross — grande e à esquerda */
  .hero-brand {
    font-size: clamp(38px, 10vw, 52px) !important;
    text-align: left !important;
    white-space: normal !important;
    line-height: 1.05 !important;
    margin-bottom: 6px !important;
  }

  /* Linha divisória — à esquerda */
  .hero-divider {
    margin: 8px 0 !important;
    background: linear-gradient(to right, var(--red), transparent) !important;
    width: 50px !important;
  }

  /* Slogan e sub — à esquerda */
  .hero-slogan {
    text-align: left !important;
    font-size: 10px !important;
    letter-spacing: 5px !important;
    margin-bottom: 2px !important;
  }
  .hero-sub {
    text-align: left !important;
    font-size: 12px !important;
    letter-spacing: 3px !important;
    margin-bottom: 0 !important;
  }

  /* Botão e Instagram — à esquerda, sem botão war */
  .hero-below {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    width: 100%;
    margin-top: 14px !important;
    position: static !important;
    gap: 8px !important;
  }
  .hero-below .btn-war { display: none !important; }

  /* GO DOWN hint — centralizado */
  .hero-scroll-hint {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
}

/* ══════════════════════════════════════
   MOBILE HEADER — hamburger + logo center
══════════════════════════════════════ */
.mobile-menu-btn { display: none; }
.mobile-menu-drawer { display: none; }
.mobile-menu-overlay { display: none; }

@media (max-width: 768px) {

  /* Header: hamburger left | logo center | cart right */
  #site-header {
    grid-template-columns: 44px 1fr 80px !important;
    padding: 0 16px !important;
    position: fixed !important;
    top: 32px !important;   /* ann-bar height */
    left: 0 !important;
    right: 0 !important;
    height: 56px !important;
    z-index: 1000 !important;
  }

  /* Hide desktop nav */
  .nav-left { display: none !important; }

  /* Show hamburger */
  .mobile-menu-btn {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    width: 36px; height: 36px;
  }
  .mobile-menu-btn span {
    display: block;
    width: 22px; height: 1.5px;
    background: rgba(255,255,255,0.8);
    border-radius: 2px;
    transition: all 0.3s;
  }
  .mobile-menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
  .mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
  .mobile-menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

  /* Logo stays centered */
  .header-logo-link { justify-self: center; }

  /* Right: user + cart compact */
  .nav-right { gap: 0 !important; }
  .user-btn {
  display:inline-flex; align-items:center; justify-content:center; text-decoration:none; padding: 6px !important; }
  .cart-trigger { padding: 6px !important; }

  /* MOBILE MENU DRAWER */
  .mobile-menu-drawer {
    display: block !important;
    position: fixed;
    top: 0; left: -100%;
    width: 75vw; max-width: 300px;
    height: 100vh;
    background: rgba(0,0,0,0.97);
    border-right: 1px solid rgba(139,0,0,0.3);
    z-index: 1100;
    padding: 80px 36px 40px;
    transition: left 0.4s cubic-bezier(0.16,1,0.3,1);
  }
  .mobile-menu-drawer.open { left: 0; }
  .mobile-menu-close {
    position: absolute; top: 20px; right: 20px;
    background: none; border: none; color: rgba(255,255,255,0.5);
    font-size: 20px; cursor: pointer;
  }
  .mobile-nav { display: flex; flex-direction: column; gap: 0; }
  .mobile-nav a {
    font-family: 'Cinzel', serif;
    font-size: 11px; letter-spacing: 5px;
    color: rgba(255,255,255,0.7);
    text-decoration: none; text-transform: uppercase;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: color 0.2s;
  }
  .mobile-nav a:hover { color: #fff; }
  .mobile-nav-antidemon { color: #8B0000 !important; }

  .mobile-menu-overlay {
    display: block !important;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1099;
    opacity: 0; visibility: hidden;
    transition: all 0.3s;
  }
  .mobile-menu-overlay.open { opacity: 1; visibility: visible; }

  /* ── HERO MOBILE: texto no canto sup. esquerdo, abaixo do header fixo ── */
  /* ann-bar(32px) + header(56px) = 88px → padding-top de 100px dá 12px de respiro */
  .hero-content {
    padding: 100px 20px 0 20px !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    gap: 0 !important;
  }
  .hero-above {
    align-items: flex-start !important;
    text-align: left !important;
    width: 100%;
  }
  .hero-brand {
    font-size: clamp(42px, 11vw, 58px) !important;
    text-align: left !important;
    white-space: normal !important;
    line-height: 1.05 !important;
    margin-bottom: 6px !important;
  }
  .hero-divider {
    margin: 8px 0 !important;
    background: linear-gradient(to right, var(--red), transparent) !important;
    width: 50px !important;
  }
  .hero-slogan { text-align: left !important; font-size: 10px !important; margin-bottom: 2px !important; }
  .hero-sub    { text-align: left !important; font-size: 11px !important; margin-bottom: 0 !important; }

  /* Esconde botão Enter the Fight, mantém Instagram */
  .hero-below {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    margin-top: 12px !important;
    position: static !important;
    gap: 0 !important;
  }
  .hero-below .btn-war { display: none !important; }

  /* ── MOBILE CAROUSEL ── */
  .desktop-only { display: none !important; }
  .mobile-only  { display: flex !important; }

  .mobile-carousel-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
    overflow: hidden;
  }
  .mobile-carousel-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    width: 100%;
  }
  .carousel-slide {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 0 12px;
  }
  .carousel-arrow {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    z-index: 10;
    background: rgba(0,0,0,0.7);
    border: 1px solid rgba(139,0,0,0.4);
    color: rgba(255,255,255,0.8);
    width: 36px; height: 36px;
    border-radius: 0;
    font-size: 18px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
  }
  .carousel-arrow:hover { background: rgba(139,0,0,0.6); color: #fff; }
  .carousel-prev { left: 0; }
  .carousel-next { right: 0; }

  /* ── PRODUCT PRICE WHITE on mobile ── */
  .product-card-price { color: #fff !important; }
  .product-card-compare { color: rgba(255,255,255,0.4) !important; }
}

/* Desktop: hide mobile carousel, show grid */
@media (min-width: 769px) {
  .desktop-only { display: grid !important; }
  .mobile-only  { display: none !important; }
}

/* ══════════════════════════════════════
   PRODUCT IMAGE HOVER SWAP
══════════════════════════════════════ */
.product-card-img { position: relative; overflow: hidden; }
.product-img-main {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: opacity 0.35s ease;
}
.product-img-hover {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.product-card:hover .product-img-main  { opacity: 0; }
.product-card:hover .product-img-hover { opacity: 1; }

.product-card-hover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.35s;
  display: flex; align-items: flex-end; justify-content: center; padding: 24px;
}
.product-card:hover .product-card-hover-overlay { opacity: 1; }

/* Price always white */
.product-card-price { color: #fff !important; }
.product-card-compare { color: rgba(255,255,255,0.35) !important; }

/* ══════════════════════════════════════
   PRODUCTS CAROUSEL (desktop + mobile)
══════════════════════════════════════ */
.products-carousel-wrap {
  position: relative;
  display: flex; align-items: center;
  gap: 0; width: 100%;
}
.products-carousel-viewport {
  overflow: hidden;
  width: 100%;
}
.products-carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.products-carousel-slide {
  flex: 0 0 calc(100% / 3);
  min-width: calc(100% / 3);
  padding: 0 4px;
  box-sizing: border-box;
}
.products-arrow {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(0,0,0,0.8);
  border: 1px solid rgba(139,0,0,0.4);
  color: rgba(255,255,255,0.8);
  font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s; z-index: 5;
  flex-shrink: 0;
}
.products-arrow:hover { background: rgba(139,0,0,0.7); color: #fff; border-color: #8B0000; }
.products-arrow-prev { margin-right: 8px; }
.products-arrow-next { margin-left: 8px; }

/* ══════════════════════════════════════
   BTN-WAR: red sweeps LEFT → RIGHT on hover,
   reverses RIGHT → LEFT on mouse leave
══════════════════════════════════════ */
.btn-war, .hcta, .hero-cta, .btn-solid {
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.35s, box-shadow 0.35s !important;
}
.btn-war::before, .hcta::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--red);
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.btn-war span, .hcta span { position: relative; z-index: 1; }
.btn-war:hover::before, .hcta:hover::before {
  transform: translateX(0);
}
/* On mouse leave: slide out to the right */
.btn-war::after, .hcta::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--red);
  transform: translateX(101%);
  transition: transform 0s;
  z-index: 0;
  pointer-events: none;
}

/* product-card-add button same interaction */
.product-card-add {
  position: relative; overflow: hidden;
  transition: color 0.35s !important;
}
.product-card-add::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(180,0,0,0.8);
  transform: translateX(-101%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  z-index: 0;
}
.product-card-add span,
.product-card-add { position: relative; z-index: 1; }
.product-card-add:hover::before { transform: translateX(0); }

/* ══════════════════════════════════════
   MOBILE: 1 slide at a time
══════════════════════════════════════ */
@media (max-width: 768px) {
  .products-carousel-slide {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 0 8px;
  }
  .products-arrow {
    width: 36px; height: 36px; font-size: 16px;
  }
}

/* ── Desktop: 4 products per view ── */
@media (min-width: 769px) {
  .products-carousel-slide {
    flex: 0 0 25% !important;
    min-width: 25% !important;
    padding: 0 6px !important;
  }
  .products-arrow-prev { margin-right: 12px; }
  .products-arrow-next { margin-left: 12px; }
}


/* ═══════════════════════════════════════════════════
   BUTTONS — LEFT→RIGHT RED SWEEP (definitive, final)
   Hover: red fills from left to right
   Mouse leave: red exits to the right
═══════════════════════════════════════════════════ */

/* Reset any previous attempts */
.btn-war, .btn-war::before, .btn-war::after,
.hcta, .hcta::before, .hcta::after,
.hero-cta, .hero-cta::before, .hero-cta::after,
.btn-solid::before { all: unset; }

/* Base styles restored */
.btn-war {
  display: inline-block;
  padding: 16px 50px;
  border: 1px solid #8B0000;
  font-family: 'Cinzel', serif;
  font-size: 11px; letter-spacing: 5px;
  color: #fff;
  text-decoration: none; text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background: transparent;
  box-sizing: border-box;
  -webkit-appearance: none;
}

.btn-war span { position: relative; z-index: 2; pointer-events: none; }

/* The red fill layer */
.btn-war::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #8B0000;
  z-index: 1;
  /* Start: hidden to the LEFT */
  transform: translateX(-100%);
  /* Transition only on hover entry — CSS handles leave automatically */
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover: sweep IN from left to right */
.btn-war:hover::before {
  transform: translateX(0%);
}
/* Mouse leave: the transition runs in reverse (right to left exit) automatically */
/* because ::before goes back to translateX(-100%) */

.btn-war:hover {
  box-shadow: 0 0 20px rgba(139,0,0,0.4);
  color: #fff;
}

/* ── Hero CTA same style ── */
.hcta {
  display: inline-block;
  padding: 16px 50px;
  border: 1px solid #8B0000;
  font-family: 'Cinzel', serif;
  font-size: 11px; letter-spacing: 5px;
  color: #fff; text-decoration: none; text-transform: uppercase;
  cursor: pointer;
  position: relative; overflow: hidden;
  background: transparent;
  box-sizing: border-box;
}
.hcta span { position: relative; z-index: 2; pointer-events: none; }
.hcta::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  background: #8B0000; z-index: 1;
  transform: translateX(-100%);
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}
.hcta:hover::before { transform: translateX(0%); }
.hcta:hover { box-shadow: 0 0 20px rgba(139,0,0,0.4); color: #fff; }

/* ── Solid button (Join the War, Entrar no Arsenal) ── */
.btn-solid {
  display: inline-block;
  padding: 18px 60px;
  background: #8B0000;
  border: none;
  font-family: 'Cinzel', serif;
  font-size: 11px; letter-spacing: 5px;
  color: #fff; text-decoration: none; text-transform: uppercase;
  cursor: pointer; position: relative; overflow: hidden;
  transition: background 0.3s, box-shadow 0.3s;
}
.btn-solid:hover {
  background: #aa0000;
  box-shadow: 0 0 30px rgba(139,0,0,0.5);
}

/* ── Product card Add to Cart ── */
.product-card-add {
  width: 100%; padding: 14px;
  background: #8B0000; border: none; color: #fff;
  font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 4px;
  text-transform: uppercase; cursor: pointer;
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.product-card-add:hover { background: #aa0000; }

/* ── View All button ── */
.section-view-all .btn-war { padding: 14px 40px; }

/* ── Cart checkout button ── */
.cart-checkout-btn {
  position: relative; overflow: hidden;
}
.cart-checkout-btn::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(180,0,0,0.4); z-index: 1;
  transform: translateX(-100%);
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-checkout-btn:hover::before { transform: translateX(0%); }

/* ── Login submit ── */

/* ── ONLY: Final CTA title — Gothic blackletter ── */
@import url('https://fonts.googleapis.com/css2?family=UnifrakturMaguntia&family=Cinzel+Decorative:wght@700;900&display=swap');
@font-face {
  font-family: 'Chomsky';
  src: url('https://cdn.jsdelivr.net/gh/ctrlcctrlv/chomsky@master/dist/Chomsky.woff2') format('woff2'),
       url('https://cdn.jsdelivr.net/gh/ctrlcctrlv/chomsky@master/dist/Chomsky.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.final-cta-title--blackletter {
  font-family: 'Chomsky', 'UnifrakturMaguntia', cursive !important;
  font-size: clamp(28px, 4.5vw, 58px) !important;
  letter-spacing: 3px !important;
  font-weight: 400 !important;
  text-transform: none !important;
  -webkit-font-smoothing: antialiased;
}

/* ═══ SITE-WIDE TITLE FONT: Chomsky ═══ */
.hero-brand,
.section-title,
.final-cta-title,
.final-cta-title--blackletter,
.butterfly-title,
.about-hero-title,
.adb-title,
.dash-title,
.dash-lb-title,
.about-final-title,
.pillars-title,
.manifesto-title {
  font-family: 'Chomsky', 'UnifrakturMaguntia', serif !important;
  font-weight: 400 !important;
}

/* ═══════════════════════════════════════════════════
   PRODUCT PAGE — LUXURY MUSEUM FRAME + REFINED UI
═══════════════════════════════════════════════════ */

.product-page { min-height: 100vh; padding: 60px 0 100px; }
.product-page-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}

/* ── LUXURY FRAME ── */
.product-frame-outer { position: relative; }

.product-frame-chrome {
  padding: 18px;
  background: linear-gradient(135deg,
    #e8e0d0 0%,
    #c8bea8 8%,
    #f4f0e8 20%,
    #a89880 35%,
    #ede8de 50%,
    #b0a090 65%,
    #f0ece4 80%,
    #c4b8a4 92%,
    #e0d8c8 100%
  );
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.12),
    0 4px 32px rgba(0,0,0,0.8),
    inset 0 1px 2px rgba(255,255,255,0.5),
    inset 0 -1px 2px rgba(0,0,0,0.3);
  position: relative;
}

/* Decorative inner lip */
.product-frame-inner {
  padding: 10px;
  background: linear-gradient(135deg,
    #1a1410 0%,
    #2a2018 30%,
    #1e1810 60%,
    #221c14 100%
  );
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.9), inset 0 0 20px rgba(0,0,0,0.5);
  position: relative;
}

/* Frame corner ornaments */
.product-frame-corner {
  position: absolute; width: 28px; height: 28px; z-index: 2;
  background:
    radial-gradient(circle at 50% 50%, #f4ead0 0%, #c8a860 40%, #8a6830 100%);
  box-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.product-frame-corner::before, .product-frame-corner::after {
  content: '';
  position: absolute; background: rgba(255,220,150,0.6);
}
.product-frame-corner::before { top: 50%; left: 0; right: 0; height: 1px; transform: translateY(-50%); }
.product-frame-corner::after  { left: 50%; top: 0; bottom: 0; width: 1px; transform: translateX(-50%); }

.product-frame-corner.tl { top: -4px; left: -4px; clip-path: polygon(0 0, 100% 0, 0 100%); }
.product-frame-corner.tr { top: -4px; right: -4px; clip-path: polygon(0 0, 100% 0, 100% 100%); }
.product-frame-corner.bl { bottom: -4px; left: -4px; clip-path: polygon(0 0, 0 100%, 100% 100%); }
.product-frame-corner.br { bottom: -4px; right: -4px; clip-path: polygon(100% 0, 100% 100%, 0 100%); }

/* Main image */
.product-main-image img {
  width: 100%; display: block; aspect-ratio: 4/5; object-fit: cover;
  transition: transform 0.6s ease;
}
.product-frame-chrome:hover .product-main-image img { transform: scale(1.02); }

/* Museum label plate */
.product-frame-plate {
  background: linear-gradient(135deg, #1c1810, #2a2218, #1e1a10);
  border: 1px solid rgba(200,180,120,0.25);
  border-top: none;
  padding: 12px 20px;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.6);
}
.frame-plate-brand {
  font-family: 'Cinzel', serif; font-size: 7px; letter-spacing: 6px;
  color: rgba(200,170,100,0.5); text-transform: uppercase;
}
.frame-plate-title {
  font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 4px;
  color: rgba(220,200,150,0.8); text-transform: uppercase;
}

/* ── THUMBNAILS ── */
.product-thumbs {
  display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap;
}
.product-thumb-frame {
  border: 1px solid rgba(200,180,120,0.15);
  padding: 4px;
  background: linear-gradient(135deg, #c8bea8, #f4f0e8, #a89880, #ede8de);
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.product-thumb-frame:hover { border-color: rgba(200,180,120,0.5); }
.product-thumb { width: 72px; height: 90px; object-fit: cover; display: block; }
.product-thumb.active { opacity: 1; }
.product-thumb:not(.active) { opacity: 0.6; }

/* ── INFO PANEL ── */
.product-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 6px;
  color: rgba(139,0,0,0.7); text-transform: uppercase; margin-bottom: 20px;
}
.eyebrow-line { flex: 1; height: 1px; background: linear-gradient(to right, transparent, rgba(139,0,0,0.3)); }
.eyebrow-line:last-child { background: linear-gradient(to left, transparent, rgba(139,0,0,0.3)); }

.product-title {
  font-family: 'UnifrakturMaguntia', serif !important;
  font-size: clamp(32px,5vw,64px) !important;
  font-weight: 400 !important;
  letter-spacing: 2px; color: #fff;
  margin-bottom: 24px; line-height: 1.15;
}

.product-price-block {
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 36px; padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.product-price-main {
  font-family: 'Cinzel', serif; font-size: 28px; letter-spacing: 2px;
  color: #8B0000;
}
.product-price-compare {
  font-family: 'Cinzel', serif; font-size: 16px;
  color: rgba(255,255,255,0.25); text-decoration: line-through;
}
.product-soldout-badge {
  font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 4px;
  color: rgba(255,255,255,0.3); text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.15); padding: 4px 12px;
}

/* ── OPTION BUTTONS ── */
.product-option-group { margin-bottom: 28px; }
.product-option-label {
  font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 5px;
  color: rgba(255,255,255,0.4); text-transform: uppercase; display: block; margin-bottom: 12px;
}
.product-option-values { display: flex; flex-wrap: wrap; gap: 10px; }

.product-option-btn {
  min-width: 52px; height: 44px; padding: 0 18px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  cursor: pointer; transition: all 0.25s; position: relative; overflow: hidden;
}
.product-option-btn:hover:not(.soldout):not(:disabled) {
  border-color: rgba(139,0,0,0.6); color: #fff;
  background: rgba(139,0,0,0.08);
}
.product-option-btn.active {
  border-color: #8B0000; background: rgba(139,0,0,0.2); color: #fff;
  box-shadow: 0 0 12px rgba(139,0,0,0.25);
}

/* SOLD OUT option */
.product-option-btn.soldout {
  border-color: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.2);
  cursor: not-allowed;
  position: relative;
}
/* Diagonal strikethrough line */
.product-option-btn.soldout::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 140%; height: 1px;
  background: rgba(255,255,255,0.15);
  transform: translate(-50%, -50%) rotate(-20deg);
  pointer-events: none;
}
.soldout-x {
  font-size: 9px; color: rgba(139,0,0,0.5);
  margin-left: 4px; vertical-align: middle;
}

/* ── QTY ── */
.product-qty-block {
  display: flex; align-items: center; gap: 0;
  margin-bottom: 24px; width: fit-content;
  border: 1px solid rgba(255,255,255,0.12);
}
.product-qty-btn {
  width: 44px; height: 44px; background: transparent;
  border: none; color: rgba(255,255,255,0.5);
  font-size: 18px; cursor: pointer; transition: all 0.2s;
  font-family: 'Cinzel', serif;
}
.product-qty-btn:hover { background: rgba(139,0,0,0.15); color: #fff; }
.product-qty-input {
  width: 52px; height: 44px; background: transparent;
  border: none; border-left: 1px solid rgba(255,255,255,0.08); border-right: 1px solid rgba(255,255,255,0.08);
  color: #fff; text-align: center; font-family: 'Cinzel', serif; font-size: 14px; letter-spacing: 2px;
}
.product-qty-input::-webkit-inner-spin-button { display: none; }

/* ── ADD TO CART ── */
.product-atc-btn {
  width: 100%; padding: 18px;
  background: transparent;
  border: 1px solid #8B0000;
  color: #fff; cursor: pointer; margin-bottom: 36px;
  position: relative; overflow: hidden;
  transition: box-shadow 0.4s, color 0.4s;
}
.product-atc-btn::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  background: #8B0000;
  transform: translateX(-101%);
  transition: transform 0.42s cubic-bezier(0.4,0,0.2,1);
  z-index: 1;
}
.product-atc-btn:hover::before { transform: translateX(0); }
.product-atc-btn:hover { box-shadow: 0 0 24px rgba(139,0,0,0.4); }
.atc-btn-inner {
  position: relative; z-index: 2;
  font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 6px; text-transform: uppercase;
}
.product-atc-sold {
  border-color: rgba(255,255,255,0.1) !important;
  opacity: 0.4; cursor: not-allowed;
}
.product-atc-sold::before { display: none; }

/* ── DESCRIPTION ── */
.product-desc-block {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 28px;
}
.product-desc-toggle {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; cursor: pointer;
  font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 5px;
  color: rgba(255,255,255,0.4); text-transform: uppercase;
  transition: color 0.2s;
}
.product-desc-toggle:hover { color: rgba(255,255,255,0.7); }
.desc-toggle-icon { font-size: 18px; color: rgba(139,0,0,0.6); }
.product-desc-body {
  font-family: 'Cormorant Garamond', serif; font-size: 16px;
  line-height: 1.8; color: rgba(255,255,255,0.55);
  max-height: none; overflow: visible;
  padding-bottom: 20px;
}
.product-desc-body.open { max-height: none; }

/* ── WAR NOTE ── */
.product-war-note {
  border-top: 1px solid rgba(139,0,0,0.1);
  padding-top: 20px;
  display: flex; align-items: center; gap: 12px;
  font-family: 'Cormorant Garamond', serif; font-size: 15px;
  font-style: italic; color: rgba(255,255,255,0.2);
}
.war-note-cross { color: rgba(139,0,0,0.4); font-size: 14px; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .product-page-grid { grid-template-columns: 1fr; gap: 40px; padding: 0 20px; }
  .product-frame-chrome { padding: 12px; }
  .product-frame-inner { padding: 6px; }
  .product-title { font-size: clamp(28px, 8vw, 48px) !important; }
}
/* ═══════════════════════════════════════════════
   PRODUCT PAGE — LUXURY
═══════════════════════════════════════════════ */
.product-page { padding: 60px 0 100px; }
.product-page-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}

/* ── FRAME SYSTEM ──
   .pf-wrap     = relative container
   .pf-img      = product image, fills .pf-wrap
   .pf-frame    = PNG overlay on top, transparent center shows .pf-img
*/
.pf-wrap {
  position: relative;
  width: 100%;
  /* height driven by the frame PNG aspect ratio 900x1125 = 0.8 */
}

/* Frame PNG: display:block makes .pf-wrap take its height */
.pf-frame {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  pointer-events: none;
}

/* Product image: absolute, fills the transparent hole in the frame */
/* Hole measured pixel-by-pixel: left 18.8%, right 19.5%, top 18.8%, bottom 19.5% */
.pf-img {
  position: absolute;
  top: 18.8%;
  left: 18.8%;
  right: 19.5%;
  bottom: 19.5%;
  z-index: 1;
  overflow: hidden;
}
.pf-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.pf-wrap:hover .pf-img img { transform: scale(1.03); }

/* Thumbnails */
.product-thumbs { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.pf-thumb-wrap {
  border: 1px solid rgba(255,255,255,0.1);
  padding: 3px; cursor: pointer; opacity: 0.55;
  transition: opacity 0.2s, border-color 0.2s;
}
.pf-thumb-wrap.active,
.pf-thumb-wrap:hover { opacity: 1; border-color: rgba(139,0,0,0.6); }
.pf-thumb-wrap img { width: 64px; height: 80px; object-fit: cover; display: block; }

/* ── INFO PANEL ── */
.product-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 6px;
  color: rgba(139,0,0,0.7); text-transform: uppercase; margin-bottom: 18px;
}
.eyebrow-line {
  flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, rgba(139,0,0,0.3));
}
.eyebrow-line:last-child {
  background: linear-gradient(to left, transparent, rgba(139,0,0,0.3));
}
.product-title {
  font-family: 'UnifrakturMaguntia', serif !important;
  font-size: clamp(32px,5vw,68px) !important;
  font-weight: 400 !important;
  letter-spacing: 2px; color: #fff;
  margin-bottom: 22px; line-height: 1.1;
}
.product-price-block {
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 32px; padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.product-price-main {
  font-family: 'Cinzel', serif; font-size: 26px;
  letter-spacing: 2px; color: #8B0000;
}
.product-price-compare {
  font-family: 'Cinzel', serif; font-size: 15px;
  color: rgba(255,255,255,0.25); text-decoration: line-through;
}
.product-soldout-badge {
  font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 4px;
  color: rgba(255,255,255,0.3); text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.1); padding: 4px 12px;
}

/* ── OPTION BUTTONS ── */
.product-option-group { margin-bottom: 26px; }
.product-option-label {
  font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 5px;
  color: rgba(255,255,255,0.4); text-transform: uppercase;
  display: block; margin-bottom: 12px;
}
.product-option-values { display: flex; flex-wrap: wrap; gap: 8px; }
.product-option-btn {
  min-width: 50px; height: 42px; padding: 0 16px;
  background: transparent; border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.75);
  font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; cursor: pointer; transition: all 0.25s;
  position: relative;
}
.product-option-btn:hover:not(.soldout) {
  border-color: rgba(139,0,0,0.6); color: #fff; background: rgba(139,0,0,0.08);
}
.product-option-btn.active {
  border-color: #8B0000; background: rgba(139,0,0,0.2); color: #fff;
}
.product-option-btn.soldout {
  border-color: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.2); cursor: not-allowed;
}
.product-option-btn.soldout::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 130%; height: 1px;
  background: rgba(255,255,255,0.12);
  transform: translate(-50%,-50%) rotate(-18deg);
}
.soldout-x { font-size: 9px; color: rgba(139,0,0,0.45); margin-left: 4px; }

/* ── QTY ── */
.product-qty-block {
  display: flex; align-items: center;
  margin-bottom: 22px; width: fit-content;
  border: 1px solid rgba(255,255,255,0.12);
}
.product-qty-btn {
  width: 42px; height: 42px; background: transparent;
  border: none; color: rgba(255,255,255,0.5);
  font-size: 18px; cursor: pointer; transition: all 0.2s;
}
.product-qty-btn:hover { background: rgba(139,0,0,0.15); color: #fff; }
.product-qty-input {
  width: 48px; height: 42px; background: transparent;
  border: none; border-left: 1px solid rgba(255,255,255,0.08);
  border-right: 1px solid rgba(255,255,255,0.08);
  color: #fff; text-align: center;
  font-family: 'Cinzel', serif; font-size: 13px; letter-spacing: 2px;
}
.product-qty-input::-webkit-inner-spin-button { display: none; }

/* ── ADD TO CART ── */
.product-atc-btn {
  width: 100%; padding: 17px;
  background: transparent; border: 1px solid #8B0000;
  color: #fff; cursor: pointer; margin-bottom: 32px;
  position: relative; overflow: hidden;
  transition: box-shadow 0.4s;
}
.product-atc-btn::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; background: #8B0000;
  transform: translateX(-101%);
  transition: transform 0.42s cubic-bezier(0.4,0,0.2,1); z-index: 1;
}
.product-atc-btn:hover::before { transform: translateX(0); }
.product-atc-btn:hover { box-shadow: 0 0 24px rgba(139,0,0,0.4); }
.atc-btn-inner {
  position: relative; z-index: 2;
  font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 6px; text-transform: uppercase;
}
.product-atc-sold { border-color: rgba(255,255,255,0.1) !important; opacity: 0.35; cursor: not-allowed; }
.product-atc-sold::before { display: none; }

/* ── DESCRIPTION ── */
.product-desc-block { border-top: 1px solid rgba(255,255,255,0.06); margin-bottom: 24px; }
.product-desc-toggle {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; cursor: pointer;
  font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 5px;
  color: rgba(255,255,255,0.35); text-transform: uppercase; transition: color 0.2s;
}
.product-desc-toggle:hover { color: rgba(255,255,255,0.65); }
.desc-toggle-icon { font-size: 18px; color: rgba(139,0,0,0.6); }
.product-desc-body {
  font-family: 'Cormorant Garamond', serif; font-size: 16px;
  line-height: 1.8; color: rgba(255,255,255,0.5);
  max-height: none; overflow: visible; padding-bottom: 20px;
}
.product-desc-body.open { max-height: none; }

/* ── WAR NOTE ── */
.product-war-note {
  border-top: 1px solid rgba(139,0,0,0.1); padding-top: 18px;
  display: flex; align-items: center; gap: 10px;
  font-family: 'Cormorant Garamond', serif; font-size: 15px;
  font-style: italic; color: rgba(255,255,255,0.18);
}
.war-note-cross { color: rgba(139,0,0,0.35); }

@media (max-width: 900px) {
  .product-page-grid { grid-template-columns: 1fr; gap: 40px; padding: 0 20px; }
  .product-title { font-size: clamp(28px,8vw,48px) !important; }
}

/* ═══════════════════════════════════════
   CONCRETE WALL BACKGROUND
   — product page + collection page
═══════════════════════════════════════ */

/* Product page */
.product-page {
  background: url('bg-concrete.jpg') center center / cover no-repeat fixed !important;
  position: relative;
}
/* Dark overlay so text remains readable */
.product-page::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 0;
  pointer-events: none;
}
.product-page-grid { position: relative; z-index: 1; }

/* Collection / Shop All page */
.collection-page {
  background-image: url('bg-concrete.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
  background-attachment: fixed !important;
  background-repeat: no-repeat !important;
  position: relative;
}
.collection-page::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 0;
  pointer-events: none;
}
.collection-page > * { position: relative; z-index: 1; }

/* ═══════════════════════════════════════
   PRODUCT CARD — BAROQUE FRAME (home carousel)
═══════════════════════════════════════ */
.product-card {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
.product-card-img-link {
  display: block;
  text-decoration: none;
}

/* Frame container — height driven by frame PNG (ratio 900:1125 = 4:5) */
.pc-frame-wrap {
  position: relative;
  width: 100%;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.8));
  transition: filter 0.35s ease;
}
.pc-frame-wrap:hover {
  filter: drop-shadow(0 18px 48px rgba(0,0,0,0.9));
}

/* Frame PNG on top — defines the height of the container */
.pc-frame {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  pointer-events: none;
}

/* Product image: absolute behind frame, aligned to opening */
/* Opening measured: 18.8% left/top, 19.5% right/bottom */
.pc-img {
  position: absolute;
  top: 18.8%;
  left: 18.8%;
  right: 19.5%;
  bottom: 19.5%;
  z-index: 1;
  overflow: hidden;
  background: #fff;
}
.pc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.pc-img .product-img-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.product-card:hover .pc-img .product-img-main { opacity: 0; }
.product-card:hover .pc-img .product-img-hover { opacity: 1; }
.product-card:hover .pc-img img { transform: scale(1.03); }

/* Hide the old info block completely */
.product-card-info { display: none !important; }

/* Carousel slides — remove padding that was there for info */
.products-carousel-slide {
  padding-bottom: 0 !important;
}

/* ═══ HERO VIDEO — MOBILE SWAP ═══ */
/* Desktop: show desktop, hide mobile */
.hero-video-mobile { display: none; }
.hero-video-desktop { display: block; }

@media (max-width: 768px) {
  /* Mobile: hide desktop, show mobile */
  .hero-video-desktop { display: none !important; }
  .hero-video-mobile  { display: block !important; }
}

/* ═══ MOBILE HEADER FIX — logo perfectly centered ═══ */
@media (max-width: 768px) {
  #site-header {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 18px !important;
    height: 56px !important;
    position: fixed !important;
    top: 32px !important;
    left: 0 !important;
    right: 0 !important;
  }

  /* Hamburger: left */
  .mobile-menu-btn {
    position: relative !important;
    z-index: 2;
    flex-shrink: 0;
  }

  /* Logo: absolute center of the header */
  .header-logo-link {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 1;
  }

  /* Right icons: user + cart */
  .nav-right {
    position: relative !important;
    z-index: 2;
    flex-shrink: 0;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
  }
}

/* ── Checkout button: works on both <a> and <button> ── */
button.cart-checkout-btn {
  width: 100%;
  cursor: pointer;
  -webkit-appearance: none;
  border: none;
}

/* ── Instagram link — pulsing red text only ── */
.btn-instagram {
  display: inline-flex; align-items: center; gap: 7px;
  text-decoration: none;
  background: transparent;
  border: none;
  padding: 0;
}
.btn-ig-icon { display: none; }
.btn-instagram span {
  font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 5px;
  text-transform: uppercase;
  color: #8B0000;
  animation: igPulse 2.8s ease-in-out infinite;
}
@keyframes igPulse {
  0%,100% { color: #8B0000; text-shadow: none; opacity: 0.5; }
  50%      { color: #cc0000; text-shadow: 0 0 12px rgba(200,0,0,0.6); opacity: 1; }
}
.btn-instagram:hover span {
  color: #cc0000;
  animation: none;
  opacity: 1;
}

/* Mobile */
@media (max-width: 768px) {
  .btn-instagram span { font-size: 9px !important; letter-spacing: 4px !important; }
}

/* ── Cart war divider ── */
.cart-war-divider {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.cwd-line {
  flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, rgba(139,0,0,0.35), transparent);
}
.cwd-cross {
  font-size: 13px;
  background: linear-gradient(180deg, rgba(180,176,170,0.6), rgba(120,116,110,0.4));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 4px rgba(139,0,0,0.3));
}

/* ── CURSOR POINTER GLOBAL ── */
a,
button,
[onclick],
.btn-solid,
.btn-outline,
.cart-trigger,
.user-btn,
.mobile-menu-btn,
.mobile-menu-close,
.ac-pillar,
.ac-sign-btn,
.adg-btn,
.ade-card,
.product-card,
.product-option-btn,
.product-thumb,
.pf-thumb-wrap,
.cart-item-remove,
.cart-checkout-btn,
.shop-pagination a,
input[type="submit"],
select,
.ac-final-btn,
label[for],
.nav-link,
.mobile-nav a,
.footer-nav a,
.adg-back,
.mobile-nav-antidemon {
  cursor: pointer !important;
}

/* ── PRODUCT BRANDING TEXT ── */
.pdesc-branding {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(139,0,0,0.2);
}
.pdesc-brand-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  font-style: italic;
  margin-bottom: 8px;
}
.pdesc-brand-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}
.pdesc-brand-cmd {
  font-family: 'Chomsky', serif;
  font-size: clamp(18px, 2.2vw, 28px);
  color: #fff;
  letter-spacing: 2px;
  margin: 10px 0 6px;
  text-shadow: 0 0 30px rgba(139,0,0,0.4);
}
.pdesc-brand-title {
  font-family: 'Chomsky', serif;
  font-size: clamp(16px, 2vw, 24px);
  color: #8B0000;
  letter-spacing: 3px;
  margin: 8px 0 4px;
  text-shadow: 0 0 20px rgba(139,0,0,0.5);
}
.pdesc-brand-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, #8B0000, transparent);
  margin-top: 16px;
}
@media(max-width:768px){
  .pdesc-brand-intro { font-size: 15px; }
  .pdesc-brand-body { font-size: 14px; }
  .pdesc-brand-cmd { font-size: 20px; }
  .pdesc-brand-title { font-size: 18px; }
}

/* ── PRODUCT BRANDING: headline cleaner ── */
.pdesc-brand-headline {
  font-family: 'Cinzel', serif;
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  margin-bottom: 8px;
}

/* ── TRUST BADGES — moved to bottom of product ── */
.product-trust-bottom {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(139,0,0,0.15);
}
.product-trust-bottom .trust-badges-wrap,
.product-trust-bottom .trust-badges {
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 16px 28px;
}
