/* Neo4ic web kit — extra layout styles */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--jet); color: var(--fg); font-family: var(--font-body); }

.n4-container { max-width: 1440px; margin: 0 auto; padding: 0 24px; }
.n4-full { width: 100%; }

/* Announcement bar */
.n4-announce {
  background: #000;
  border-bottom: 1px solid var(--line);
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bone);
}

/* Header */
.n4-header { background: #000; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 40; }
.n4-header-inner { height: 72px; display: flex; align-items: center; gap: 32px; }
.n4-logo { display: flex; align-items: center; }
.n4-logo img { height: 22px; }
.n4-nav { display: flex; gap: 28px; }
.n4-nav a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fg);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color var(--dur-1) var(--ease-out), border-color var(--dur-1) var(--ease-out);
}
.n4-nav a:hover { color: var(--tan); border-bottom-color: var(--tan); }
.n4-nav a.is-active { color: var(--fg); border-bottom-color: var(--fg); }
.n4-chrome { margin-left: auto; display: flex; align-items: center; gap: 20px; }
.n4-chrome button { background: none; border: 0; color: var(--fg); cursor: pointer; padding: 6px; display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; }
.n4-chrome button:hover { color: var(--tan); }

/* Hero */
.n4-hero { position: relative; height: 720px; background: #0A0A0A; overflow: hidden; border-bottom: 1px solid var(--line); }
.n4-hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 40%, #1a1a1a 0%, #000 75%); }
.n4-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0, transparent 119px, rgba(255,255,255,0.02) 119px, rgba(255,255,255,0.02) 120px),
    repeating-linear-gradient(0deg, transparent 0, transparent 119px, rgba(255,255,255,0.02) 119px, rgba(255,255,255,0.02) 120px);
}
.n4-hero-content { position: relative; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 48px; }
.n4-hero-eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--tan); margin-bottom: 14px; }
.n4-hero-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(56px, 9vw, 140px); line-height: 0.9; letter-spacing: 0.06em; text-transform: uppercase; margin: 0; }
.n4-hero-sub { font-family: var(--font-body); font-size: 16px; color: var(--bone); max-width: 520px; margin: 18px 0 24px; }
.n4-hero-ctas { display: flex; gap: 10px; }

/* Buttons */
.n4-btn {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 3px;
  border: 1px solid;
  cursor: pointer;
  transition: all var(--dur-1) var(--ease-out);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.n4-btn--primary   { background: #fff; color: #000; border-color: #fff; }
.n4-btn--primary:hover   { background: #000; color: #fff; }
.n4-btn--secondary { background: transparent; color: #fff; border-color: #fff; }
.n4-btn--secondary:hover { background: #fff; color: #000; }
.n4-btn--accent    { background: var(--tan); color: #000; border-color: var(--tan); }
.n4-btn--accent:hover    { background: var(--tan-deep); border-color: var(--tan-deep); color: #000; }
.n4-btn--ghost     { background: transparent; color: #fff; border-color: var(--line-strong); padding: 10px 18px; font-size: 11px; }
.n4-btn--ghost:hover     { border-color: #fff; }
.n4-btn[disabled] { color: var(--fog); border-color: var(--line); background: transparent; cursor: not-allowed; }

/* Section header */
.n4-section { padding: 80px 0 40px; border-bottom: 1px solid var(--line); }
.n4-section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 28px; }
.n4-section-title { font-family: var(--font-display); font-weight: 700; font-size: 44px; letter-spacing: 0.08em; text-transform: uppercase; margin: 0; line-height: 1; }
.n4-section-link { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--fg); text-decoration: none; border-bottom: 1px solid var(--line-strong); padding-bottom: 2px; }
.n4-section-link:hover { color: var(--tan); border-color: var(--tan); }

/* Product grid */
.n4-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 960px) { .n4-row { grid-template-columns: repeat(2, 1fr); } }

/* Product card */
.n4-card { display: block; text-decoration: none; color: inherit; }
.n4-card-image { position: relative; aspect-ratio: 3/4; background: #0A0A0A; overflow: hidden; border: 1px solid var(--line); }
.n4-card-image img { width: 100%; height: 100%; object-fit: cover; transition: opacity var(--dur-3) var(--ease-out); }
.n4-card-image img.n4-hover-img { position: absolute; inset: 0; opacity: 0; }
.n4-card:hover .n4-hover-img { opacity: 1; }
.n4-card-meta { padding: 12px 2px 0; }
.n4-card-name { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg); }
.n4-card-price { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; color: var(--fog); margin-top: 4px; }
.n4-card-price .sale { color: var(--tan); }
.n4-card-price .strike { color: var(--fg-dim); text-decoration: line-through; margin-right: 8px; }

/* Badge */
.n4-badge {
  position: absolute; top: 10px; left: 10px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 4px 8px;
  background: #fff; color: #000;
}
.n4-badge--new     { background: var(--tan); color: #000; }
.n4-badge--sale    { background: #fff; color: #000; }
.n4-badge--uv      { background: #000; color: var(--uv-cyan); border: 1px solid var(--uv-cyan); box-shadow: 0 0 10px rgba(66,245,224,0.4); }
.n4-badge--holo    { background: linear-gradient(110deg,#B8B0FF,#C8F0FF,#E8E6E1); color: #000; }

/* Category tiles */
.n4-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.n4-cat { position: relative; aspect-ratio: 4/5; background: #0A0A0A; overflow: hidden; display: flex; align-items: flex-end; text-decoration: none; color: var(--fg); border-right: 1px solid var(--line); }
.n4-cat:last-child { border-right: 0; }
.n4-cat img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity var(--dur-3) var(--ease-out); }
.n4-cat:hover img { opacity: 0.6; }
.n4-cat-label { position: relative; padding: 24px; font-family: var(--font-display); font-weight: 700; font-size: 40px; letter-spacing: 0.08em; text-transform: uppercase; z-index: 2; }

/* Filter chips */
.n4-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.n4-chip {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: transparent;
  color: var(--fog);
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--dur-1) var(--ease-out);
}
.n4-chip:hover { color: var(--fg); border-color: var(--line-strong); }
.n4-chip.is-active { color: #000; background: #fff; border-color: #fff; }

/* Cart drawer */
.n4-drawer-scrim { position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 90; opacity: 0; pointer-events: none; transition: opacity var(--dur-2) var(--ease-out); }
.n4-drawer-scrim.is-open { opacity: 1; pointer-events: auto; }
.n4-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 440px; max-width: 100vw;
  background: #000; border-left: 1px solid var(--line); z-index: 100;
  transform: translateX(100%); transition: transform var(--dur-2) var(--ease-out);
  display: flex; flex-direction: column;
}
.n4-drawer.is-open { transform: translateX(0); }
.n4-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--line); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; }
.n4-drawer-body { flex: 1; overflow-y: auto; padding: 20px 24px; }
.n4-drawer-foot { border-top: 1px solid var(--line); padding: 20px 24px; }
.n4-drawer-item { display: grid; grid-template-columns: 80px 1fr auto; gap: 14px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line); }
.n4-drawer-item img { width: 80px; height: 100px; object-fit: cover; background: var(--void); border: 1px solid var(--line); }
.n4-drawer-empty { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fog); text-align: center; padding: 40px 0; }
.n4-qty { display: inline-flex; align-items: center; border: 1px solid var(--line); }
.n4-qty button { background: none; border: 0; color: #fff; font-family: var(--font-mono); font-size: 12px; width: 28px; height: 28px; cursor: pointer; }
.n4-qty span { min-width: 24px; text-align: center; font-family: var(--font-mono); font-size: 12px; }

/* Footer */
.n4-footer { background: #000; border-top: 1px solid var(--line); padding: 80px 0 40px; }
.n4-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; }
.n4-footer h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--fog); margin: 0 0 18px; font-weight: 400; }
.n4-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.n4-footer a { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bone); text-decoration: none; }
.n4-footer a:hover { color: var(--tan); }
.n4-footer-logo img { width: 120px; }
.n4-footer-news-input { display: flex; border-bottom: 1px solid var(--fog); }
.n4-footer-news-input input { flex: 1; background: transparent; border: 0; color: var(--fg); padding: 10px 0; font-family: var(--font-body); font-size: 14px; outline: none; }
.n4-footer-news-input button { background: transparent; border: 0; color: var(--fg); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; cursor: pointer; padding: 0 6px; }
.n4-footer-news-input button:hover { color: var(--tan); }
.n4-copyright { margin-top: 60px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--fog); }


/* ============================================================
   NEO4IC — SHOPIFY SECTION STYLES (appended)
   ============================================================ */

/* Announcement */
.n4-announce { background:#000; color:#fff; border-bottom:1px solid var(--line); overflow:hidden; }
.n4-announce__track {
  display:flex; gap:32px; padding:10px 0; white-space:nowrap;
  font-family: var(--font-mono); font-size:11px; letter-spacing:.18em;
  animation: n4-marquee 40s linear infinite;
}
.n4-announce__item { color:#fff; }
.n4-announce__sep { color:var(--stone); }
@keyframes n4-marquee { to { transform: translateX(-50%); } }

/* Hero */
.n4-hero { position:relative; height: var(--hero-h, 640px); overflow:hidden; background:#000; color:#fff; }
.n4-hero__bg { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.n4-hero__bg--placeholder {
  background:
    radial-gradient(1200px 400px at 20% 100%, #1a1a1a 0%, transparent 60%),
    linear-gradient(180deg, #000 0%, #111 60%, #000 100%);
}
.n4-hero__scrim {
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,.6) 100%);
}
.n4-hero__content { position:absolute; inset:0; padding:64px; display:flex; flex-direction:column; justify-content:flex-end; gap:20px; }
.n4-hero__content--center { align-items:center; text-align:center; }
.n4-hero__content--right { align-items:flex-end; text-align:right; }
.n4-hero__eyebrow { font-family:var(--font-mono); font-size:11px; letter-spacing:.2em; color:var(--tan); }
.n4-hero__heading { font-family:var(--font-display); font-size:clamp(48px, 8vw, 120px); line-height:.95; letter-spacing:.04em; margin:0; text-transform:uppercase; }
.n4-hero__sub { font-family:var(--font-body); font-size:16px; max-width:520px; color:var(--fg2); margin:0; }
.n4-hero__corners span {
  position:absolute; width:24px; height:24px; border:1px solid var(--tan);
}
.n4-hero__corners span:nth-child(1) { top:16px; left:16px; border-right:none; border-bottom:none; }
.n4-hero__corners span:nth-child(2) { top:16px; right:16px; border-left:none; border-bottom:none; }
.n4-hero__corners span:nth-child(3) { bottom:16px; left:16px; border-right:none; border-top:none; }
.n4-hero__corners span:nth-child(4) { bottom:16px; right:16px; border-left:none; border-top:none; }
@media (max-width: 640px) {
  .n4-hero__content { padding:28px; }
}

/* Rows / grids */
.n4-row { padding: 56px 32px; background:var(--jet); color:var(--fg); }
.n4-row__head { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:28px; gap:16px; }
.n4-row__eyebrow { font-family:var(--font-mono); font-size:11px; letter-spacing:.2em; color:var(--stone); margin-bottom:8px; }
.n4-row__heading { font-family:var(--font-display); font-size:clamp(28px, 4vw, 48px); letter-spacing:.04em; margin:0; text-transform:uppercase; }
.n4-row__view-all { font-family:var(--font-mono); font-size:11px; letter-spacing:.2em; color:var(--fg); text-decoration:none; border-bottom:1px solid var(--line); padding-bottom:4px; }
.n4-row__view-all:hover { color:var(--tan); border-color:var(--tan); }

.n4-grid { display:grid; gap:24px; }
.n4-grid--3 { grid-template-columns: repeat(3, 1fr); }
.n4-grid--4 { grid-template-columns: repeat(4, 1fr); }
.n4-grid--5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1024px) { .n4-grid--4, .n4-grid--5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .n4-grid { grid-template-columns: repeat(2, 1fr) !important; } }

/* Category tiles */
.n4-tiles { padding: 56px 32px; background:var(--jet); }
.n4-tiles__grid { display:grid; gap:16px; grid-template-columns: repeat(3, 1fr); }
.n4-tiles__grid--2 { grid-template-columns: repeat(2, 1fr); }
.n4-tiles__grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 768px) { .n4-tiles__grid { grid-template-columns: 1fr !important; } }
.n4-tile { position:relative; aspect-ratio: 3/4; overflow:hidden; background:#0b0b0c; color:#fff; text-decoration:none; display:block; }
.n4-tile img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition: transform .6s ease; }
.n4-tile:hover img { transform: scale(1.04); }
.n4-tile__placeholder { position:absolute; inset:0; }
.n4-tile__overlay {
  position:absolute; inset:0; padding:24px; display:flex; flex-direction:column; justify-content:flex-end;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.8) 100%);
}
.n4-tile__eyebrow { font-family:var(--font-mono); font-size:10px; letter-spacing:.2em; color:var(--tan); margin-bottom:6px; }
.n4-tile__title { font-family:var(--font-display); font-size:24px; letter-spacing:.06em; text-transform:uppercase; }
.n4-tile__arrow { position:absolute; top:20px; right:20px; font-size:20px; color:var(--tan); }

/* Footer */
.n4-footer { background:#000; color:var(--fg); border-top:1px solid var(--line); padding: 56px 32px 24px; }
.n4-footer__top { display:grid; grid-template-columns: 1fr 2fr; gap:48px; margin-bottom:48px; }
.n4-footer__logo { height:28px; margin-bottom:16px; }
.n4-footer__tagline { font-family:var(--font-body); font-size:14px; color:var(--fg2); max-width:280px; }
.n4-footer__cols { display:grid; grid-template-columns: repeat(4, 1fr); gap:32px; }
.n4-footer__col--wide { grid-column: span 2; }
.n4-footer__heading { font-family:var(--font-mono); font-size:11px; letter-spacing:.2em; color:var(--tan); margin-bottom:16px; }
.n4-footer__list { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px; }
.n4-footer__list a { font-family:var(--font-body); font-size:13px; color:var(--fg); text-decoration:none; letter-spacing:.08em; }
.n4-footer__list a:hover { color:var(--tan); }
.n4-footer__text { font-family:var(--font-body); font-size:13px; color:var(--fg2); line-height:1.6; }
.n4-newsletter { display:flex; gap:0; border:1px solid var(--line); }
.n4-newsletter__input { flex:1; background:transparent; border:0; color:var(--fg); padding:12px 14px; font-family:var(--font-mono); font-size:11px; letter-spacing:.2em; outline:none; }
.n4-newsletter__input::placeholder { color:var(--stone); }
.n4-newsletter__btn { background:var(--tan); color:#000; border:0; padding:12px 16px; font-family:var(--font-mono); font-size:11px; letter-spacing:.2em; cursor:pointer; }
.n4-newsletter__btn:hover { background:#fff; }
.n4-footer__bottom { display:flex; justify-content:space-between; padding-top:24px; border-top:1px solid var(--line); font-family:var(--font-mono); font-size:10px; letter-spacing:.2em; color:var(--stone); }
@media (max-width: 768px) {
  .n4-footer__top, .n4-footer__cols { grid-template-columns: 1fr; }
  .n4-footer__col--wide { grid-column: span 1; }
  .n4-footer__bottom { flex-direction:column; gap:8px; }
}

/* Product card badges (extended) */
.n4-badges { position:absolute; top:10px; left:10px; display:flex; gap:6px; flex-wrap:wrap; }
.n4-badge {
  font-family:var(--font-mono); font-size:10px; letter-spacing:.2em;
  padding:4px 8px; background:#000; color:#fff; border:1px solid var(--line);
}
.n4-badge--sale { background:var(--tan); color:#000; border-color:var(--tan); }
.n4-badge--holo {
  background: linear-gradient(135deg, #b6c3ff 0%, #e8e6f0 50%, #d8c9b5 100%);
  color:#000; border:0;
}
.n4-badge--uv { background:#42F5E0; color:#000; border-color:#42F5E0; }
.n4-badge--reflective { background:var(--stone); color:#000; border-color:var(--stone); }
.n4-badge--new { background:#000; color:var(--tan); border-color:var(--tan); }
.n4-card-vendor { font-family:var(--font-mono); font-size:10px; letter-spacing:.2em; color:var(--stone); margin-bottom:4px; }
.n4-card-sold-out { font-family:var(--font-mono); font-size:10px; letter-spacing:.2em; color:var(--stone); margin-top:4px; }
.n4-price-from { font-family:var(--font-mono); letter-spacing:.12em; }
