* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #0a0a0a; color: #f0ede8; font-family: 'Barlow', sans-serif; min-height: 100vh; }

.hero {
  position: relative;
  text-align: center;
  padding: 40px 24px 48px;
  background: #0a0a0a;
  border-bottom: 1px solid #1e1e1e;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse at 50% 30%, rgba(192,57,43,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.brand-logo-wrap {
  width: 180px;
  height: 180px;
  margin: 0 auto 24px;
  border-radius: 50%;
  border: 2px solid #c0392b;
  box-shadow: 0 0 20px rgba(192,57,43,.3);
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 3;
}

.brand-logo-wrap img {
  width: 135%;
  height: 135%;
  object-fit: contain;
  object-position: center;
}

.brand-svg-wrap {
  position: relative;
  z-index: 3;
  margin: 0 auto 4px;
  width: 100%;
  max-width: 560px;
}
.brand-svg-wrap svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.brand-line { position: relative; z-index: 3; display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 24px; }
.brand-dash { width: 16px; height: 2px; background: #c0392b; opacity: 0.5; }
.brand-sub { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: 5px; }

.hero-desc { position: relative; z-index: 3; max-width: 480px; margin: 0 auto 36px; font-size: 15px; line-height: 1.6; color: #777; font-weight: 400; }
.hero-desc strong { color: #f0ede8; font-weight: 600; }
.hero-desc em { color: #c0392b; font-style: normal; font-weight: 500; }

.divider { display: flex; align-items: center; justify-content: center; gap: 20px; max-width: 1200px; margin: 48px auto 32px; padding: 0 24px; }
.divider-line { flex: 1; height: 1px; background: #1e1e1e; }
.divider-label { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; color: #444; text-transform: uppercase; letter-spacing: 3px; }

.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 32px; max-width: 1200px; margin: 0 auto; padding: 0 24px 64px; }

.card {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 0px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: #d4af37;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
}
.card.hide { display: none !important; }

.card-img { position: relative; width: 100%; aspect-ratio: 1; background: #181818; overflow: hidden; cursor: pointer; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-img img { transform: scale(1.03); }

.card-slot-label { position: absolute; top: 12px; left: 12px; background: #c0392b; color: #fff; font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; padding: 3px 8px; text-transform: uppercase; letter-spacing: 1px; z-index: 2; }
.card-stock-badge { position: absolute; top: 12px; right: 12px; background: rgba(0,0,0,0.75); border: 1px solid rgba(255,255,255,0.1); color: #00ff66; font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 700; padding: 3px 8px; text-transform: uppercase; letter-spacing: 1px; z-index: 2; border-radius: 2px; }

.card-body {
  padding: 20px 20px 0px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-name { font-family: 'Russo One', sans-serif; font-size: 17px; letter-spacing: 0.5px; color: #f0ede8; margin-bottom: 4px; text-transform: uppercase; }
.card-style { font-size: 12px; color: #444; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.card-price { font-family: 'Russo One', sans-serif; font-size: 20px; color: #c0392b; margin-bottom: 20px; margin-top: auto; letter-spacing: 0.5px; }

.btn-wa-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: calc(100% + 40px);
  margin-left: -20px;
  background: #25D366;
  color: #0a0a0a;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  padding: 16px;
  border-radius: 0px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: background .2s, color .2s;
}
.btn-wa-full:hover { background: #20ba5a; color: #000; }
.btn-wa-full svg { width: 16px; height: 16px; fill: currentColor; transition: transform .2s; }

.footer { border-top:1px solid #1a1a1a; padding:32px 24px; text-align:center; background:#0a0a0a; }
.footer-ig { display:inline-flex; align-items:center; gap:14px; background:#111; border:1px solid #222; border-radius:50px; padding:14px 30px; text-decoration:none; color:#f0ede8; font-size:18px; font-weight:700; letter-spacing:1px; transition:border-color .2s, transform .2s; margin-bottom:12px; }
.footer-ig:hover { border-color:#c0392b; transform:scale(1.03); }
.ig-icon { width:32px; height:32px; background:linear-gradient(135deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); border-radius:9px; display:flex; align-items:center; justify-content:center; }
.ig-icon svg { width:20px; height:20px; fill:#fff; }
.footer-copy { font-size:12px; color:#2a2a2a; letter-spacing:2px; margin-top:8px; text-transform:uppercase; }

.filter-container { display: flex; justify-content: center; gap: 10px; margin-top: 5px; flex-wrap: wrap; }
.filter-btn { background: #111; border: 1px solid #1e1e1e; color: #888; font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; padding: 10px 20px; text-transform: uppercase; letter-spacing: 2px; cursor: pointer; transition: all 0.2s ease; }
.filter-btn:hover { border-color: #333; color: #fff; }
.filter-btn.active { background: #c0392b; border-color: #c0392b; color: #fff; }

.modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(5, 5, 5, 0.96);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  position: relative;
  width: 90%;
  max-width: 480px;
  background: #111;
  border: 1px solid #1e1e1e;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-viewer {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background: #161616;
  display: flex;
  align-items: center; justify-content: center;
}

.modal-viewer img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(10, 10, 10, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f0ede8;
  font-size: 22px;
  width: 38px; height: 38px;
  display: flex;
  align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: #c0392b;
  border-color: #c0392b;
  color: #fff;
  transform: rotate(90deg);
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #f0ede8;
  font-size: 18px;
  width: 42px; height: 42px;
  display: flex;
  align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
  user-select: none;
}

.modal-nav:hover {
  background: rgba(192, 57, 43, 0.15);
  border-color: #c0392b;
  color: #c0392b;
}

.modal-nav.prev { left: 12px; }
.modal-nav.next { right: 12px; }

.modal-details {
  padding: 20px;
  background: #111;
  border-top: 1px solid #1e1e1e;
}

.modal-title {
  font-family: 'Russo One', sans-serif;
  font-size: 18px;
  letter-spacing: 0.5px;
  color: #f0ede8;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.modal-price {
  font-family: 'Russo One', sans-serif;
  font-size: 22px;
  color: #c0392b;
}