/*
Theme Name: CHRONOIZM
Theme URI: https://chronoizm.thebase.in/
Author: CHRONOIZM
Description: Custom WordPress theme for CHRONOIZM streetwear brand. WooCommerce compatible.
Version: 2.0
License: Private
Text Domain: chronoizm
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
============================================================ */
:root {
  --black:      #0a0a0a;
  --dark:       #0d0c0a;
  --mid:        #111110;
  --white:      #ffffff;
  --off-white:  #f5f3f0;
  --gray:       #999999;
  --light-gray: rgba(255,255,255,0.45);
  --border:     rgba(255,255,255,0.07);
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body:    'Montserrat', 'Noto Sans JP', sans-serif;
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.3); }

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1, h2, h3, h4 { font-weight: 400; line-height: 1.1; }

.label {
  font-size: 9px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gray);
}

/* ============================================================
   BUTTONS
============================================================ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--black);
  padding: 15px 36px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  transition: background 0.2s;
  border: none;
}
.btn-primary:hover { background: #e0e0e0; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: rgba(255,255,255,0.8);
  padding: 14px 36px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--white); color: var(--white); }

/* ============================================================
   NOTIFICATION BAR
============================================================ */
#notification-bar {
  background: var(--white);
  color: var(--black);
  text-align: center;
  padding: 10px 20px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase;
}

/* ============================================================
   HEADER
============================================================ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 64px;
  transition: background 0.4s, border-color 0.4s;
}
#site-header.transparent { background: transparent; border-bottom: none; }
#site-header.scrolled {
  background: rgba(10,10,10,0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.site-logo img { height: 36px; width: auto; filter: brightness(0) invert(1); }
.site-logo-text {
  font-family: var(--font-heading); font-size: 26px;
  letter-spacing: 0.2em; color: var(--white);
}

#primary-nav { display: flex; gap: 32px; }
#primary-nav a {
  font-size: 10px; letter-spacing: 0.22em; font-weight: 600; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
#primary-nav a:hover { color: var(--white); }

.header-actions { display: flex; gap: 20px; align-items: center; }
.header-cart {
  font-size: 10px; letter-spacing: 0.18em; font-weight: 700;
  display: flex; align-items: center; gap: 6px;
  transition: opacity 0.2s;
}
.header-cart:hover { opacity: 0.7; }

.menu-toggle {
  display: none; background: none; border: none;
  color: var(--white); font-size: 22px; cursor: pointer;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  height: 100vh; min-height: 640px;
  position: relative;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
  background-color: var(--dark);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%),
    linear-gradient(to right, rgba(0,0,0,0.25) 0%, transparent 40%, transparent 60%, rgba(0,0,0,0.25) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  padding: 0 60px 80px;
}
.hero-kicker {
  font-size: 10px; letter-spacing: 0.5em; color: var(--white);
  text-transform: uppercase; font-weight: 600; opacity: 0.6;
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
}
.hero-kicker::before {
  content: ''; display: block; width: 40px; height: 1px;
  background: var(--white); opacity: 0.4;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(80px, 14vw, 180px);
  line-height: 0.88; letter-spacing: 0.02em;
  margin-bottom: 32px;
}
.hero-title .outline {
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.3);
  color: transparent;
}
.hero-subtitle {
  font-size: 11px; letter-spacing: 0.22em; color: rgba(255,255,255,0.5);
  line-height: 2.2; max-width: 360px; margin-bottom: 44px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 14px; align-items: center; }
.scroll-hint {
  position: absolute; bottom: 36px; right: 52px;
  writing-mode: vertical-rl; font-size: 9px; letter-spacing: 0.35em;
  color: rgba(255,255,255,0.25); text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-bar {
  width: 1px; height: 50px;
  background: linear-gradient(rgba(255,255,255,0.5), transparent);
  animation: scrollbar-pulse 2s ease-in-out infinite;
}
@keyframes scrollbar-pulse {
  0%,100%{ opacity:1; transform:scaleY(1); }
  50%{ opacity:0.3; transform:scaleY(0.4); }
}

/* ============================================================
   TICKER
============================================================ */
.ticker-bar {
  overflow: hidden; background: var(--white);
  padding: 11px 0; white-space: nowrap;
}
.ticker-inner { display: inline-flex; animation: ticker 22s linear infinite; }
.ticker-inner span {
  font-size: 10px; font-weight: 800; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--black); padding: 0 36px;
}
.ticker-inner span::before { content: '✦'; margin-right: 36px; }
@keyframes ticker { 0%{ transform:translateX(0); } 100%{ transform:translateX(-50%); } }

/* ============================================================
   COLLECTION (white section – rsurfer style)
============================================================ */
.collection-section {
  background: var(--off-white);
  padding: 100px 60px;
  color: var(--black);
}
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 60px;
}
.section-head .label { color: var(--gray); margin-bottom: 10px; }
.section-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(48px, 7vw, 88px);
  letter-spacing: 0.04em; line-height: 1; color: var(--black);
}
.section-head .view-all {
  font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--black); font-weight: 700;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--black); padding-bottom: 2px;
}

/* WooCommerce product grid */
.collection-section ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1px !important;
  background: #ddd !important;
  margin: 0 !important;
}
.collection-section ul.products li.product {
  background: var(--off-white) !important;
  margin: 0 !important; padding: 0 !important;
  overflow: hidden;
}
.collection-section .product-inner { position: relative; }

.product-img-wrap { position: relative; overflow: hidden; aspect-ratio: 3/4; background: #e8e5e1; }
.product-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.collection-section li.product:hover .product-img-wrap img { transform: scale(1.04); }

.product-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex; align-items: flex-end; padding: 20px;
  opacity: 0; transition: opacity 0.3s;
}
.collection-section li.product:hover .product-overlay { opacity: 1; }
.product-overlay .button,
.product-overlay .add-to-cart-ajax {
  width: 100% !important;
  background: var(--black) !important; color: var(--white) !important;
  border: none !important; padding: 11px !important;
  font-size: 10px !important; font-weight: 700 !important;
  letter-spacing: 0.18em !important; text-transform: uppercase !important;
  text-align: center !important; display: block !important;
  transition: background 0.2s !important;
}
.product-overlay .button:hover,
.product-overlay .add-to-cart-ajax:hover { background: #333 !important; }

.product-info { padding: 14px 14px 18px; background: var(--off-white); }
.product-info .woocommerce-loop-product__title {
  font-size: 11px !important; font-weight: 700 !important;
  letter-spacing: 0.12em !important; text-transform: uppercase !important;
  color: var(--black) !important; margin-bottom: 4px !important;
  font-family: var(--font-body) !important;
}
.product-info .price { font-size: 13px !important; color: #555 !important; font-weight: 500 !important; }

.badge-new {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--black); color: var(--white);
  font-size: 8px; font-weight: 800; letter-spacing: 0.2em; padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.2);
}
.badge-sold {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  background: rgba(0,0,0,0.5); color: rgba(255,255,255,0.5);
  font-size: 8px; letter-spacing: 0.15em; padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.15);
}

/* ============================================================
   PICKUP / FEATURED PRODUCT (dark)
============================================================ */
.pickup-section {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--black);
}
.pickup-image {
  position: relative; min-height: 580px; overflow: hidden;
  background: var(--dark);
}
.pickup-image img { width: 100%; height: 100%; object-fit: cover; }
.pickup-price-tag {
  position: absolute; bottom: 36px; right: 36px;
  background: var(--white); color: var(--black);
  font-family: var(--font-heading); font-size: 28px; letter-spacing: 0.1em;
  padding: 10px 22px;
}
.pickup-info {
  padding: 80px 70px;
  display: flex; flex-direction: column; justify-content: center;
  border-left: 1px solid var(--border);
}
.pickup-kicker {
  font-size: 9px; letter-spacing: 0.45em; color: rgba(255,255,255,0.45);
  text-transform: uppercase; font-weight: 600; margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
}
.pickup-kicker::before { content: ''; width: 28px; height: 1px; background: rgba(255,255,255,0.35); }
.pickup-title { font-family: var(--font-heading); font-size: 56px; letter-spacing: 0.04em; line-height: 1; margin-bottom: 24px; }
.pickup-desc { list-style: none; margin-bottom: 28px; }
.pickup-desc li {
  font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1;
  padding: 9px 0 9px 18px; border-bottom: 1px solid var(--border);
  position: relative; font-weight: 300;
}
.pickup-desc li::before { content: '—'; position: absolute; left: 0; color: rgba(255,255,255,0.25); font-size: 10px; }

.size-selector { display: flex; gap: 7px; margin: 24px 0 32px; flex-wrap: wrap; }
.size-btn {
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,0.15); background: transparent;
  color: var(--white); font-size: 10px; font-weight: 700;
  transition: all 0.18s; font-family: var(--font-body);
}
.size-btn:hover, .size-btn.active { background: var(--white); color: var(--black); border-color: var(--white); }

/* ============================================================
   EVENTS (dark)
============================================================ */
.events-section { background: var(--dark); padding: 100px 60px; }
.events-section .section-head h2 { color: var(--white); }
.events-section .section-head .label { color: rgba(255,255,255,0.35); }
.events-section .view-all { color: var(--white); border-bottom-color: rgba(255,255,255,0.35); }

.events-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border);
}
.event-card {
  background: var(--dark); padding: 44px;
  display: grid; grid-template-columns: 72px 1px 1fr; gap: 28px; align-items: start;
  border-bottom: 2px solid transparent;
  transition: background 0.25s, border-color 0.25s; cursor: pointer;
}
.event-card:hover { background: #141210; border-bottom-color: rgba(255,255,255,0.5); }
.event-card.featured { grid-column: 1 / -1; border-left: 2px solid rgba(255,255,255,0.3); }

.event-date-col { text-align: center; }
.event-day { font-family: var(--font-heading); font-size: 52px; line-height: 1; }
.event-month { font-size: 9px; letter-spacing: 0.3em; color: var(--gray); text-transform: uppercase; font-weight: 600; }
.event-year  { font-size: 9px; color: var(--gray); }

.event-sep { background: linear-gradient(to bottom, rgba(255,255,255,0.2), transparent); }

.event-body { padding-left: 4px; }
.event-type {
  font-size: 8px; letter-spacing: 0.4em; color: rgba(255,255,255,0.5);
  text-transform: uppercase; font-weight: 700; margin-bottom: 8px;
  display: flex; align-items: center; gap: 7px;
}
.event-type-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.4); flex-shrink: 0; }
.event-name { font-family: var(--font-heading); font-size: 28px; letter-spacing: 0.04em; margin-bottom: 8px; line-height: 1.1; }
.event-location { font-size: 11px; color: var(--gray); letter-spacing: 0.08em; margin-bottom: 14px; }
.event-desc { font-size: 11px; color: rgba(255,255,255,0.3); line-height: 1.9; font-weight: 300; }
.event-cta {
  margin-top: 18px; display: inline-flex; align-items: center; gap: 7px;
  font-size: 9px; letter-spacing: 0.25em; color: var(--white);
  font-weight: 700; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.2); padding: 9px 18px;
  transition: all 0.2s;
}
.event-cta:hover { background: var(--white); color: var(--black); }

.past-events { margin-top: 60px; opacity: 0.4; }
.past-events h3 { font-family: var(--font-heading); font-size: 18px; letter-spacing: 0.2em; margin-bottom: 24px; color: var(--gray); }

/* ============================================================
   ABOUT (dark split)
============================================================ */
.about-section {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 640px; background: var(--black);
}
.about-visual {
  background: var(--dark); position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.about-visual img { width: 100%; height: 100%; object-fit: cover; }
.about-visual-bg {
  font-family: var(--font-heading); font-size: 96px;
  color: rgba(255,255,255,0.03); text-align: center; line-height: 1; letter-spacing: 0.08em;
}

.about-content {
  padding: 100px 80px;
  display: flex; flex-direction: column; justify-content: center;
  border-left: 1px solid var(--border);
}
.about-year { font-family: var(--font-heading); font-size: 12px; letter-spacing: 0.45em; color: rgba(255,255,255,0.3); margin-bottom: 22px; }
.about-title { font-family: var(--font-heading); font-size: clamp(38px, 4vw, 52px); letter-spacing: 0.04em; line-height: 1.05; margin-bottom: 28px; }
.about-body { font-size: 13px; line-height: 2.2; color: rgba(255,255,255,0.45); font-weight: 300; margin-bottom: 16px; }
.about-body strong { color: var(--white); font-weight: 500; }
.about-stats { display: flex; gap: 44px; margin-top: 44px; padding-top: 36px; border-top: 1px solid var(--border); }
.stat-number { font-family: var(--font-heading); font-size: 44px; line-height: 1; }
.stat-label  { font-size: 9px; letter-spacing: 0.28em; color: var(--gray); text-transform: uppercase; margin-top: 4px; }

/* ============================================================
   SNS / INSTAGRAM (off-white)
============================================================ */
.sns-section { background: var(--off-white); padding: 100px 60px; text-align: center; color: var(--black); }
.sns-section .label { color: var(--gray); margin-bottom: 10px; }
.sns-section h2 { font-family: var(--font-heading); font-size: clamp(40px, 6vw, 60px); color: var(--black); letter-spacing: 0.05em; }

.instagram-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 2px; margin-top: 48px; }
.instagram-cell { aspect-ratio: 1; overflow: hidden; position: relative; cursor: pointer; background: #ddd; }
.instagram-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.instagram-cell:hover img { transform: scale(1.05); }
.instagram-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.55);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  opacity: 0; transition: opacity 0.25s;
}
.instagram-cell:hover .instagram-overlay { opacity: 1; }

.sns-buttons { margin-top: 40px; display: flex; justify-content: center; gap: 16px; }
.sns-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  border: 1px solid rgba(0,0,0,0.2); color: var(--black);
  transition: all 0.2s;
}
.sns-btn:hover { border-color: var(--black); background: var(--black); color: var(--white); }

/* ============================================================
   NEWSLETTER
============================================================ */
.newsletter-section { background: #111111; padding: 72px 60px; text-align: center; }
.newsletter-section h2 { font-family: var(--font-heading); font-size: 52px; letter-spacing: 0.08em; margin-bottom: 10px; }
.newsletter-section p { font-size: 10px; letter-spacing: 0.25em; color: rgba(255,255,255,0.35); margin-bottom: 32px; text-transform: uppercase; }
.newsletter-form,
.mc4wp-form-fields { display: flex; max-width: 440px; margin: 0 auto; }
.newsletter-form input[type="email"],
.mc4wp-form-fields input[type="email"] {
  flex: 1; padding: 15px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12); border-right: none;
  color: var(--white); font-size: 12px; outline: none; font-family: var(--font-body);
}
.newsletter-form input::placeholder,
.mc4wp-form-fields input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form button[type="submit"],
.mc4wp-form-fields input[type="submit"] {
  background: var(--white); color: var(--black);
  border: none; padding: 15px 24px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  cursor: pointer; font-family: var(--font-body); transition: background 0.2s;
}
.newsletter-form button:hover,
.mc4wp-form-fields input[type="submit"]:hover { background: #e0e0e0; }

/* ============================================================
   FOOTER
============================================================ */
#site-footer {
  background: #080807;
  padding: 72px 60px 36px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 52px; margin-bottom: 52px; }

.footer-brand .site-logo img { height: 32px; filter: brightness(0) invert(1); margin-bottom: 18px; }
.footer-brand .site-logo-text { font-family: var(--font-heading); font-size: 30px; letter-spacing: 0.2em; display: block; margin-bottom: 18px; }
.footer-tagline { font-size: 11px; color: rgba(255,255,255,0.28); letter-spacing: 0.12em; line-height: 2; font-weight: 300; margin-bottom: 24px; }

.footer-social { display: flex; gap: 10px; }
.footer-social-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: rgba(255,255,255,0.4);
  transition: all 0.2s;
}
.footer-social-icon:hover { border-color: var(--white); color: var(--white); }

.footer-col h5 {
  font-size: 9px; letter-spacing: 0.4em; color: rgba(255,255,255,0.4);
  text-transform: uppercase; font-weight: 700; margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a { font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: 0.08em; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 10px; color: rgba(255,255,255,0.18); letter-spacing: 0.1em; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 9px; color: rgba(255,255,255,0.18); letter-spacing: 0.1em; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

/* ============================================================
   WOOCOMMERCE OVERRIDES
============================================================ */
.woocommerce-notices-wrapper { padding: 20px 60px 0; }
.woocommerce-message, .woocommerce-error, .woocommerce-info {
  border-top-color: var(--white) !important;
  background: #111 !important; color: var(--white) !important;
}

.woocommerce table.shop_table { background: var(--dark); color: var(--white); border-color: var(--border) !important; }
.woocommerce table.shop_table th { background: #111; color: var(--white); border-color: var(--border) !important; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; }
.woocommerce table.shop_table td { border-color: var(--border) !important; color: rgba(255,255,255,0.7); }

.woocommerce a.button, .woocommerce button.button,
.woocommerce input.button, .woocommerce #place_order {
  background: var(--white) !important; color: var(--black) !important;
  font-size: 10px !important; font-weight: 700 !important;
  letter-spacing: 0.22em !important; text-transform: uppercase !important;
  border-radius: 0 !important; transition: background 0.2s !important;
}
.woocommerce a.button:hover, .woocommerce button.button:hover,
.woocommerce input.button:hover, .woocommerce #place_order:hover {
  background: #e0e0e0 !important; color: var(--black) !important;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  background: #1a1a1a !important; color: var(--white) !important;
  border-color: var(--border) !important; border-radius: 0 !important;
}
.woocommerce-checkout { background: var(--black); color: var(--white); }
.woocommerce-checkout h3 { color: var(--white); font-family: var(--font-heading); letter-spacing: 0.05em; }

.woocommerce div.product { background: var(--black); color: var(--white); padding-top: 100px; }
.woocommerce div.product .product_title { font-family: var(--font-heading); font-size: 52px; letter-spacing: 0.04em; }
.woocommerce div.product .price { font-size: 22px; color: var(--white); }
.woocommerce div.product .woocommerce-product-details__short-description { color: rgba(255,255,255,0.5); line-height: 2; }

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  color: rgba(255,255,255,0.5) !important; border-color: var(--border) !important; background: transparent !important;
}
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--white) !important; color: var(--black) !important;
}

/* ============================================================
   EVENTS PAGE TEMPLATE
============================================================ */
.events-page { padding-top: 100px; }
.events-filter-tabs { display: flex; gap: 0; border-bottom: 1px solid var(--border); margin-bottom: 60px; }
.filter-tab {
  padding: 14px 24px; font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  font-weight: 700; color: rgba(255,255,255,0.4); cursor: pointer;
  border-bottom: 2px solid transparent; transition: all 0.2s;
  background: none; border-top: none; border-left: none; border-right: none;
}
.filter-tab:hover, .filter-tab.active { color: var(--white); border-bottom-color: var(--white); }

/* ============================================================
   ANIMATIONS
============================================================ */
.fade-in-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .collection-section ul.products { grid-template-columns: repeat(3, 1fr) !important; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  #site-header { padding: 0 24px; }
  #primary-nav { display: none; }
  #primary-nav.open {
    display: flex; flex-direction: column;
    position: fixed; inset: 0; top: 64px;
    background: rgba(10,10,10,0.98);
    align-items: center; justify-content: center; gap: 36px;
    z-index: 199;
  }
  #primary-nav.open a { font-size: 24px; letter-spacing: 0.15em; }
  .menu-toggle { display: block; }

  .hero-content { padding: 0 24px 60px; }
  .hero-title { font-size: clamp(60px, 18vw, 100px); }

  .collection-section { padding: 60px 24px; }
  .collection-section ul.products { grid-template-columns: repeat(2, 1fr) !important; }

  .pickup-section { grid-template-columns: 1fr; }
  .pickup-info { padding: 48px 28px; }

  .events-section { padding: 60px 24px; }
  .events-grid { grid-template-columns: 1fr; }
  .event-card.featured { grid-column: 1; }

  .about-section { grid-template-columns: 1fr; }
  .about-visual { min-height: 300px; }
  .about-content { padding: 60px 28px; }

  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .sns-section { padding: 60px 24px; }

  #site-footer { padding: 60px 24px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .collection-section ul.products { grid-template-columns: repeat(2, 1fr) !important; }
  .hero-title { font-size: 56px; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
}
