/* ============================================
   .KICKS — NEOBRUTALIST E-COMMERCE
   Global Design System
============================================ */

:root {
  --black: #111111;
  --white: #ffffff;
  --offwhite: #f5f5f0;
  --green: #369e62;
  --border-width: 3px;
  --shadow-neo: 5px 5px 0px var(--black);
  --shadow-neo-lg: 8px 8px 0px var(--black);
  --shadow-neo-hover: 2px 2px 0px var(--black);
  --radius-none: 0px;
  --font-display: 'Bebas Neue', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --font-body: 'DM Sans', sans-serif;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-blur: blur(24px);
}

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

body {
  font-family: var(--font-body);
  padding: 0;
  margin: 0;
  background-color: var(--offwhite);
  overflow-x: hidden;
}

/* ============================================
   ANNOUNCEMENT BAR
============================================ */
.announcement-bar {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  white-space: nowrap;
  overflow: hidden;
  letter-spacing: 0.05em;
  border-bottom: var(--border-width) solid var(--green);
}

.announcement-bar strong { color: var(--green); }

/* ============================================
   NAV
============================================ */
nav {
  background-color: var(--black);
  color: var(--white);
  padding: 16px 50px;
  border-bottom: var(--border-width) solid #333;
  position: sticky;
  top: 0;
  z-index: 900;
}

.navTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

/* LOGO */
.kicks-logo {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -1px;
  line-height: 1;
  transition: color 0.15s;
}
.kicks-logo:hover { color: var(--green); }

/* Search */
.search {
  display: flex;
  align-items: center;
  background-color: #222;
  padding: 10px 20px;
  border: var(--border-width) solid #444;
  gap: 8px;
}
.searchInput {
  border: none;
  background-color: transparent;
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 13px;
  outline: none;
  width: 220px;
}
.searchInput::placeholder { color: #666; }

/* Nav right */
.nav-right-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.limitedOffer {
  font-family: var(--font-mono);
  font-size: 12px;
  border-bottom: 2px solid var(--green);
  cursor: pointer;
  color: var(--green);
  letter-spacing: 0.05em;
}

.contact-trigger {
  font-family: var(--font-mono);
  font-size: 12px;
  background: transparent;
  color: var(--white);
  border: var(--border-width) solid #555;
  padding: 8px 16px;
  cursor: pointer;
  letter-spacing: 0.08em;
  transition: all 0.15s;
}
.contact-trigger:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.cart-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  border: var(--border-width) solid var(--green);
  color: var(--white);
  padding: 8px 16px;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow-neo);
  transition: all 0.15s;
  position: relative;
}
.cart-trigger:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-neo-lg);
}

.cart-badge {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Nav Bottom */
.navBottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.menuItem {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  cursor: pointer;
  color: #888;
  padding: 8px 24px;
  border: var(--border-width) solid transparent;
  margin: 0;
  transition: all 0.15s;
  text-transform: uppercase;
}
.menuItem:hover, .menuItem.active {
  color: var(--white);
  border-color: #444;
  background: #1a1a1a;
  box-shadow: var(--shadow-neo);
}

/* ============================================
   NEO BUTTON SYSTEM
============================================ */
.btn-neo {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  background: var(--black);
  color: var(--white);
  border: var(--border-width) solid var(--black);
  padding: 14px 28px;
  cursor: pointer;
  box-shadow: var(--shadow-neo);
  transition: all 0.15s;
  text-transform: uppercase;
}
.btn-neo:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-neo-lg);
}
.btn-neo:active {
  transform: translate(2px, 2px);
  box-shadow: var(--shadow-neo-hover);
}

.btn-outline {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  background: transparent;
  color: var(--black);
  border: var(--border-width) solid var(--black);
  padding: 14px 28px;
  cursor: pointer;
  transition: all 0.15s;
}
.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

.btn-ghost {
  font-family: var(--font-mono);
  font-size: 12px;
  background: transparent;
  color: #666;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  padding: 8px;
  width: 100%;
  text-align: center;
}

/* ============================================
   SLIDER
============================================ */
.slider {
  background: url("https://images.unsplash.com/photo-1604147495798-57beb5d6af73?ixlib=rb-1.2.1&auto=format&fit=crop&w=2370&q=80");
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
  overflow: hidden;
  border-bottom: var(--border-width) solid var(--black);
}

.sliderWrapper {
  display: flex;
  width: 500vw;
  transition: all 1.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.sliderItem {
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 88vh;
}

.sliderBg {
  width: 750px;
  height: 750px;
  border-radius: 50%;
  position: absolute;
  border: var(--border-width) solid rgba(255,255,255,0.15);
}

.sliderImg { z-index: 1; }

.sliderTitle {
  position: absolute;
  top: 10%;
  right: 10%;
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 900;
  text-align: center;
  color: white;
  z-index: 1;
  line-height: 1;
  text-shadow: 4px 4px 0px rgba(0,0,0,0.4);
}

.sliderPrice {
  position: absolute;
  top: 10%;
  left: 10%;
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 400;
  color: white;
  border: var(--border-width) solid rgba(255,255,255,0.5);
  padding: 8px 20px;
  z-index: 1;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(4px);
}

.buyButton {
  position: absolute;
  top: 50%;
  right: 10%;
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: white;
  border: var(--border-width) solid white;
  background-color: black;
  z-index: 1;
  cursor: pointer;
  padding: 16px 32px;
  box-shadow: 6px 6px 0px rgba(255,255,255,0.3);
  letter-spacing: 0.08em;
  transition: all 0.15s;
}
.buyButton:hover {
  background-color: white;
  color: black;
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0px rgba(255,255,255,0.4);
}

.sliderItem:nth-child(1) .sliderBg { background-color: #369e62; }
.sliderItem:nth-child(2) .sliderBg { background-color: rebeccapurple; }
.sliderItem:nth-child(3) .sliderBg { background-color: teal; }
.sliderItem:nth-child(4) .sliderBg { background-color: cornflowerblue; }
.sliderItem:nth-child(5) .sliderBg { background-color: rgb(124, 115, 80); }
.sliderItem:nth-child(1) .sliderPrice { color: #369e62; }
.sliderItem:nth-child(2) .sliderPrice { color: white; }
.sliderItem:nth-child(3) .sliderPrice { color: teal; }
.sliderItem:nth-child(4) .sliderPrice { color: cornflowerblue; }
.sliderItem:nth-child(5) .sliderPrice { color: cornsilk; }

/* ============================================
   FEATURES
============================================ */
.features {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 60px 50px;
  border-top: var(--border-width) solid var(--black);
  border-bottom: var(--border-width) solid var(--black);
  background: var(--white);
  gap: 20px;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 24px 16px;
  border: var(--border-width) solid var(--black);
  box-shadow: var(--shadow-neo);
  background: var(--offwhite);
  transition: all 0.15s;
}
.feature:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-neo-lg);
}

.featureIcon {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}

.featureTitle {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  color: var(--black);
}

.featureDesc {
  color: #666;
  font-size: 13px;
  line-height: 1.6;
}

/* ============================================
   PRODUCT SECTION
============================================ */
.product {
  min-height: 100vh;
  background-color: whitesmoke;
  position: relative;
  clip-path: polygon(0 12%, 100% 0, 100% 100%, 0% 100%);
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.productImg {
  width: 50%;
  filter: drop-shadow(8px 8px 0px rgba(0,0,0,0.15));
  transition: filter 0.3s;
}
.productImg:hover { filter: drop-shadow(12px 12px 0px rgba(0,0,0,0.25)); }

.productDetails {
  position: absolute;
  top: 12%;
  right: 0;
  width: 42%;
  padding: 50px;
}

.product-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--white);
  background: var(--green);
  display: inline-block;
  padding: 4px 12px;
  border: var(--border-width) solid var(--black);
  box-shadow: 3px 3px 0px var(--black);
  margin-bottom: 16px;
}

.productTitle {
  font-family: var(--font-display);
  font-size: 90px;
  font-weight: 400;
  color: var(--black);
  margin: 0 0 8px 0;
  line-height: 0.9;
  letter-spacing: -1px;
}

.productPrice {
  font-family: var(--font-mono);
  font-size: 36px;
  color: var(--black);
  margin: 12px 0;
  font-weight: 700;
}

.productDesc {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 24px;
}

.product-meta {
  margin-bottom: 16px;
}

.meta-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #888;
  display: block;
  margin-bottom: 8px;
}

.colors { display: flex; gap: 10px; margin-bottom: 4px; }

.color {
  width: 32px;
  height: 32px;
  border: var(--border-width) solid var(--black);
  box-shadow: 3px 3px 0px var(--black);
  cursor: pointer;
  transition: all 0.15s;
  background-color: black;
}
.color:last-child { background-color: darkblue; }
.color:hover, .color.selected {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px var(--black);
}

.sizes { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 4px; }

.size {
  padding: 8px 14px;
  border: var(--border-width) solid var(--black);
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  background: var(--white);
  transition: all 0.12s;
  box-shadow: 3px 3px 0px var(--black);
}
.size:hover, .size.active {
  background-color: var(--black);
  color: var(--white);
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px var(--black);
}

.product-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 20px;
}

.productButton {
  flex: 1;
  padding: 16px 28px;
  background: var(--green);
  color: var(--white);
  border: var(--border-width) solid var(--black);
  box-shadow: var(--shadow-neo);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.15s;
}
.productButton:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-neo-lg);
}

.wishlistBtn {
  padding: 16px 20px;
}

.product-trust {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.product-trust span {
  font-size: 12px;
  color: #666;
  font-family: var(--font-mono);
}

/* ============================================
   ALL PRODUCTS GRID
============================================ */
.all-products-section {
  padding: 80px 50px;
  background: var(--white);
  border-top: var(--border-width) solid var(--black);
}

.section-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--black);
  margin: 0;
  white-space: nowrap;
}

.section-line {
  flex: 1;
  height: var(--border-width);
  background: var(--black);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.product-card {
  border: var(--border-width) solid var(--black);
  box-shadow: var(--shadow-neo);
  background: var(--offwhite);
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
}
.product-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow-neo-lg);
}

.product-card-img-wrap {
  position: relative;
  background: whitesmoke;
  padding: 24px;
  border-bottom: var(--border-width) solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 240px;
}

.product-card-img {
  width: 90%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}
.product-card:hover .product-card-img { transform: scale(1.05) rotate(-2deg); }

.product-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  background: var(--black);
  color: var(--white);
  padding: 3px 8px;
  letter-spacing: 0.1em;
}

.product-card-body {
  padding: 20px;
}

.product-card-title {
  font-family: var(--font-display);
  font-size: 32px;
  margin: 0 0 4px 0;
  color: var(--black);
  line-height: 1;
}

.product-card-price {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 18px;
  color: var(--black);
  margin-bottom: 16px;
}

.product-card-colors {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}
.product-card-color {
  width: 18px;
  height: 18px;
  border: 2px solid var(--black);
}

.product-card-btn {
  width: 100%;
  padding: 12px;
  background: var(--black);
  color: var(--white);
  border: var(--border-width) solid var(--black);
  box-shadow: 3px 3px 0px var(--green);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.15s;
}
.product-card-btn:hover {
  background: var(--green);
  box-shadow: 3px 3px 0px var(--black);
}

/* ============================================
   GALLERY
============================================ */
.gallery {
  padding: 60px 50px;
  display: flex;
  gap: 0;
  border-top: var(--border-width) solid var(--black);
  border-bottom: var(--border-width) solid var(--black);
}

.galleryItem {
  flex: 1;
  padding: 24px;
  border-right: var(--border-width) solid var(--black);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.galleryItem:last-child { border-right: none; }

.galleryTitle {
  font-family: var(--font-display);
  font-size: 36px;
  margin: 0;
  color: var(--black);
}

.galleryImg {
  width: 100%;
  border: var(--border-width) solid var(--black);
  box-shadow: var(--shadow-neo);
  display: block;
}

/* ============================================
   NEW SEASON
============================================ */
.newSeason {
  display: flex;
  border-top: var(--border-width) solid var(--black);
}

.nsItem {
  flex: 1;
  background-color: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: var(--border-width) solid #333;
}
.nsItem:last-child { border-right: none; }

.nsTextItem { padding: 60px 40px; }

.nsImg {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  filter: brightness(0.8);
}

.nsTitleSm {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--green);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.nsTitle {
  font-family: var(--font-display);
  font-size: 48px;
  margin: 0;
  line-height: 1;
}

.nsButton {
  margin-top: 32px;
  background: var(--white) !important;
  color: var(--black) !important;
  border-color: var(--white) !important;
  box-shadow: 5px 5px 0px var(--green) !important;
  padding: 16px 32px;
}
.nsButton:hover {
  background: var(--green) !important;
  color: var(--white) !important;
  border-color: var(--green) !important;
}

/* ============================================
   FOOTER
============================================ */
footer {
  display: flex;
  border-top: var(--border-width) solid var(--black);
  background: var(--white);
}

.footerLeft {
  flex: 2;
  display: flex;
  justify-content: space-between;
  padding: 50px;
  border-right: var(--border-width) solid var(--black);
  gap: 32px;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kicks-logo-footer {
  font-size: 36px;
}

.footer-tagline {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.fMenuTitle {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--black);
  padding-bottom: 8px;
}

.fList {
  padding: 0;
  list-style: none;
  margin: 0;
}

.fListItem {
  margin-bottom: 10px;
  color: #666;
  cursor: pointer;
  font-size: 14px;
  transition: color 0.15s;
}
.fListItem:hover { color: var(--black); text-decoration: underline; }

.footerRight {
  flex: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}

.fMail {
  display: flex;
  border: var(--border-width) solid var(--black);
  box-shadow: var(--shadow-neo);
  overflow: hidden;
}

.fInput {
  padding: 12px 16px;
  border: none;
  background: var(--offwhite);
  font-family: var(--font-mono);
  font-size: 12px;
  flex: 1;
  outline: none;
}

.fButton {
  padding: 12px 16px;
  background: var(--black);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.fButton:hover { background: var(--green); }

.fIcons { display: flex; gap: 12px; }

.fIcon {
  width: 28px;
  height: 28px;
  cursor: pointer;
  border: var(--border-width) solid var(--black);
  padding: 4px;
  transition: all 0.15s;
  box-shadow: 2px 2px 0px var(--black);
}
.fIcon:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0px var(--black);
}

.copyright {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #888;
  letter-spacing: 0.05em;
}

/* ============================================
   CART DRAWER
============================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: -480px;
  width: 460px;
  height: 100vh;
  background: var(--white);
  z-index: 1001;
  border-left: var(--border-width) solid var(--black);
  box-shadow: -8px 0 0px var(--black);
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  overflow: hidden;
}
.cart-drawer.open { right: 0; }

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: var(--border-width) solid var(--black);
  background: var(--black);
  color: var(--white);
}

.cart-title {
  font-family: var(--font-display);
  font-size: 32px;
  margin: 0;
  letter-spacing: 0.05em;
}

.cart-close-btn {
  background: transparent;
  border: var(--border-width) solid #555;
  color: var(--white);
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-close-btn:hover { background: var(--white); color: var(--black); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 16px;
  color: #888;
  font-family: var(--font-mono);
  font-size: 13px;
  text-align: center;
  line-height: 1.7;
}
.cart-empty-icon { font-size: 48px; }

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 2px solid #eee;
  align-items: center;
}

.cart-item-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: var(--offwhite);
  border: var(--border-width) solid var(--black);
  padding: 4px;
  flex-shrink: 0;
}

.cart-item-details { flex: 1; }

.cart-item-title {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0 0 4px 0;
  color: var(--black);
}

.cart-item-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #888;
  margin-bottom: 8px;
}

.cart-item-price {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 15px;
  color: var(--black);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 8px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border: var(--border-width) solid var(--black);
  background: var(--white);
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.1s;
  line-height: 1;
}
.qty-btn:hover { background: var(--black); color: var(--white); }

.qty-value {
  width: 36px;
  height: 28px;
  border-top: var(--border-width) solid var(--black);
  border-bottom: var(--border-width) solid var(--black);
  border-left: none;
  border-right: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
}

.cart-remove {
  margin-left: 8px;
  background: none;
  border: none;
  color: #aaa;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 4px;
  transition: color 0.15s;
}
.cart-remove:hover { color: red; }

.cart-footer {
  padding: 20px 28px;
  border-top: var(--border-width) solid var(--black);
  background: var(--offwhite);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 15px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--black);
}

.btn-checkout {
  width: 100%;
  text-align: center;
  padding: 16px;
  font-size: 15px;
  background: var(--green);
  border-color: var(--black);
  box-shadow: 5px 5px 0px var(--black);
}
.btn-checkout:hover {
  background: var(--black);
  box-shadow: 8px 8px 0px var(--green);
}

/* ============================================
   GLASSMORPHIC CHECKOUT
============================================ */
.checkout-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.checkout-overlay.open { display: flex; }

.checkout-modal {
  width: 100%;
  max-width: 960px;
  max-height: 92vh;
  display: flex;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--glass-border);
  border-radius: 2px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
  animation: checkoutSlideIn 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes checkoutSlideIn {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.checkout-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  background: rgba(255,255,255,0.15);
  border: 1px solid var(--glass-border);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: all 0.2s;
}
.checkout-close:hover { background: rgba(255,255,255,0.3); }

/* Left Panel */
.checkout-left {
  flex: 1;
  background: linear-gradient(135deg, #111 0%, #1a2e22 50%, #0d1a14 100%);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.checkout-left::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(54,158,98,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.checkout-brand {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--white);
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}

.checkout-heading {
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--white);
  margin: 0 0 32px 0;
  line-height: 1;
}

.checkout-order-summary {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.checkout-summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  font-family: var(--font-body);
  font-size: 14px;
}
.checkout-summary-item strong { color: var(--white); }

.checkout-total-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.3);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
}

.checkout-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.badge {
  font-family: var(--font-mono);
  font-size: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  padding: 6px 12px;
  backdrop-filter: blur(4px);
  letter-spacing: 0.05em;
}

/* Right Panel */
.checkout-right {
  flex: 1.2;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  background: rgba(245,245,240,0.95);
  padding: 48px 44px;
  overflow-y: auto;
}

.checkout-steps {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 36px;
}

.step {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #aaa;
  cursor: default;
  transition: color 0.2s;
}
.step.active { color: var(--black); }
.step.completed { color: var(--green); }

.step-divider {
  color: #ccc;
  font-size: 10px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--black);
  margin: 0 0 28px 0;
}

.checkout-step-content { display: block; }
.checkout-step-content.hidden { display: none; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-group label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #888;
  text-transform: uppercase;
}

.form-row {
  display: flex;
  gap: 16px;
}
.form-row .form-group { flex: 1; }

.glass-input {
  padding: 14px 16px;
  border: var(--border-width) solid var(--black);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: all 0.15s;
  box-shadow: 3px 3px 0px #ccc;
}
.glass-input:focus {
  box-shadow: 3px 3px 0px var(--green);
  border-color: var(--green);
}
.glass-input::placeholder { color: #bbb; }

.delivery-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.delivery-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: var(--border-width) solid #ddd;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
  transition: all 0.15s;
}
.delivery-option:hover { border-color: var(--black); }
.delivery-option input[type="radio"] { accent-color: var(--green); }

.card-icons-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.card-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  background: #f0fdf4;
  border: 1px solid var(--green);
  color: var(--green);
  padding: 4px 10px;
  letter-spacing: 0.05em;
  margin-left: auto;
}

.btn-row {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.btn-glass-next {
  flex: 1;
  padding: 16px;
  background: var(--black);
  color: var(--white);
  border: var(--border-width) solid var(--black);
  box-shadow: 4px 4px 0px var(--green);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.15s;
}
.btn-glass-next:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px var(--green);
}

.btn-glass-back {
  padding: 16px 20px;
  background: transparent;
  color: var(--black);
  border: var(--border-width) solid var(--black);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
}
.btn-glass-back:hover { background: #eee; }

.btn-glass-pay {
  flex: 1;
  padding: 16px;
  background: var(--green);
  color: var(--white);
  border: var(--border-width) solid var(--black);
  box-shadow: 4px 4px 0px var(--black);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.15s;
}
.btn-glass-pay:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px var(--black);
}

/* Success State */
.success-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 0;
  gap: 16px;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: var(--green);
  border: var(--border-width) solid var(--black);
  box-shadow: var(--shadow-neo);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--white);
  animation: successPop 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes successPop {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

.success-state h3 {
  font-family: var(--font-display);
  font-size: 48px;
  margin: 0;
}

.success-state p {
  color: #666;
  line-height: 1.7;
  font-size: 15px;
  margin: 0;
}

/* ============================================
   CONTACT MODAL
============================================ */
.contact-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.contact-overlay.open { display: flex; }

.contact-modal {
  width: 100%;
  max-width: 920px;
  max-height: 90vh;
  background: var(--white);
  border: var(--border-width) solid var(--black);
  box-shadow: 12px 12px 0px var(--black);
  position: relative;
  overflow: hidden;
  animation: checkoutSlideIn 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  background: var(--black);
  border: var(--border-width) solid var(--black);
  color: var(--white);
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.contact-close:hover { background: red; }

.contact-modal-inner {
  display: flex;
  min-height: 560px;
  overflow-y: auto;
  max-height: 90vh;
}

/* Contact Left */
.contact-left-panel {
  flex: 1;
  background: var(--black);
  color: var(--white);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.contact-left-panel::before {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(54,158,98,0.25) 0%, transparent 70%);
}

.contact-brand {
  font-family: var(--font-display);
  font-size: 32px;
  margin-bottom: 24px;
}

.contact-heading {
  font-family: var(--font-display);
  font-size: 64px;
  margin: 0 0 40px 0;
  line-height: 1;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }

.contact-info-item strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 2px;
}

.contact-info-item span {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.contact-social {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.social-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  border: var(--border-width) solid #444;
  padding: 8px 14px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: all 0.15s;
}
.social-pill:hover {
  background: var(--green);
  border-color: var(--green);
}

/* Contact Right */
.contact-right-panel {
  flex: 1.2;
  padding: 48px 44px;
  overflow-y: auto;
}

.contact-form-title {
  font-family: var(--font-display);
  font-size: 36px;
  margin: 0 0 28px 0;
  color: var(--black);
}

.neo-input {
  padding: 14px 16px;
  border: var(--border-width) solid var(--black);
  background: var(--offwhite);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  width: 100%;
  transition: all 0.15s;
  box-shadow: 3px 3px 0px #ccc;
  -webkit-appearance: none;
}
.neo-input:focus {
  box-shadow: 3px 3px 0px var(--green);
  border-color: var(--green);
}
.neo-input::placeholder { color: #bbb; }

.neo-textarea {
  min-height: 120px;
  resize: vertical;
  font-family: var(--font-body);
}

.btn-contact-submit {
  width: 100%;
  padding: 16px;
  margin-top: 8px;
  background: var(--green);
  color: var(--white);
  border-color: var(--black);
  box-shadow: 5px 5px 0px var(--black);
}
.btn-contact-submit:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0px var(--black);
}

/* ============================================
   SVG ICON UTILITIES
============================================ */
.btn-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
  flex-shrink: 0;
}

.trust-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  flex-shrink: 0;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
  margin-top: 2px;
}

.cart-empty-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.product-trust span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ============================================
   TOAST
============================================ */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--black);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 14px 28px;
  border: var(--border-width) solid var(--green);
  box-shadow: 5px 5px 0px var(--green);
  z-index: 3000;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
  letter-spacing: 0.05em;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================================
   RESPONSIVE
============================================ */
@media screen and (max-width: 768px) {
  nav { padding: 16px 20px; }
  .search { display: none; }
  .navBottom { flex-wrap: wrap; justify-content: flex-start; }
  .menuItem {
    margin: 4px;
    font-size: 12px;
    padding: 8px 12px;
  }
  .slider { clip-path: none; }
  .sliderImg { width: 85%; }
  .sliderBg { width: 100%; height: 100%; border-radius: 0; }
  .sliderTitle { display: none; }
  .sliderPrice { bottom: 0; top: unset; left: 0; font-size: 40px; }
  .buyButton { top: 12px; right: 12px; font-size: 14px; padding: 12px 16px; }
  .features { flex-direction: column; padding: 30px 20px; }
  .product { clip-path: none; flex-direction: column; padding-top: 40px; }
  .productImg { width: 80%; }
  .productDetails { position: relative; top: 0; width: 100%; padding: 20px; }
  .productTitle { font-size: 56px; }
  .all-products-section { padding: 40px 20px; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .gallery { display: none; }
  .newSeason { flex-direction: column; }
  .nsTextItem { padding: 40px 24px; }
  footer { flex-direction: column; }
  .footerLeft { flex-wrap: wrap; padding: 30px 20px; gap: 24px; border-right: none; border-bottom: var(--border-width) solid var(--black); }
  .footerRight { padding: 30px 20px; }
  .cart-drawer { width: 100%; right: -100%; }
  .checkout-modal { flex-direction: column; max-height: 100vh; }
  .checkout-left { padding: 32px 24px; min-height: auto; }
  .checkout-heading { font-size: 40px; }
  .checkout-right { padding: 32px 24px; }
  .contact-modal-inner { flex-direction: column; }
  .contact-left-panel { padding: 32px 24px; }
  .contact-heading { font-size: 40px; }
  .contact-right-panel { padding: 32px 24px; }
  .kicks-logo { font-size: 32px; }
  .announcement-bar { font-size: 10px; gap: 12px; }
}

@media screen and (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .btn-row { flex-direction: column; }
  .product-actions { flex-direction: column; }
  .section-title { font-size: 40px; }
  .checkout-heading { font-size: 32px; }
}
