/*
Theme Name: Oh Poop Co
Theme URI: https://ohpoopco.com
Author: Oh Poop Co
Author URI: https://ohpoopco.com
Description: Official theme for Oh Poop Co and the Oh Shit dark side. WooCommerce ready. Born in Chicago.
Version: 5.0.0
Requires at least: 5.8
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ohpoopco
Tags: e-commerce, woocommerce, one-page, custom-background
WC requires at least: 7.0
WC tested up to: 8.5
*/

/* ═══════════════════════════════════════════════
   OH POOP CO — COMPLETE THEME STYLES
   ═══════════════════════════════════════════════ */

:root {
  --black:      #111010;
  --off-black:  #1C1B1A;
  --charcoal:   #2E2C2A;
  --mid:        #5C5852;
  --light-mid:  #9C9790;
  --cream:      #F5F2EE;
  --off-white:  #EAE6E0;
  --white:      #FFFFFF;
  --red:        #C8382A;
  --red-hover:  #A82D21;
  --red-light:  #FAECE7;
  --border-d:   rgba(255,255,255,0.10);
  --border-l:   rgba(46,44,42,0.12);
  --font-d:     'Bebas Neue', sans-serif;
  --font-b:     'DM Sans', sans-serif;
  --ease:       cubic-bezier(0.22,1,0.36,1);
  --r:          3px;
}

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

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-b);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font-family: var(--font-b); cursor: pointer; }

/* ── ANNOUNCE BAR ── */
.bar {
  background: var(--red);
  text-align: center;
  padding: 9px 1rem;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--white);
}
.bar a { text-decoration: underline; opacity: .85; color: var(--white); }

/* ── NAV ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 300;
  background: var(--off-black);
  border-bottom: 1px solid var(--border-d);
  height: 62px;
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  gap: 1.5rem;
}
.nav-logo {
  font-family: var(--font-d);
  font-size: 28px;
  letter-spacing: 2px;
  line-height: 1;
  flex-shrink: 0;
  color: var(--white);
  text-decoration: none;
}
.nav-logo span { color: var(--red); }

.nav-links {
  display: none;
  flex: 1;
  list-style: none;
  gap: 0;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.nav-links li { position: relative; }
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 0 14px;
  height: 62px;
  transition: color .2s;
  font-weight: 500;
  text-decoration: none;
}
.nav-links > li > a:hover,
.nav-links > li:hover > a { color: var(--white); }

.dropdown {
  display: none;
  position: absolute;
  top: 62px;
  left: 0;
  background: var(--off-black);
  border: 1px solid var(--border-d);
  border-top: none;
  min-width: 200px;
  z-index: 400;
}
.nav-links li:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid var(--border-d);
  transition: all .15s;
  text-decoration: none;
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { color: var(--white); background: rgba(255,255,255,.04); padding-left: 24px; }
.dropdown a.red { color: var(--red); }
.dropdown a.red:hover { color: var(--white); background: var(--red); }

.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-cart {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 8px 16px;
  border: 1px solid var(--border-d);
  background: transparent;
  color: rgba(255,255,255,.7);
  border-radius: var(--r);
  transition: all .2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-cart:hover { border-color: rgba(255,255,255,.35); color: var(--white); }
.nav-shop {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 8px 18px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: var(--r);
  transition: background .2s;
  text-decoration: none;
}
.nav-shop:hover { background: var(--red-hover); }
.ham {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.ham span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  border-radius: 1px;
  transition: all .22s;
}
.mob {
  display: none;
  position: fixed;
  inset: 62px 0 0 0;
  background: var(--off-black);
  z-index: 290;
  padding: 1.5rem;
  border-top: 1px solid var(--border-d);
  overflow-y: auto;
  flex-direction: column;
  gap: 0;
}
.mob.open { display: flex; }
.mob a {
  font-family: var(--font-d);
  font-size: 30px;
  letter-spacing: 2px;
  border-bottom: 1px solid var(--border-d);
  padding: .75rem 0;
  color: var(--white);
  transition: color .15s;
  text-decoration: none;
  display: block;
}
.mob a:hover { color: var(--red); }
.mob a.sub {
  font-family: var(--font-b);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  padding: .5rem 0 .5rem 1rem;
  font-weight: 500;
}
.mob a.accent { color: var(--red); }

/* ── TICKER ── */
.ticker {
  overflow: hidden;
  white-space: nowrap;
  background: var(--charcoal);
  border-bottom: 1px solid var(--border-d);
  padding: 9px 0;
}
.ticker-track { display: inline-block; animation: ticker 32s linear infinite; }
.ti { display: inline-block; font-family: var(--font-d); font-size: 13px; letter-spacing: 4px; margin: 0 1.5rem; color: rgba(255,255,255,.45); }
.td { display: inline-block; width: 4px; height: 4px; border-radius: 50%; background: var(--red); vertical-align: middle; margin: 0 .5rem; }

/* ── SITE FOOTER ── */
.site-footer {
  background: var(--off-black);
  border-top: 1px solid var(--border-d);
  padding: 3rem 1.5rem 2rem;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-d);
}
.footer-logo { font-family: var(--font-d); font-size: 26px; letter-spacing: 2px; color: var(--white); margin-bottom: .4rem; display: block; text-decoration: none; }
.footer-logo span { color: var(--red); }
.footer-tag { font-size: 12px; color: rgba(255,255,255,.3); line-height: 1.6; max-width: 220px; }
.footer-cols { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.footer-col h4 { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--red); margin-bottom: .75rem; font-weight: 500; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .35rem; padding: 0; margin: 0; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,.35); transition: color .2s; text-decoration: none; }
.footer-col a:hover { color: var(--white); }
.footer-col a.red { color: rgba(200,56,42,.65); }
.footer-col a.red:hover { color: var(--red); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .75rem; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,.2); }
.footer-legal { display: flex; gap: 1.25rem; list-style: none; padding: 0; margin: 0; }
.footer-legal a { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.2); transition: color .2s; text-decoration: none; }
.footer-legal a:hover { color: rgba(255,255,255,.5); }

/* ── SECTION COMMONS ── */
.sec { padding: 4.5rem 1.5rem; }
.si  { max-width: 1100px; margin: 0 auto; }
.ey  { font-size: 10px; letter-spacing: 4.5px; text-transform: uppercase; font-weight: 500; margin-bottom: .6rem; }
.ey-r { color: var(--red); }
.sh  { font-family: var(--font-d); font-size: clamp(32px, 7vw, 60px); letter-spacing: 2px; line-height: 1.05; margin-bottom: .6rem; }
.sh-w { color: var(--white); }
.sh-d { color: var(--charcoal); }
.sp  { font-size: 14px; line-height: 1.75; max-width: 480px; margin-bottom: 2.5rem; }
.sp-d { color: rgba(255,255,255,.5); }
.sp-l { color: var(--mid); }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--white); color: var(--black); border: none;
  padding: 13px 28px; font-size: 12px; letter-spacing: 2.5px;
  text-transform: uppercase; font-weight: 500; border-radius: var(--r);
  transition: background .2s, transform .15s; cursor: pointer;
  display: inline-block; text-decoration: none;
}
.btn-primary:hover { background: var(--off-white); transform: translateY(-1px); color: var(--black); }
.btn-red {
  background: var(--red); color: var(--white); border: none;
  padding: 13px 28px; font-size: 12px; letter-spacing: 2.5px;
  text-transform: uppercase; font-weight: 500; border-radius: var(--r);
  transition: background .2s, transform .15s; cursor: pointer;
  display: inline-block; text-decoration: none;
}
.btn-red:hover { background: var(--red-hover); transform: translateY(-1px); color: var(--white); }
.btn-ghost-d {
  background: transparent; color: rgba(255,255,255,.7);
  border: 1px solid var(--border-d); padding: 13px 28px;
  font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase;
  border-radius: var(--r); transition: all .2s; cursor: pointer;
  display: inline-block; text-decoration: none;
}
.btn-ghost-d:hover { border-color: rgba(255,255,255,.35); color: var(--white); transform: translateY(-1px); }
.btn-dark {
  background: var(--charcoal); color: var(--white); border: none;
  padding: 13px 28px; font-size: 12px; letter-spacing: 2.5px;
  text-transform: uppercase; font-weight: 500; border-radius: var(--r);
  transition: background .2s; cursor: pointer;
  display: inline-block; text-decoration: none;
}
.btn-dark:hover { background: var(--mid); color: var(--white); }
.btn-ghost-l {
  background: transparent; color: var(--charcoal);
  border: 1px solid rgba(46,44,42,.25); padding: 13px 28px;
  font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase;
  border-radius: var(--r); transition: all .2s; cursor: pointer;
  display: inline-block; text-decoration: none;
}
.btn-ghost-l:hover { border-color: var(--charcoal); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: calc(100svh - 86px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 3rem 1.5rem 5rem;
  position: relative; overflow: hidden; background: var(--black);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 32px 32px; pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -80px; left: 50%;
  transform: translateX(-50%); width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(200,56,42,.14) 0%, transparent 70%);
  pointer-events: none;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border-d); border-radius: 20px;
  padding: 5px 16px; font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(255,255,255,.45);
  margin-bottom: 2rem; position: relative; z-index: 1;
  animation: up .55s .1s both;
}
.hero-pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); }
.hero-title {
  font-family: var(--font-d); font-size: clamp(80px, 22vw, 210px);
  line-height: .86; letter-spacing: 2px; position: relative; z-index: 1;
  animation: up .55s .25s both; margin-bottom: 1.25rem;
}
.hero-title .l1 { display: block; -webkit-text-stroke: 1.5px rgba(255,255,255,.35); color: transparent; }
.hero-title .l2 { display: block; color: var(--red); }
.hero-title .l3 { display: block; color: var(--white); }
.hero-copy {
  font-size: 15px; color: rgba(255,255,255,.5); max-width: 400px;
  line-height: 1.75; margin-bottom: 2.5rem;
  position: relative; z-index: 1; animation: up .55s .4s both;
}
.hero-btns {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
  position: relative; z-index: 1; animation: up .55s .55s both;
}
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.2); animation: up .45s 1.2s both;
}
.hero-scroll span { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; }
.scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, rgba(255,255,255,.25), transparent); }

/* ── COLLECTIONS SPLIT ── */
.cols { display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--border-d); }
.col-panel {
  padding: 3rem 2rem; display: flex; flex-direction: column; gap: 1rem;
  position: relative; overflow: hidden; min-height: 300px;
  justify-content: flex-end; cursor: pointer; transition: background .25s;
  border-bottom: 1px solid var(--border-d); text-decoration: none;
}
.col-panel:last-child { border-bottom: none; }
.col-osc { background: var(--off-black); }
.col-osc:hover { background: #222120; }
.col-poop { background: var(--cream); }
.col-poop:hover { background: #EDE9E4; }
.col-ghost {
  position: absolute; top: 1rem; right: 1.5rem;
  font-family: var(--font-d); font-size: 120px; line-height: 1; pointer-events: none;
}
.col-osc .col-ghost { color: rgba(255,255,255,.04); }
.col-poop .col-ghost { color: rgba(46,44,42,.06); }
.col-label { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; font-weight: 500; color: var(--red); }
.col-title { font-family: var(--font-d); font-size: clamp(36px, 8vw, 60px); letter-spacing: 2px; line-height: 1; }
.col-osc .col-title { color: var(--white); }
.col-poop .col-title { color: var(--charcoal); }
.col-desc { font-size: 13px; line-height: 1.65; max-width: 320px; }
.col-osc .col-desc { color: rgba(255,255,255,.45); }
.col-poop .col-desc { color: var(--mid); }
.col-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 500; padding-bottom: 2px; border-bottom: 1.5px solid var(--red);
  width: fit-content; transition: gap .2s;
}
.col-osc .col-link { color: var(--white); }
.col-poop .col-link { color: var(--charcoal); }
.col-panel:hover .col-link { gap: 14px; }

/* ── PRODUCT SECTIONS ── */
.prods-dark { background: var(--off-black); border-top: 1px solid var(--border-d); border-bottom: 1px solid var(--border-d); }
.prods-light { background: var(--cream); border-top: 1px solid var(--border-l); border-bottom: 1px solid var(--border-l); }
.prods-header { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.75rem; }
.filter-row { display: flex; gap: 6px; }
.ftab-d, .ftab-l {
  padding: 6px 16px; border-radius: 20px; font-size: 11px;
  letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500;
  border: 1px solid; background: transparent; transition: all .2s;
  font-family: var(--font-b); cursor: pointer;
}
.ftab-d { border-color: var(--border-d); color: rgba(255,255,255,.4); }
.ftab-d.on, .ftab-d:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.ftab-l { border-color: rgba(46,44,42,.18); color: var(--mid); }
.ftab-l.on, .ftab-l:hover { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.val-d, .val-l {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 500; padding-bottom: 1px; border-bottom: 1px solid;
  transition: all .2s; cursor: pointer; text-decoration: none; display: inline-block;
}
.val-d { color: rgba(255,255,255,.35); border-color: var(--border-d); }
.val-d:hover { color: var(--white); }
.val-l { color: var(--mid); border-color: rgba(46,44,42,.18); }
.val-l:hover { color: var(--charcoal); }

/* ── PRODUCT GRID ── */
.pgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pcard-d {
  background: #1C1B1A; border: 1px solid var(--border-d); border-radius: 4px;
  overflow: hidden; transition: border-color .2s, transform .2s var(--ease); cursor: pointer;
  text-decoration: none; display: block;
}
.pcard-d:hover { border-color: rgba(255,255,255,.22); transform: translateY(-2px); }
.pcard-l {
  background: var(--white); border: 1px solid rgba(46,44,42,.10); border-radius: 4px;
  overflow: hidden; transition: box-shadow .2s, transform .2s var(--ease); cursor: pointer;
  text-decoration: none; display: block;
}
.pcard-l:hover { box-shadow: 0 4px 20px rgba(46,44,42,.10); transform: translateY(-2px); }
.pimg { aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.pimg-dark { background: #111; }
.pimg-light { background: var(--off-white); }
.pimg img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s var(--ease); }
.pcard-d:hover .pimg img,
.pcard-l:hover .pimg img { transform: scale(1.04); }
.pimg svg { width: 58%; transition: transform .35s var(--ease); }
.pcard-d:hover .pimg svg, .pcard-l:hover .pimg svg { transform: scale(1.04); }
.pflag {
  position: absolute; top: 10px; left: 10px; background: var(--red);
  color: var(--white); font-size: 9px; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 3px 8px; border-radius: 2px; font-weight: 500;
  z-index: 1;
}
.pinfo-d { padding: .85rem 1rem 1rem; border-top: 1px solid var(--border-d); }
.pinfo-l { padding: .85rem 1rem 1rem; border-top: 1px solid rgba(46,44,42,.08); background: var(--white); }
.pcol-d, .pcol-l { font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--red); font-weight: 500; margin-bottom: 3px; }
.pname-d { font-family: var(--font-d); font-size: clamp(14px,3.5vw,20px); letter-spacing: 1px; color: var(--white); margin-bottom: 3px; line-height: 1.1; }
.pname-l { font-family: var(--font-d); font-size: clamp(14px,3.5vw,20px); letter-spacing: 1px; color: var(--charcoal); margin-bottom: 3px; line-height: 1.1; }
.psay-d { font-size: 11px; color: rgba(255,255,255,.35); font-style: italic; margin-bottom: .75rem; line-height: 1.4; }
.psay-l { font-size: 11px; color: var(--light-mid); font-style: italic; margin-bottom: .75rem; line-height: 1.4; }
.pfoot { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.pprice-d { font-family: var(--font-d); font-size: 22px; letter-spacing: 1px; color: var(--white); }
.pprice-l { font-family: var(--font-d); font-size: 22px; letter-spacing: 1px; color: var(--charcoal); }
.padd-d {
  background: var(--white); color: var(--black); border: none; padding: 8px 14px;
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500;
  border-radius: 2px; transition: background .2s; font-family: var(--font-b); cursor: pointer;
}
.padd-d:hover { background: var(--off-white); }
.padd-l {
  background: var(--charcoal); color: var(--white); border: none; padding: 8px 14px;
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500;
  border-radius: 2px; transition: background .2s; font-family: var(--font-b); cursor: pointer;
}
.padd-l:hover { background: var(--mid); }

/* ── WOO SINGLE PRODUCT ── */
.single-product-wrap {
  max-width: 1100px; margin: 0 auto; padding: 3rem 1.5rem;
  display: grid; grid-template-columns: 1fr; gap: 3rem;
}
.product-gallery { background: var(--off-black); border-radius: 4px; overflow: hidden; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; }
.product-gallery img { width: 100%; height: 100%; object-fit: cover; }
.product-summary { display: flex; flex-direction: column; gap: 1.25rem; }
.product-category-link { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--red); text-decoration: none; font-weight: 500; }
.product-title { font-family: var(--font-d); font-size: clamp(36px, 6vw, 64px); letter-spacing: 2px; line-height: 1; color: var(--white); }
.product-price { font-family: var(--font-d); font-size: 42px; letter-spacing: 1px; color: var(--white); }
.product-price del { opacity: .4; font-size: 28px; }
.product-price ins { text-decoration: none; color: var(--red); }
.product-excerpt { font-size: 15px; color: rgba(255,255,255,.6); line-height: 1.75; }
.product-divider { height: 1px; background: var(--border-d); }

/* WooCommerce quantity + add to cart */
.woocommerce form.cart { display: flex; flex-direction: column; gap: 1rem; }
.woocommerce form.cart .qty-wrap { display: flex; align-items: center; gap: 1rem; }
.woocommerce form.cart .quantity input {
  background: var(--off-black); border: 1px solid var(--border-d);
  color: var(--white); font-size: 16px; font-family: var(--font-b);
  padding: 10px 16px; border-radius: var(--r); width: 80px; text-align: center;
}
.woocommerce form.cart .single_add_to_cart_button {
  background: var(--red) !important; color: var(--white) !important;
  border: none !important; padding: 14px 32px !important;
  font-size: 12px !important; letter-spacing: 2.5px !important;
  text-transform: uppercase !important; font-weight: 500 !important;
  border-radius: var(--r) !important; cursor: pointer !important;
  font-family: var(--font-b) !important; transition: background .2s !important;
  flex: 1;
}
.woocommerce form.cart .single_add_to_cart_button:hover { background: var(--red-hover) !important; }
.product-meta-info { font-size: 12px; color: rgba(255,255,255,.35); line-height: 1.8; }
.product-meta-info span { display: block; }
.product-meta-info a { color: rgba(255,255,255,.5); text-decoration: none; }
.product-meta-info a:hover { color: var(--white); }

/* WooCommerce tabs */
.woocommerce-tabs { margin-top: 3rem; }
.woocommerce-tabs ul.tabs {
  display: flex; gap: 0; list-style: none; border-bottom: 1px solid var(--border-d);
  margin: 0; padding: 0;
}
.woocommerce-tabs ul.tabs li a {
  display: block; padding: 10px 20px; font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.4);
  text-decoration: none; transition: color .2s;
}
.woocommerce-tabs ul.tabs li.active a { color: var(--white); border-bottom: 2px solid var(--red); }
.woocommerce-tabs .panel { padding: 2rem 0; color: rgba(255,255,255,.6); line-height: 1.8; }

/* Related products */
.related.products h2, .upsells h2 {
  font-family: var(--font-d); font-size: 36px; letter-spacing: 2px;
  color: var(--white); margin-bottom: 1.5rem;
}

/* ── WOO SHOP / ARCHIVE ── */
.woo-shop-wrap {
  max-width: 1100px; margin: 0 auto; padding: 3rem 1.5rem;
}
.shop-header { margin-bottom: 2rem; }
.shop-title { font-family: var(--font-d); font-size: clamp(36px, 7vw, 64px); letter-spacing: 2px; color: var(--white); margin-bottom: .5rem; }
.shop-desc { font-size: 14px; color: rgba(255,255,255,.5); max-width: 500px; line-height: 1.7; }
.woo-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem;
  padding-bottom: 1.5rem; border-bottom: 1px solid var(--border-d);
}
.woocommerce-result-count { font-size: 12px; color: rgba(255,255,255,.4); letter-spacing: 1px; }
.woocommerce-ordering select {
  background: var(--off-black); border: 1px solid var(--border-d);
  color: rgba(255,255,255,.6); font-size: 12px; font-family: var(--font-b);
  padding: 8px 14px; border-radius: var(--r); cursor: pointer;
}

/* WooCommerce product loop */
.woocommerce ul.products { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; list-style: none; margin: 0; padding: 0; }
.woocommerce ul.products li.product { background: #1C1B1A; border: 1px solid var(--border-d); border-radius: 4px; overflow: hidden; transition: border-color .2s, transform .2s; }
.woocommerce ul.products li.product:hover { border-color: rgba(255,255,255,.22); transform: translateY(-2px); }
.woocommerce ul.products li.product a { text-decoration: none; color: inherit; display: block; }
.woocommerce ul.products li.product .woocommerce-loop-product__link { display: block; }
.woocommerce ul.products li.product img { width: 100%; height: auto; aspect-ratio: 3/4; object-fit: cover; transition: transform .35s; }
.woocommerce ul.products li.product:hover img { transform: scale(1.04); }
.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-d); font-size: 20px; letter-spacing: 1px;
  color: var(--white); padding: .85rem 1rem .25rem; line-height: 1.1;
}
.woocommerce ul.products li.product .price {
  font-family: var(--font-d); font-size: 22px; letter-spacing: 1px;
  color: var(--white); padding: 0 1rem .5rem; display: block;
}
.woocommerce ul.products li.product .price del { opacity: .4; font-size: 16px; }
.woocommerce ul.products li.product .price ins { text-decoration: none; color: var(--red); }
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .add_to_cart_button {
  display: block; background: var(--white) !important; color: var(--black) !important;
  border: none !important; padding: 10px 1rem !important; margin: 0 1rem 1rem !important;
  font-size: 10px !important; letter-spacing: 1.5px !important;
  text-transform: uppercase !important; font-weight: 500 !important;
  border-radius: 2px !important; text-align: center !important;
  cursor: pointer !important; font-family: var(--font-b) !important;
  transition: background .2s !important; text-decoration: none !important;
}
.woocommerce ul.products li.product .button:hover { background: var(--off-white) !important; }

/* WooCommerce sale badge */
.woocommerce span.onsale {
  background: var(--red) !important; color: var(--white) !important;
  font-size: 9px !important; letter-spacing: 1.5px !important;
  text-transform: uppercase !important; font-weight: 500 !important;
  padding: 4px 8px !important; border-radius: 2px !important;
  min-width: auto !important; min-height: auto !important;
  line-height: 1.2 !important;
}

/* WooCommerce pagination */
.woocommerce nav.woocommerce-pagination ul {
  display: flex; gap: 6px; list-style: none; padding: 2rem 0 0; margin: 0; justify-content: center;
}
.woocommerce nav.woocommerce-pagination ul li { display: block; }
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  display: block; padding: 8px 14px; border: 1px solid var(--border-d);
  font-size: 12px; color: rgba(255,255,255,.5); border-radius: 2px;
  text-decoration: none; transition: all .2s;
}
.woocommerce nav.woocommerce-pagination ul li a:hover { border-color: rgba(255,255,255,.3); color: var(--white); }
.woocommerce nav.woocommerce-pagination ul li span.current { background: var(--red); border-color: var(--red); color: var(--white); }

/* ── WOO CART ── */
.woo-cart-wrap { max-width: 1100px; margin: 0 auto; padding: 3rem 1.5rem; }
.cart-title { font-family: var(--font-d); font-size: clamp(36px, 7vw, 64px); letter-spacing: 2px; color: var(--white); margin-bottom: 2rem; }
.woocommerce table.cart { width: 100%; border-collapse: collapse; }
.woocommerce table.cart th {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,.4); padding: .75rem 1rem;
  border-bottom: 1px solid var(--border-d); text-align: left; font-weight: 500;
}
.woocommerce table.cart td {
  padding: 1rem; border-bottom: 1px solid var(--border-d);
  vertical-align: middle; color: var(--white); font-size: 14px;
}
.woocommerce table.cart td.product-name a { color: var(--white); text-decoration: none; font-weight: 500; }
.woocommerce table.cart td.product-name a:hover { color: var(--red); }
.woocommerce table.cart td.product-thumbnail img { width: 70px; border-radius: 4px; }
.woocommerce table.cart td.product-price,
.woocommerce table.cart td.product-subtotal { font-family: var(--font-d); font-size: 20px; letter-spacing: 1px; }
.woocommerce table.cart .quantity input {
  background: var(--off-black); border: 1px solid var(--border-d);
  color: var(--white); font-size: 14px; padding: 8px 12px;
  border-radius: var(--r); width: 70px; text-align: center; font-family: var(--font-b);
}
.woocommerce table.cart td.actions { padding-top: 1.5rem; }
.woocommerce table.cart td.actions .coupon { display: flex; gap: 8px; flex-wrap: wrap; }
.woocommerce table.cart td.actions .coupon input[type="text"] {
  background: var(--off-black); border: 1px solid var(--border-d);
  color: var(--white); font-size: 13px; padding: 10px 14px;
  border-radius: var(--r); font-family: var(--font-b);
}
.woocommerce table.cart td.actions .button,
.woocommerce #content table.cart td.actions .button,
.woocommerce table.cart td.actions input.button {
  background: var(--charcoal) !important; color: var(--white) !important;
  border: none !important; padding: 10px 20px !important;
  font-size: 11px !important; letter-spacing: 2px !important;
  text-transform: uppercase !important; border-radius: var(--r) !important;
  cursor: pointer !important; font-family: var(--font-b) !important;
}
.woocommerce .cart-collaterals { margin-top: 2rem; }
.woocommerce .cart_totals h2 {
  font-family: var(--font-d); font-size: 28px; letter-spacing: 2px;
  color: var(--white); margin-bottom: 1rem;
}
.woocommerce .cart_totals table { width: 100%; border-collapse: collapse; }
.woocommerce .cart_totals table th,
.woocommerce .cart_totals table td {
  padding: .75rem 1rem; border-bottom: 1px solid var(--border-d);
  font-size: 14px; color: rgba(255,255,255,.7);
}
.woocommerce .cart_totals table th { font-weight: 500; color: var(--white); }
.woocommerce .cart_totals .wc-proceed-to-checkout { margin-top: 1.5rem; }
.woocommerce .cart_totals .checkout-button {
  display: block; background: var(--red) !important; color: var(--white) !important;
  border: none !important; padding: 16px 32px !important;
  font-size: 13px !important; letter-spacing: 3px !important;
  text-transform: uppercase !important; font-weight: 500 !important;
  border-radius: var(--r) !important; text-align: center !important;
  cursor: pointer !important; font-family: var(--font-b) !important;
  text-decoration: none !important; transition: background .2s !important;
}
.woocommerce .cart_totals .checkout-button:hover { background: var(--red-hover) !important; }

/* ── WOO CHECKOUT ── */
.woo-checkout-wrap { max-width: 1100px; margin: 0 auto; padding: 3rem 1.5rem; }
.checkout-title { font-family: var(--font-d); font-size: clamp(36px, 7vw, 64px); letter-spacing: 2px; color: var(--white); margin-bottom: 2rem; }
.woocommerce form .form-row { margin-bottom: 1rem; }
.woocommerce form .form-row label { display: block; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 6px; font-weight: 500; }
.woocommerce form .form-row input[type="text"],
.woocommerce form .form-row input[type="email"],
.woocommerce form .form-row input[type="tel"],
.woocommerce form .form-row input[type="password"],
.woocommerce form .form-row select,
.woocommerce form .form-row textarea {
  width: 100%; background: var(--off-black); border: 1px solid var(--border-d);
  color: var(--white); font-size: 14px; font-family: var(--font-b);
  padding: 12px 14px; border-radius: var(--r); outline: none;
  transition: border-color .2s;
}
.woocommerce form .form-row input:focus,
.woocommerce form .form-row select:focus { border-color: rgba(255,255,255,.35); }
.woocommerce form .form-row input::placeholder { color: rgba(255,255,255,.25); }
#order_review { background: var(--off-black); border: 1px solid var(--border-d); border-radius: 4px; padding: 1.5rem; }
#order_review h3 { font-family: var(--font-d); font-size: 24px; letter-spacing: 2px; color: var(--white); margin-bottom: 1rem; }
.woocommerce-checkout #payment { background: transparent !important; border: none !important; }
.woocommerce-checkout #payment ul.payment_methods { list-style: none; padding: 0; margin: 0 0 1rem; }
.woocommerce-checkout #payment ul.payment_methods li { padding: .75rem; border: 1px solid var(--border-d); border-radius: var(--r); margin-bottom: .5rem; color: var(--white); font-size: 13px; }
.woocommerce-checkout #payment div.place-order { margin-top: 1rem; }
.woocommerce-checkout #payment #place_order {
  display: block; width: 100%; background: var(--red) !important;
  color: var(--white) !important; border: none !important;
  padding: 16px 32px !important; font-size: 13px !important;
  letter-spacing: 3px !important; text-transform: uppercase !important;
  font-weight: 500 !important; border-radius: var(--r) !important;
  cursor: pointer !important; font-family: var(--font-b) !important;
  transition: background .2s !important;
}
.woocommerce-checkout #payment #place_order:hover { background: var(--red-hover) !important; }

/* ── WOO MY ACCOUNT ── */
.woo-account-wrap { max-width: 900px; margin: 0 auto; padding: 3rem 1.5rem; }
.account-title { font-family: var(--font-d); font-size: clamp(32px, 6vw, 56px); letter-spacing: 2px; color: var(--white); margin-bottom: 2rem; }
.woocommerce-MyAccount-navigation { margin-bottom: 2rem; }
.woocommerce-MyAccount-navigation ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.woocommerce-MyAccount-navigation ul li a {
  display: block; padding: 7px 16px; border: 1px solid var(--border-d);
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.5); border-radius: 20px; text-decoration: none; transition: all .2s;
}
.woocommerce-MyAccount-navigation ul li a:hover { color: var(--white); border-color: rgba(255,255,255,.3); }
.woocommerce-MyAccount-navigation ul li.is-active a { background: var(--red); border-color: var(--red); color: var(--white); }
.woocommerce-MyAccount-content { color: rgba(255,255,255,.7); line-height: 1.8; }
.woocommerce-MyAccount-content table { width: 100%; border-collapse: collapse; }
.woocommerce-MyAccount-content table th { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.4); padding: .75rem 1rem; border-bottom: 1px solid var(--border-d); }
.woocommerce-MyAccount-content table td { padding: .75rem 1rem; border-bottom: 1px solid var(--border-d); font-size: 13px; }
.woocommerce-MyAccount-content a { color: var(--red); }
.woocommerce-MyAccount-content a:hover { color: var(--white); }

/* ── WOO NOTICES ── */
.woocommerce-error, .woocommerce-info, .woocommerce-message {
  list-style: none; padding: 1rem 1.25rem !important; margin: 0 0 1.5rem !important;
  border-radius: var(--r) !important; font-size: 13px !important;
  display: flex !important; align-items: center !important; gap: 1rem !important;
}
.woocommerce-error { background: rgba(200,56,42,.15) !important; border-left: 3px solid var(--red) !important; color: rgba(255,255,255,.8) !important; }
.woocommerce-info  { background: rgba(255,255,255,.05) !important; border-left: 3px solid rgba(255,255,255,.3) !important; color: rgba(255,255,255,.7) !important; }
.woocommerce-message { background: rgba(0,180,100,.1) !important; border-left: 3px solid #00B464 !important; color: rgba(255,255,255,.8) !important; }
.woocommerce-error li, .woocommerce-info li, .woocommerce-message li { margin: 0 !important; padding: 0 !important; }

/* ── OH POOP FEATURE ── */
.poop-feature { background: var(--cream); border-top: 1px solid var(--border-l); border-bottom: 1px solid var(--border-l); }
.poop-inner { display: grid; grid-template-columns: 1fr; gap: 3rem; max-width: 960px; margin: 0 auto; align-items: center; }
.poop-badge {
  display: inline-flex; align-items: center; gap: 8px; background: var(--red-light);
  border: 1px solid rgba(200,56,42,.2); border-radius: 20px; padding: 5px 14px;
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--red);
  font-weight: 500; margin-bottom: 1rem;
}
.poop-title { font-family: var(--font-d); font-size: clamp(36px,8vw,68px); letter-spacing: 2px; line-height: 1; color: var(--charcoal); margin-bottom: .75rem; }
.poop-title span { color: var(--red); }
.poop-desc { font-size: 15px; color: var(--mid); line-height: 1.75; margin-bottom: 2rem; max-width: 440px; }
.poop-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(46,44,42,.1); border: 1px solid rgba(46,44,42,.1); border-radius: 4px; overflow: hidden; align-self: start; }
.pstat { background: var(--white); padding: 1.25rem 1rem; text-align: center; }
.pstat-n { font-family: var(--font-d); font-size: 38px; color: var(--red); line-height: 1; margin-bottom: 3px; }
.pstat-l { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--light-mid); }

/* ── BRAND STORY ── */
.story { background: var(--black); border-top: 1px solid var(--border-d); border-bottom: 1px solid var(--border-d); }
.story-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; max-width: 960px; margin: 0 auto; }
.story-pull { font-family: var(--font-d); font-size: clamp(24px,5vw,40px); letter-spacing: 2px; line-height: 1.15; color: rgba(255,255,255,.15); border-left: 3px solid var(--red); padding-left: 1.25rem; margin-bottom: 1.5rem; }
.story-body { font-size: 15px; color: rgba(255,255,255,.55); line-height: 1.8; }
.story-body p { margin-bottom: 1rem; }
.story-body strong { color: var(--white); font-weight: 500; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border-d); border: 1px solid var(--border-d); border-radius: 4px; overflow: hidden; align-self: start; }
.stat { background: var(--off-black); padding: 1.5rem 1.25rem; text-align: center; }
.stat-n { font-family: var(--font-d); font-size: 42px; color: var(--red); line-height: 1; margin-bottom: 4px; }
.stat-l { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.3); }

/* ── PROOF ── */
.proof { background: var(--off-black); border-bottom: 1px solid var(--border-d); }
.proof-grid { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 2rem; }
.proof-card { background: var(--black); border: 1px solid var(--border-d); border-radius: 4px; padding: 1.5rem; }
.pq { font-family: var(--font-d); font-size: 52px; color: var(--red); line-height: .7; margin-bottom: .5rem; opacity: .6; }
.pt { font-size: 14px; font-style: italic; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 1rem; }
.prow { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.pa { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.3); }
.ptag { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--red); }

/* ── SOCIAL ── */
.social { background: var(--black); border-bottom: 1px solid var(--border-d); text-align: center; overflow: hidden; position: relative; }
.social::before { content: '@OHPOOPCO'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-family: var(--font-d); font-size: clamp(60px,16vw,150px); color: rgba(255,255,255,.025); white-space: nowrap; letter-spacing: 4px; pointer-events: none; }
.social-inner { max-width: 520px; margin: 0 auto; position: relative; z-index: 1; }
.social-handle { font-family: var(--font-d); font-size: clamp(42px,10vw,84px); letter-spacing: 3px; line-height: 1; color: var(--white); margin-bottom: .5rem; }
.social-handle em { color: var(--red); font-style: normal; }
.social-sub { font-size: 14px; color: rgba(255,255,255,.45); margin-bottom: 1.75rem; line-height: 1.7; }
.tag-row { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; margin-bottom: 2rem; }
.htag { padding: 5px 12px; border-radius: 20px; border: 1px solid var(--border-d); font-size: 11px; color: rgba(255,255,255,.4); transition: all .2s; cursor: pointer; }
.htag:hover, .htag.on { border-color: var(--red); color: var(--red); }
.sbtns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.sbtn { display: flex; align-items: center; gap: 8px; padding: 11px 22px; border-radius: var(--r); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; border: 1px solid var(--border-d); background: transparent; color: var(--white); transition: all .2s; cursor: pointer; font-family: var(--font-b); text-decoration: none; }
.sbtn-tt { border-color: #69C9D0; }
.sbtn-tt:hover { background: rgba(105,201,208,.08); }
.sbtn-ig { border-color: #C13584; }
.sbtn-ig:hover { background: rgba(193,53,132,.08); }

/* ── EMAIL ── */
.email-sec { background: var(--red); color: var(--white); padding: 5rem 1.5rem; text-align: center; }
.email-title { font-family: var(--font-d); font-size: clamp(38px,9vw,84px); letter-spacing: 3px; line-height: 1; margin-bottom: .5rem; }
.email-sub { font-size: 14px; opacity: .72; margin-bottom: 1.75rem; }
.email-form { display: flex; gap: 8px; max-width: 420px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.email-input { flex: 1; min-width: 200px; padding: 13px 16px; background: rgba(0,0,0,.18); border: 1px solid rgba(255,255,255,.3); border-radius: var(--r); color: var(--white); font-size: 14px; font-family: var(--font-b); outline: none; transition: border-color .2s; }
.email-input::placeholder { color: rgba(255,255,255,.45); }
.email-input:focus { border-color: rgba(255,255,255,.6); }
.email-btn { background: var(--black); color: var(--white); border: none; padding: 13px 24px; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 500; border-radius: var(--r); white-space: nowrap; font-family: var(--font-b); transition: background .2s; cursor: pointer; }
.email-btn:hover { background: var(--charcoal); }
.email-note { width: 100%; text-align: center; font-size: 11px; opacity: .5; margin-top: 8px; }

/* ── 404 PAGE ── */
.page-404 { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 3rem 1.5rem; }
.page-404 .num { font-family: var(--font-d); font-size: clamp(80px,20vw,180px); color: var(--red); line-height: 1; margin-bottom: .5rem; }
.page-404 p { color: rgba(255,255,255,.5); margin-bottom: 2rem; font-size: 15px; }

/* ── SCROLL REVEAL ── */
.r { opacity: 0; transform: translateY(20px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.r.in { opacity: 1; transform: none; }

/* ── ANIMATIONS ── */
@keyframes up { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:none; } }
@keyframes ticker { from { transform:translateX(0); } to { transform:translateX(-50%); } }

/* ── RESPONSIVE ── */
@media (min-width: 600px) {
  .pgrid { grid-template-columns: repeat(3,1fr); }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .woocommerce ul.products { grid-template-columns: repeat(3,1fr); }
}
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .ham { display: none; }
  .cols { grid-template-columns: 1fr 1fr; }
  .col-panel { border-bottom: none; border-right: 1px solid var(--border-d); min-height: 380px; }
  .col-panel:last-child { border-right: none; }
  .story-grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .proof-grid { grid-template-columns: repeat(3,1fr); }
  .pgrid { grid-template-columns: repeat(4,1fr); }
  .woocommerce ul.products { grid-template-columns: repeat(4,1fr); }
  .single-product-wrap { grid-template-columns: 1fr 1fr; }
  .poop-inner { grid-template-columns: 1fr 1fr; }
  .woo-checkout-wrap .woocommerce { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
}
@media (max-width: 380px) {
  .hero-title { font-size: 68px; }
  .pgrid { grid-template-columns: 1fr 1fr; gap: 7px; }
  .woocommerce ul.products { grid-template-columns: 1fr 1fr; gap: 7px; }
}

/* ── WOOCOMMERCE ADMIN BAR OFFSET ── */
.admin-bar .site-nav { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .site-nav { top: 46px; } }

/* ── HIDE THEME/WP JUNK ── */
.wp-block-template-part:empty { display: none; }

/* ── FULL WIDTH FORCE FIXES ── */
/* Override any parent theme or WP default width constraints */
html, body {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden !important;
}

/* Remove any WP default page/content wrappers */
.wp-site-blocks,
.site,
#page,
#content,
#primary,
#main,
.site-content,
.content-area,
.entry-content,
.wp-block-group,
.is-layout-constrained,
.is-layout-flow,
.entry,
article.page {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Kill default WP block padding */
:where(.wp-site-blocks) > * {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}

/* Hide any leftover theme header/footer that isn't ours */
.wp-block-template-part,
.wp-block-template-part:empty {
  display: none !important;
}

/* Admin bar — push our sticky nav down correctly */
.admin-bar .site-nav {
  top: 32px !important;
}
@media screen and (max-width: 782px) {
  .admin-bar .site-nav {
    top: 46px !important;
  }
  .admin-bar .mob {
    top: calc(62px + 46px) !important;
  }
}

/* ═══════════════════════════════════════════════
   ENZO'S COLLECTION PAGE STYLES
   ═══════════════════════════════════════════════ */

/* ── ENZO HERO ── */
.enzo-hero {
  background: var(--black);
  padding: 4rem 1.5rem 3rem;
  border-bottom: 1px solid var(--border-d);
}
.enzo-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.enzo-hero-title {
  font-family: var(--font-d);
  font-size: clamp(60px, 12vw, 120px);
  letter-spacing: 3px;
  line-height: .9;
  color: var(--white);
  margin-bottom: 1rem;
}
.enzo-hero-title span { color: var(--red); }
.enzo-hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.enzo-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.enzo-hero-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.enzo-hero-img img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.5));
}
.enzo-placeholder {
  width: 400px; height: 400px;
  background: var(--off-black);
  border: 2px dashed var(--border-d);
  border-radius: 12px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
}
.enzo-placeholder-text { font-family: var(--font-d); font-size: 48px; color: var(--red); }
.enzo-placeholder-sub { font-size: 12px; color: rgba(255,255,255,.3); text-align: center; line-height: 1.6; }

@media (max-width: 768px) {
  .enzo-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .enzo-hero-btns { justify-content: center; }
  .enzo-hero-img { order: -1; }
  .enzo-hero-img img { max-width: 280px; }
}

/* ── ENZO STATS BAR ── */
.enzo-stats {
  background: var(--red);
}
.enzo-stat { text-align: center; }
.enzo-stat-n {
  font-family: var(--font-d);
  font-size: 36px;
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
}
.enzo-stat-l {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-top: 4px;
}

/* ── ABOUT THE POOPSCOT ── */
.enzo-about {
  background: var(--off-black);
  padding: 4rem 1.5rem;
}
.enzo-bio {
  color: rgba(255,255,255,.65);
  font-size: 15px;
  line-height: 1.85;
}
.enzo-bio p { margin-bottom: 1.25rem; }
.enzo-bio strong { color: var(--white); }
.enzo-bio-closer {
  font-size: 18px;
  color: var(--red);
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-d);
}

/* ── ENZO TAGLINES SHOWCASE ── */
.enzo-taglines {
  background: var(--cream);
  padding: 4rem 1.5rem;
}
.enzo-tag-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.enzo-tag-card {
  background: var(--white);
  border: 1px solid var(--border-l);
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-d);
  font-size: clamp(16px, 3vw, 22px);
  letter-spacing: 1px;
  color: var(--charcoal);
  line-height: 1.3;
  transition: transform .2s var(--ease), box-shadow .2s;
}
.enzo-tag-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(46,44,42,.10);
}
@media (max-width: 600px) {
  .enzo-tag-grid { grid-template-columns: 1fr; }
}

/* ── ENZO CTA ── */
.enzo-cta {
  background: var(--black);
  padding: 5rem 1.5rem;
  border-top: 1px solid var(--border-d);
}

/* ═══════════════════════════════════════════════
   LIGHT HERO — OH POOP CO. DEFAULT
   ═══════════════════════════════════════════════ */

.hero-light {
  background: var(--cream);
}
.hero-light::before {
  background-image: radial-gradient(circle, rgba(46,44,42,.05) 1px, transparent 1px);
}
.hero-light::after {
  background: radial-gradient(ellipse, rgba(200,56,42,.08) 0%, transparent 70%);
}
.hero-pill-light {
  border-color: var(--border-l);
  color: var(--mid);
}
.hero-light .hero-title .l1 {
  -webkit-text-stroke: 1.5px rgba(46,44,42,.25);
  color: transparent;
}
.hero-light .hero-title .l2 {
  color: var(--red);
}
.hero-light .hero-title .l3 {
  color: var(--charcoal);
}
.hero-copy-light {
  color: var(--mid);
}
.hero-scroll-light {
  color: var(--light-mid);
}
.scroll-line-light {
  background: linear-gradient(to bottom, rgba(46,44,42,.2), transparent);
}

/* ═══════════════════════════════════════════════
   DARK SIDE — OH SHIT COLLECTION PAGES
   Used on mob, Vegas, Rat Pack, and Oh Shit pages.
   Wrap content in <div class="dark-side"> to activate.
   ═══════════════════════════════════════════════ */

.dark-side {
  background: var(--black);
  color: var(--white);
}
.dark-side .sec { border-color: var(--border-d); }
.dark-side h1,
.dark-side h2,
.dark-side h3 { color: var(--white); }
.dark-side p { color: rgba(255,255,255,.6); }
.dark-side a { color: rgba(255,255,255,.7); }
.dark-side a:hover { color: var(--white); }

/* Dark side page hero */
.dark-hero {
  background: var(--black);
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.dark-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.dark-hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(200,56,42,.18) 0%, transparent 70%);
  pointer-events: none;
}
.dark-hero-title {
  font-family: var(--font-d);
  font-size: clamp(60px, 18vw, 160px);
  line-height: .88;
  letter-spacing: 3px;
  position: relative;
  z-index: 1;
  color: var(--white);
  margin-bottom: 1rem;
}
.dark-hero-title span { color: var(--red); }
.dark-hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,.5);
  max-width: 420px;
  line-height: 1.75;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════
   FOOTER TAG UPDATE
   ═══════════════════════════════════════════════ */
.footer-tag {
  font-size: 12px;
  color: rgba(255,255,255,.3);
  line-height: 1.6;
  max-width: 220px;
}
