/* =====================================================
   JENZYA — UNIFIED STYLESHEET
   style.css (Merged: style + women + collection + about + contact)
   ===================================================== */
/* ===================================================
   JENZYA — MAIN STYLESHEET
   style.css
   =================================================== */

/* --- RESET & BASE --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --accent: #FFB800;
  --accent-dark: #E6A500;
  --black: #111111;
  --white: #FFFFFF;
  --gray-light: #F5F5F5;
  --gray-mid: #E8E8E8;
  --gray-text: #888888;
  --text: #1a1a1a;
  --font-display: 'Bebas Neue', sans-serif;
  --font-cond: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --nav-h: 80px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
svg { display: block; }

/* ===================================================
   PAGE TRANSITION — Smooth fade between pages
   =================================================== */
/* Page loads with fade-in */
body {
  animation: pageIn 0.38s cubic-bezier(0.4, 0, 0.2, 1) both;
}
@keyframes pageIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Transition overlay for navigating away */
#page-transition-overlay {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 99999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
#page-transition-overlay.out {
  opacity: 1;
  pointer-events: all;
}

/* ===================================================
   PERFORMANCE — GPU acceleration for animated elements
   =================================================== */
.hero-shoe,
.hero-shoe-img,
.product-card,
.trend-card,
.trend-bg,
.mobile-menu,
.cart-sidebar,
.search-overlay,
.footer-logo-img {
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Smooth image rendering */
img {
  image-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

/* Loading skeleton shimmer for images */
.card-img-wrap img,
.trend-shoe-img,
.story-img-cell img,
.lookbook-card img {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
}
.card-img-wrap img[src],
.trend-shoe-img[src],
.story-img-cell img[src],
.lookbook-card img[src] {
  background: none;
}

/* ===================================================
   NAVBAR
   =================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  z-index: 1000;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  border-bottom-color: var(--gray-mid);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 68px;
  width: auto;
  display: block;
  transition: opacity 0.2s ease;
}

.nav-logo img:hover {
  opacity: 0.8;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 38px;
}

.nav-links a {
  font-family: var(--font-cond);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--gray-text);
  transition: color var(--transition);
  position: relative;
  text-transform: uppercase;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--black);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

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

.btn-icon {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gray-text);
  transition: color var(--transition);
  text-transform: uppercase;
}

.btn-icon:hover { color: var(--black); }

.cart-btn {
  color: var(--black);
  font-weight: 700;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  padding: 24px 40px;
  transform: translateY(-110%);
  transition: transform var(--transition);
  z-index: 999;
  border-bottom: 1px solid var(--gray-mid);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.mobile-menu.open { transform: translateY(0); }

.mobile-menu ul { display: flex; flex-direction: column; gap: 16px; }

.mobile-menu a {
  font-family: var(--font-cond);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--black);
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.search-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.search-box {
  background: var(--white);
  border-radius: 8px;
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  width: 560px;
  max-width: 90vw;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.search-box input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text);
  background: transparent;
}

.search-box input::placeholder { color: #ccc; }

.search-close {
  font-size: 20px;
  color: var(--gray-text);
  transition: color var(--transition);
}

.search-close:hover { color: var(--black); }

/* ===================================================
   HERO
   =================================================== */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  background: var(--gray-light);
  overflow: hidden;
  position: relative;
}

.hero-content {
  padding: 60px 0 60px 60px;
  position: relative;
  z-index: 2;
}

.hero-label {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 12px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.0;
  color: var(--black);
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.hero-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-text);
  max-width: 340px;
  margin-bottom: 36px;
  font-weight: 400;
}

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background var(--transition), transform var(--transition);
}

.btn-primary:hover {
  background: #333;
  transform: translateY(-2px);
}

.hero-dots {
  display: flex;
  gap: 8px;
  margin-top: 36px;
}

.dot {
  width: 26px;
  height: 6px;
  border-radius: 3px;
  background: var(--gray-mid);
  cursor: pointer;
  transition: background var(--transition), width var(--transition);
}

.dot.active {
  background: var(--accent);
  width: 36px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 100%;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-text {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(96px, 13vw, 176px);
  letter-spacing: 6px;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(0,0,0,0.09);
  line-height: 0.88;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
  transition: opacity 0.35s ease;
}

.hero-accent-bar {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 38%;
  background: var(--accent);
  clip-path: polygon(40% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.18;
}

.hero-shoe-wrap {
  position: relative;
  z-index: 2;
  width: 85%;
  max-width: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-shoe {
  animation: floatShoe 4s ease-in-out infinite;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.22));
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes floatShoe {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-16px) rotate(-2deg); }
}

.shoe-svg { width: 100%; height: auto; }

.hero-tag {
  position: absolute;
  bottom: 60px;
  right: 30px;
  text-align: right;
  z-index: 3;
}

.tag-sub {
  display: block;
  font-family: var(--font-cond);
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gray-text);
}

.tag-main {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 52px);
  color: var(--black);
  letter-spacing: 2px;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: revealUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.reveal:nth-child(1) { animation-delay: 0.1s; }
.reveal:nth-child(2) { animation-delay: 0.25s; }
.reveal:nth-child(3) { animation-delay: 0.4s; }
.reveal:nth-child(4) { animation-delay: 0.55s; }

@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ===================================================
   TOP PICKS
   =================================================== */
.top-picks {
  padding: 80px 60px;
  background: var(--white);
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.section-title {
  font-family: var(--font-cond);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--black);
}

.section-nav {
  display: flex;
  gap: 8px;
}

.nav-arrow {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--gray-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-text);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.nav-arrow:hover {
  border-color: var(--black);
  color: var(--white);
  background: var(--black);
}

/* Slider */
.picks-slider {
  overflow: hidden;
  cursor: grab;
  position: relative;
  -webkit-overflow-scrolling: auto;
}

.picks-slider:active { cursor: grabbing; }

.picks-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Product Card */
.product-card {
  min-width: 280px;
  flex-shrink: 0;
  background: var(--gray-light);
  border-radius: 12px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.card-img-wrap {
  position: relative;
  padding: 30px 20px 20px;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  overflow: hidden;
}

.card-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(255,184,0,0.08));
}

.card-shoe-svg {
  width: 100%;
  max-width: 240px;
  transition: transform var(--transition);
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.15));
}

.product-card:hover .card-shoe-svg {
  transform: rotate(-5deg) scale(1.05);
}

.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 8px;
  border-radius: 3px;
}

.card-badge.sale {
  background: #E53935;
}

.card-info {
  padding: 16px 20px 20px;
  background: var(--white);
}

.card-name {
  font-family: var(--font-cond);
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}

.card-price {
  font-size: 14px;
  color: var(--gray-text);
  margin-bottom: 14px;
}

.btn-add {
  width: 100%;
  padding: 10px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background var(--transition);
}

.btn-add:hover { background: var(--accent); color: var(--black); }

/* Slider Progress */
.slider-progress {
  height: 3px;
  background: var(--gray-mid);
  border-radius: 2px;
  margin-top: 32px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--black);
  border-radius: 2px;
  width: 33.33%;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================================
   TRENDING NOW
   =================================================== */
.trending {
  padding: 80px 60px;
  background: var(--gray-light);
}

.trending-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 36px;
}

/* Trend Cards */
.trend-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  transition: transform var(--transition);
}

.trend-card:hover { transform: scale(1.02); }

.trend-big {
  grid-column: 1 / -1;
  height: 360px;
}

.trend-small {
  height: 220px;
}

/* Backgrounds */
.trend-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.trend-card:hover .trend-bg { transform: scale(1.04); }

.trend-bg-1 {
  background: linear-gradient(135deg, #c8b6f0 0%, #b4d4f5 50%, #f5d0b4 100%);
}

.trend-bg-2 {
  background: linear-gradient(135deg, #5d4037 0%, #4e342e 100%);
}

.trend-bg-3 {
  background: linear-gradient(135deg, #455a64 0%, #37474f 100%);
}

.trend-content {
  position: relative;
  z-index: 3;
  padding: 28px 32px;
}

.trend-label {
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}

.trend-name {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.trend-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  max-width: 280px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn-trend {
  display: inline-block;
  padding: 11px 28px;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.btn-trend:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.trend-name-sm {
  font-family: var(--font-cond);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 14px;
}

.btn-trend-sm {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}

.btn-trend-sm:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* Trend Shoes */
.trend-shoe {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
}

.trend-shoe-big {
  right: 0;
  bottom: 0;
  width: 48%;
  max-width: 420px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 28px 20px 0;
}

.trend-shoe-sm {
  right: 0;
  bottom: 0;
  width: 58%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 14px 10px 0;
}

/* ===================================================
   CUSTOM DESIGN
   =================================================== */
.custom-design {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 80px 60px;
  background: var(--white);
  overflow: hidden;
  position: relative;
}

.custom-design::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 50%;
  background: var(--accent);
  clip-path: polygon(60% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.12;
}

.custom-content { padding-right: 60px; }

.custom-label {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 12px;
}

.custom-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.5vw, 62px);
  line-height: 1.0;
  color: var(--black);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.custom-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-text);
  max-width: 380px;
  margin-bottom: 36px;
}

.custom-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.custom-accent {
  position: absolute;
  top: 0; right: 0;
  width: 70%;
  height: 80%;
  background: linear-gradient(135deg, var(--accent) 0%, #FF8C00 100%);
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.12;
  border-radius: 8px;
}

.custom-shoe-svg {
  width: 100%;
  max-width: 460px;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.2));
  animation: floatShoe 5s ease-in-out infinite;
}

/* ===================================================
   CART SIDEBAR
   =================================================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  max-width: 100vw;
  height: 100vh;
  background: var(--white);
  z-index: 1600;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 40px rgba(0,0,0,0.15);
}

.cart-sidebar.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--gray-mid);
}

.cart-header h3 {
  font-family: var(--font-cond);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
}

.cart-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  color: var(--gray-text);
  transition: background var(--transition), color var(--transition);
}

.cart-close:hover {
  background: var(--gray-light);
  color: var(--black);
}

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

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  gap: 16px;
  color: var(--gray-text);
  font-family: var(--font-cond);
  font-size: 15px;
  letter-spacing: 1px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-light);
}

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

.cart-item-name {
  font-family: var(--font-cond);
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}

.cart-item-price {
  font-size: 13px;
  color: var(--gray-text);
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  color: var(--gray-text);
  transition: all var(--transition);
}

.qty-btn:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.qty-num {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 15px;
  min-width: 20px;
  text-align: center;
}

.cart-item-remove {
  color: var(--gray-text);
  font-size: 18px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background var(--transition), color var(--transition);
}

.cart-item-remove:hover {
  background: #fee;
  color: #E53935;
}

.cart-footer {
  padding: 20px 28px 30px;
  border-top: 1px solid var(--gray-mid);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-cond);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--black);
}

.btn-checkout {
  width: 100%;
  padding: 16px;
  background: #25D366;
  color: var(--white);
  font-family: var(--font-cond);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}

.btn-checkout:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37,211,102,0.4);
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 60px 60px 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 4px;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.footer-logo::after {
  content: '●';
  font-size: 10px;
  color: var(--accent);
  position: absolute;
  top: -4px;
  right: -4px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  margin-top: 20px;
}

.footer-col h4 {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--accent); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.social-icon:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255,184,0,0.1);
}

.footer-bottom {
  display: flex;
  justify-content: flex-end;
  padding-top: 24px;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.5px;
}

/* ===================================================
   SCROLL REVEAL
   =================================================== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================
   TOAST NOTIFICATION
   =================================================== */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--black);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 40px;
  font-family: var(--font-cond);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  border-left: 4px solid var(--accent);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  white-space: nowrap;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .navbar { padding: 0 28px; }
  .hero { padding-top: var(--nav-h); }
  .hero-content { padding: 50px 0 50px 40px; }
  .top-picks, .trending, .custom-design { padding: 60px 40px; }
  .footer { padding: 50px 40px 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn-icon:not(.cart-btn) { display: none; }
  .hamburger { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: auto;
  }
  .hero-content { padding: 50px 28px 30px; }
  .hero-visual { min-height: 300px; }
  .hero-bg-text { font-size: 70px; }

  .top-picks, .trending, .custom-design, .footer { padding: 50px 28px; }

  .trending-grid {
    grid-template-columns: 1fr;
  }
  .trend-big { grid-column: 1; height: 300px; }

  .custom-design {
    grid-template-columns: 1fr;
  }
  .custom-content { padding-right: 0; margin-bottom: 40px; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand { grid-column: 1 / -1; }

  .cart-sidebar { width: 100vw; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .footer-inner { grid-template-columns: 1fr; }
  .picks-track { gap: 16px; }
  .product-card { min-width: 240px; }
}

/* ===================================================
   REAL SHOE IMAGES — FLOATING STYLE
   =================================================== */

/* ---- Floating keyframe ---- */
@keyframes floatShoe {
  0%, 100% { transform: translateY(0px) rotate(-5deg); filter: drop-shadow(0 20px 30px rgba(0,0,0,0.22)); }
  50%       { transform: translateY(-14px) rotate(-3deg); filter: drop-shadow(0 34px 40px rgba(0,0,0,0.12)); }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0px) scale(1); filter: drop-shadow(0 14px 22px rgba(0,0,0,0.18)); }
  50%       { transform: translateY(-10px) scale(1.02); filter: drop-shadow(0 26px 32px rgba(0,0,0,0.10)); }
}

@keyframes floatTrend {
  0%, 100% { transform: translateY(0px) rotate(-8deg); filter: drop-shadow(0 16px 24px rgba(0,0,0,0.20)); }
  50%       { transform: translateY(-12px) rotate(-5deg); filter: drop-shadow(0 28px 36px rgba(0,0,0,0.10)); }
}

/* ---- Hero shoe image ---- */
.hero-shoe-img {
  width: 90%;
  max-width: 480px;
  height: auto;
  max-height: 400px;
  display: block;
  object-fit: contain;
  mix-blend-mode: multiply;
  animation: floatShoe 3.8s ease-in-out infinite;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.22));
  transform-origin: center bottom;
  user-select: none;
  pointer-events: none;
  margin: 0 auto;
}

.hero-shoe-shadow {
  width: 60%;
  height: 20px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.18) 0%, transparent 70%);
  margin: -10px auto 0;
  border-radius: 50%;
  animation: floatShoe 3.8s ease-in-out infinite;
  animation-delay: 0.1s;
  filter: none !important;
}

/* ---- Product card images ---- */
.card-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--gray-light);
  border-radius: 12px 12px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  padding: 16px;
}

.card-shoe-img {
  width: 85%;
  max-width: 220px;
  height: 160px;
  object-fit: contain;
  mix-blend-mode: multiply;
  display: block;
  animation: floatCard 3.2s ease-in-out infinite;
  filter: drop-shadow(0 14px 22px rgba(0,0,0,0.18));
  user-select: none;
  pointer-events: none;
}

/* Stagger each card's animation */
.product-card:nth-child(1) .card-shoe-img { animation-delay: 0s; }
.product-card:nth-child(2) .card-shoe-img { animation-delay: 0.4s; }
.product-card:nth-child(3) .card-shoe-img { animation-delay: 0.8s; }
.product-card:nth-child(4) .card-shoe-img { animation-delay: 1.2s; }
.product-card:nth-child(5) .card-shoe-img { animation-delay: 1.6s; }

/* Hover — pause float, zoom in */
.product-card:hover .card-shoe-img {
  animation-play-state: paused;
  transform: translateY(-8px) scale(1.08);
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.22));
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), filter 0.4s ease;
}

/* ---- Trending section images ---- */
.trend-shoe-img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  display: block;
  animation: floatTrend 4s ease-in-out infinite;
  filter: drop-shadow(0 16px 24px rgba(0,0,0,0.20));
  user-select: none;
  pointer-events: none;
}

.trend-shoe-big .trend-shoe-img  { 
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  animation-duration: 4.2s; 
}
.trend-shoe-sm .trend-shoe-img  { 
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  animation-duration: 3.5s; 
  animation-delay: 0.6s; 
}

.trend-card:hover .trend-shoe-img {
  animation-play-state: paused;
  transform: translateY(-10px) scale(1.06) rotate(-3deg);
  filter: drop-shadow(0 28px 44px rgba(0,0,0,0.28));
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), filter 0.5s ease;
}

.trend-shoe-img {
  transition: transform 0.5s ease, filter 0.5s ease;
}

.trend-card { transition: transform var(--transition), box-shadow var(--transition); }
.trend-card:hover { 
  transform: scale(1.02); 
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* ---- Custom section image ---- */
.custom-shoe-img {
  width: 90%;
  max-width: 460px;
  height: auto;
  max-height: 380px;
  display: block;
  object-fit: contain;
  mix-blend-mode: multiply;
  animation: floatShoe 4.4s ease-in-out infinite;
  animation-delay: 0.5s;
  filter: drop-shadow(0 20px 32px rgba(0,0,0,0.18));
  user-select: none;
  pointer-events: none;
  position: relative;
  z-index: 2;
  margin: 0 auto;
}
/* =====================================================
   WOMEN PAGE — THEME & LAYOUT OVERRIDES
   Applied when <body class="page-women">
   ===================================================== */

body.page-women {
  --accent: #FF6B9D;
  --accent-dark: #e0527f;
  --accent-light: #FFADC8;
  --gray-light: #FDF5F7;
  --gray-mid: #F0E0E6;
  --gray-text: #999999;
}

/* Navbar scrolled pink shadow */
body.page-women .navbar.scrolled {
  box-shadow: 0 2px 20px rgba(255,107,157,0.08);
}

/* Active nav underline (already uses var(--accent)) */
body.page-women .nav-links a.active::after {
  bottom: -4px;
  border-radius: 2px;
}

/* Hero — full pink gradient background */
body.page-women .hero {
  background: linear-gradient(135deg, #fff5f8 0%, #fff0f4 50%, #fce4ec 100%);
}
body.page-women .hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(255,107,157,0.1) 0%, transparent 65%);
  pointer-events: none;
}

/* Hero content — flex column layout */
body.page-women .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
  gap: 20px;
}

/* Hero label — pink */
body.page-women .hero-label {
  color: var(--accent);
}

/* Hero title highlighted span */
body.page-women .hero-title span {
  color: var(--accent);
  -webkit-text-stroke: 0;
}

/* Pill-shaped primary button */
body.page-women .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  align-self: flex-start;
  box-shadow: 0 8px 24px rgba(255,107,157,0.3);
}
body.page-women .btn-primary:hover {
  box-shadow: 0 12px 32px rgba(255,107,157,0.4);
}

/* Hero badges */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-badge {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1.5px solid var(--accent-light, #FFADC8);
  color: var(--accent-dark, #e0527f);
  background: rgba(255,173,200,0.1);
}

/* Hero dots — round style */
body.page-women .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
body.page-women .dot.active {
  width: 28px;
  border-radius: 4px;
}

/* Hero bg text — pink stroke */
body.page-women .hero-bg-text {
  -webkit-text-stroke: 1.5px rgba(255,107,157,0.18);
  font-size: clamp(100px, 14vw, 180px);
  line-height: 0.85;
}

/* Hero accent bar — vertical pink line */
body.page-women .hero-accent-bar {
  position: absolute;
  top: 12%;
  right: 15%;
  width: 4px;
  height: 35%;
  background: linear-gradient(to bottom, var(--accent), transparent);
  border-radius: 2px;
  clip-path: none;
  opacity: 1;
}

/* Hero shoe — pink shadow */
body.page-women .hero-shoe {
  filter: drop-shadow(0 30px 60px rgba(255,107,157,0.3));
}

/* Hero shoe shadow — pink */
body.page-women .hero-shoe-shadow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 20px;
  background: radial-gradient(ellipse, rgba(255,107,157,0.25) 0%, transparent 70%);
  border-radius: 50%;
  animation: shadowPulse 3.5s ease-in-out infinite;
  margin: 0;
}
@keyframes shadowPulse {
  0%, 100% { transform: translateX(-50%) scaleX(1); opacity: 0.7; }
  50% { transform: translateX(-50%) scaleX(0.75); opacity: 0.4; }
}

/* Tag sub — pink */
body.page-women .tag-sub { color: var(--accent); }

/* Reveal — transition instead of animation (for re-triggering) */
body.page-women .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  animation: none;
}
body.page-women .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Top picks — more padding */
body.page-women .top-picks,
body.page-women .trending {
  padding: 100px 80px;
}

/* Section title — display font */
body.page-women .section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: 2px;
}

/* Nav arrows — pink hover */
body.page-women .nav-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* Product card — pink shadow */
body.page-women .product-card:hover {
  box-shadow: 0 20px 50px rgba(255,107,157,0.15);
}

/* Card img wrap — pink bg */
body.page-women .card-img-wrap {
  background: #fff0f5;
  aspect-ratio: 1;
  height: auto;
}

/* Card price — pink */
body.page-women .card-price {
  font-weight: 700;
  font-size: 18px;
  color: var(--accent);
}

/* Progress bar — pink */
body.page-women .progress-bar { background: var(--accent); }

/* Trending big card spans left column in women */
body.page-women .trending-grid {
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 1fr 1fr;
  align-items: stretch;
}
body.page-women .trend-card {
  border-radius: 20px;
  min-height: 260px;
}
body.page-women .trend-big {
  grid-row: 1 / 3;
  grid-column: unset;
  min-height: 540px;
  height: auto;
}
body.page-women .trend-bg-1 {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1b3d 100%);
}
body.page-women .trend-bg-2 {
  background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
}
body.page-women .trend-bg-3 {
  background: linear-gradient(135deg, #ff6b9d 0%, #c2185b 100%);
}
body.page-women .trend-bg-2 .trend-name-sm { color: var(--black); }
body.page-women .trend-bg-3 .trend-name-sm { color: var(--white); }
body.page-women .trend-name-sm {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  letter-spacing: 1px;
}
body.page-women .btn-trend {
  background: var(--accent);
  color: var(--white);
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(255,107,157,0.4);
}
body.page-women .btn-trend:hover { background: var(--accent-dark); }
body.page-women .btn-trend-sm {
  color: var(--black);
  border: 1.5px solid rgba(0,0,0,0.2);
  border-radius: 50px;
  padding: 8px 20px;
}
body.page-women .trend-bg-3 .btn-trend-sm {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
body.page-women .btn-trend-sm:hover { background: rgba(0,0,0,0.08); border-color: inherit; }
body.page-women .trend-card:hover {
  box-shadow: 0 20px 60px rgba(255,107,157,0.20);
}

/* Cart item — pink bg in women */
body.page-women .cart-item {
  background: var(--gray-light);
  border-radius: 12px;
  padding: 14px;
  border-bottom: none;
}
body.page-women .cart-item-price { color: var(--accent); font-weight: 700; font-size: 15px; }
body.page-women .qty-btn {
  background: var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  border: none;
  width: 28px; height: 28px;
}
body.page-women .qty-btn:hover { background: var(--gray-mid); border-color: transparent; color: var(--black); }

/* Footer — more padding */
body.page-women .footer {
  padding: 80px 80px 0;
}
body.page-women .footer-inner { gap: 60px; }

/* Scroll reveal .sr helper */
.sr {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.sr.visible { opacity: 1; transform: translateY(0); }
.sr-d2 { transition-delay: 0.1s; }
.sr-d3 { transition-delay: 0.2s; }

/* ---- Lookbook section (Women unique) ---- */
.lookbook {
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--white);
}
.custom-label {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.lookbook-text .section-title { margin-bottom: 24px; }
.lookbook-text p { font-size: 15px; line-height: 1.75; color: #555; margin-bottom: 16px; }
.lookbook-stats { display: flex; gap: 40px; margin: 32px 0; }
.stat-item { display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-family: var(--font-display); font-size: 36px; color: var(--accent); letter-spacing: 1px; }
.stat-label { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; color: var(--gray-text); text-transform: uppercase; }
.lookbook-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.lookbook-card {
  background: #fff0f5;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  aspect-ratio: 1;
  transition: transform var(--transition);
}
.lookbook-card:first-child { grid-column: 1 / -1; aspect-ratio: 2 / 1; }
.lookbook-card:hover { transform: scale(1.02); }
.lookbook-card img {
  max-width: 100%; max-height: 180px; object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(255,107,157,0.2));
  transition: transform 0.4s ease;
}
.lookbook-card:hover img { transform: scale(1.08) rotate(-3deg); }

/* Women responsive overrides */
@media (max-width: 1200px) {
  body.page-women .hero-content { padding: 60px 40px 60px 60px; }
  body.page-women .top-picks,
  body.page-women .trending,
  .lookbook,
  body.page-women .footer { padding-left: 40px; padding-right: 40px; }
  .lookbook { gap: 48px; }
  body.page-women .trending-grid .trend-big { min-height: 480px; }
  body.page-women .trend-card { min-height: 230px; }
}
@media (max-width: 1024px) {
  body.page-women .trending-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  body.page-women .trend-big { grid-row: unset; min-height: 340px; }
  body.page-women .trend-card { min-height: 220px; }
}
@media (max-width: 900px) {
  body.page-women .top-picks,
  body.page-women .trending,
  .lookbook { padding: 60px 32px; }
  body.page-women .product-card { flex: 0 0 calc(50% - 12px); }
  .lookbook { grid-template-columns: 1fr; gap: 40px; }
  .lookbook-visual { grid-template-columns: 1fr 1fr; }
  body.page-women .footer { padding: 60px 32px 0; }
}
@media (max-width: 600px) {
  body.page-women .hero-content { padding: 40px 24px 32px; }
  body.page-women .top-picks,
  body.page-women .trending,
  .lookbook { padding: 50px 20px; }
  body.page-women .product-card { flex: 0 0 calc(80% - 12px); }
  body.page-women .trending-grid { gap: 14px; }
  body.page-women .trend-big { min-height: 280px; }
  body.page-women .trend-card { min-height: 180px; }
  .lookbook-stats { gap: 24px; }
  .lookbook-visual { grid-template-columns: 1fr; }
  .lookbook-card:first-child { aspect-ratio: 1; }
  body.page-women .footer { padding: 50px 20px 0; }
  body.page-women .footer-inner { grid-template-columns: 1fr; }
}

/* =====================================================
   COLLECTION PAGE — STYLES
   (collection-style.css merged in)
   ===================================================== */
/* =====================================================
   JENZYA — COLLECTION PAGE STYLES
   collection-style.css
   ===================================================== */

/* ---- NAV BACK BUTTON ---- */
.nav-back {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gray-text);
  transition: color 0.3s;
  text-decoration: none;
}
.nav-back:hover { color: var(--accent); }
.nav-back svg { transition: transform 0.3s; }
.nav-back:hover svg { transform: translateX(-4px); }

/* =====================================================
   PRODUCT SWITCHER HEADER
   ===================================================== */
.collection-header {
  padding: calc(var(--nav-h) + 28px) 60px 0;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.collection-label {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gray-text);
  text-transform: uppercase;
}

.product-nav-arrows {
  display: flex;
  align-items: center;
  gap: 6px;
}

.p-nav-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-mid);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-text);
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, color 0.3s, transform 0.2s;
}
.p-nav-arrow:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
  transform: scale(1.08);
}

.product-counter {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-text);
  letter-spacing: 1px;
  padding: 0 10px;
}

/* =====================================================
   FEATURED PRODUCT — HERO
   ===================================================== */
.product-hero {
  background: var(--white);
  padding: 28px 60px 56px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
}

/* ---- LEFT: IMAGE PANEL ---- */
.product-image-panel {
  position: sticky;
  top: calc(var(--nav-h) + 16px);
}

.main-img-wrap {
  background: var(--gray-light);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px 20px;
  height: 420px;
  position: relative;
  cursor: zoom-in;
}

.main-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,184,0,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.main-product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 16px 36px rgba(0,0,0,0.16));
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), filter 0.4s ease;
  user-select: none;
  display: block;
}

.main-img-wrap:hover .main-product-img {
  transform: scale(1.06) translateY(-6px);
  filter: drop-shadow(0 28px 52px rgba(0,0,0,0.2));
}

/* Thumbnails */
.thumbnail-row {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.thumb-btn {
  flex: 1;
  background: var(--gray-light);
  border-radius: 10px;
  border: 2px solid transparent;
  padding: 10px 8px;
  cursor: pointer;
  transition: border-color 0.3s, transform 0.2s;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.12));
  transition: transform 0.3s;
}

.thumb-btn:hover { transform: translateY(-2px); }
.thumb-btn.active { border-color: var(--accent); }
.thumb-btn:hover img { transform: scale(1.08); }

/* ---- RIGHT: INFO PANEL ---- */
.product-info-panel {
  padding-top: 8px;
}

.product-brand-tag {
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.product-brand-tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent);
}

.product-category {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--gray-text);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.product-name {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 0.95;
  color: var(--black);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

/* Stars */
.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.stars {
  display: flex;
  gap: 2px;
}

.star {
  color: var(--accent);
  font-size: 18px;
  line-height: 1;
}

.star.half { position: relative; color: var(--gray-mid); }
.star.half::before {
  content: '★';
  position: absolute;
  left: 0; top: 0;
  color: var(--accent);
  overflow: hidden;
  width: 50%;
}

.rating-count {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-text);
  letter-spacing: 0.5px;
}

.rating-count a {
  color: var(--gray-text);
  text-decoration: underline;
  transition: color 0.3s;
}
.rating-count a:hover { color: var(--black); }

/* Price row */
.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 6px;
}

.product-price {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
  color: var(--black);
  letter-spacing: -1px;
}

.product-price-original {
  font-size: 18px;
  color: var(--gray-text);
  text-decoration: line-through;
  font-family: var(--font-cond);
  font-weight: 600;
}

.product-sale-badge {
  background: #E53935;
  color: var(--white);
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 3px;
}

.product-style {
  font-family: var(--font-cond);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--gray-text);
  margin-bottom: 24px;
}

/* Divider */
.info-divider {
  height: 1px;
  background: var(--gray-mid);
  margin: 20px 0;
}

/* Colorway */
.colorway-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.colorway-label {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-text);
}

.colorway-name {
  font-family: var(--font-cond);
  font-size: 13px;
  color: var(--black);
  font-weight: 600;
}

/* Size selector */
.size-row-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.size-label {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
}

.size-guide-link {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gray-text);
  text-decoration: underline;
  transition: color 0.3s;
}
.size-guide-link:hover { color: var(--accent); }

.size-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 22px;
}

.size-btn {
  height: 44px;
  border: 1.5px solid var(--gray-mid);
  background: var(--white);
  border-radius: 6px;
  font-family: var(--font-cond);
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, color 0.25s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.size-btn:hover {
  border-color: var(--black);
  transform: translateY(-2px);
}

.size-btn.selected {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.size-btn.out-of-stock {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
}

.size-btn.out-of-stock:hover {
  border-color: var(--gray-mid);
  transform: none;
}

/* Qty + Cart row */
.add-to-cart-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--gray-mid);
  border-radius: 6px;
  overflow: hidden;
  height: 50px;
  flex-shrink: 0;
}

.qty-btn-control {
  width: 42px;
  height: 100%;
  background: var(--white);
  border: none;
  font-size: 20px;
  color: var(--black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}
.qty-btn-control:hover { background: var(--gray-light); }

.qty-display {
  width: 44px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-cond);
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  border-left: 1px solid var(--gray-mid);
  border-right: 1px solid var(--gray-mid);
}

.btn-add-to-cart {
  flex: 1;
  height: 50px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-cond);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-add-to-cart:hover {
  background: var(--accent);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-add-to-cart:active { transform: translateY(0); }

.btn-wishlist {
  width: 50px;
  height: 50px;
  border: 1.5px solid var(--gray-mid);
  border-radius: 6px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, transform 0.2s;
  color: var(--gray-text);
  flex-shrink: 0;
}
.btn-wishlist:hover {
  border-color: #E53935;
  color: #E53935;
  transform: scale(1.08);
}
.btn-wishlist.liked {
  border-color: #E53935;
  color: #E53935;
  background: #fff5f5;
}

/* Shipping info */
.shipping-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.shipping-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-text);
}

.shipping-item svg { color: var(--black); flex-shrink: 0; }

/* =====================================================
   PRODUCT TRANSITION
   ===================================================== */
.product-hero.switching {
  opacity: 0;
  transform: translateX(30px);
}

.product-hero {
  transition: opacity 0.3s ease, transform 0.3s ease;
}


/* =====================================================
   PRODUCT DESCRIPTION SECTION
   ===================================================== */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  background: var(--white);
  border-top: 1px solid var(--gray-mid);
}

.detail-content {
  padding: 72px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.detail-eyebrow {
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.detail-eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--accent); }

.detail-name {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.95;
  color: var(--black);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.detail-colorway {
  font-size: 13px;
  color: var(--gray-text);
  margin-bottom: 28px;
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.detail-text {
  font-size: 15px;
  line-height: 1.85;
  color: var(--gray-text);
  max-width: 500px;
  font-weight: 400;
}

.detail-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}

.detail-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.5;
}

.detail-feature::before {
  content: '✦';
  color: var(--accent);
  font-size: 10px;
  margin-top: 3px;
  flex-shrink: 0;
}

.detail-visual {
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
}

.detail-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,184,0,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.detail-shoe-img {
  width: 100%;
  max-width: 500px;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 20px 48px rgba(0,0,0,0.18));
  transition: transform 0.6s cubic-bezier(0.34,1.56,0.64,1);
  user-select: none;
}
.detail-visual:hover .detail-shoe-img {
  transform: scale(1.05) translateY(-8px) rotate(-2deg);
}

/* =====================================================
   YOU MIGHT ALSO LIKE
   ===================================================== */
.similar-section {
  padding: 64px 60px;
  background: var(--gray-light);
  border-top: 1px solid var(--gray-mid);
}

.similar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}

.similar-title {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black);
}

.similar-see-all {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}
.similar-see-all:hover { gap: 10px; }

.similar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Product cards — override to match page */
.similar-grid .product-card {
  min-width: unset;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.similar-grid .product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  border-color: var(--gray-mid);
}

.similar-grid .card-img-wrap {
  height: 180px;
  background: var(--gray-light);
  border-radius: 0;
  padding: 20px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.similar-grid .card-shoe-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.14));
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), filter 0.4s;
  animation: none;
}

.similar-grid .product-card:hover .card-shoe-img {
  transform: scale(1.1) translateY(-6px);
  filter: drop-shadow(0 18px 32px rgba(0,0,0,0.2));
}

.similar-grid .card-info {
  padding: 14px 16px 18px;
  background: var(--white);
}

.similar-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 6px;
}
.s-star { color: var(--accent); font-size: 14px; }

.similar-grid .card-name {
  font-family: var(--font-cond);
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
  letter-spacing: 0.3px;
}

.similar-grid .card-price {
  font-size: 14px;
  color: var(--black);
  font-weight: 600;
  font-family: var(--font-cond);
  letter-spacing: 0.3px;
  margin-bottom: 0;
}

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

.cart-sidebar {
  position: fixed; top: 0; right: 0;
  width: 380px; max-width: 100vw; height: 100vh;
  background: var(--white); z-index: 1600;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -4px 0 40px rgba(0,0,0,0.15);
}
.cart-sidebar.open { transform: translateX(0); }

/* =====================================================
   SIZE GUIDE MODAL
   ===================================================== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 3000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal-box {
  background: var(--white);
  border-radius: 12px;
  padding: 36px;
  width: 90%;
  max-width: 560px;
  transform: scale(0.94);
  transition: transform 0.3s;
  position: relative;
}
.modal-overlay.open .modal-box { transform: scale(1); }

.modal-close {
  position: absolute; top: 16px; right: 18px;
  font-size: 22px; color: var(--gray-text);
  background: none; border: none; cursor: pointer;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--black); }

.modal-title {
  font-family: var(--font-display);
  font-size: 28px; color: var(--black);
  letter-spacing: 1px; margin-bottom: 20px;
}

.size-table { width: 100%; border-collapse: collapse; }
.size-table th, .size-table td {
  text-align: center; padding: 10px 12px;
  font-family: var(--font-cond); font-size: 13px;
  border-bottom: 1px solid var(--gray-mid);
}
.size-table th {
  font-weight: 700; letter-spacing: 1px;
  background: var(--gray-light); color: var(--black);
}
.size-table td { color: var(--gray-text); }
.size-table tr:hover td { background: #fffbee; }

/* =====================================================
   TOAST NOTIFICATION
   ===================================================== */
.toast {
  position: fixed;
  bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--black); color: var(--white);
  padding: 14px 28px; border-radius: 40px;
  font-family: var(--font-cond); font-size: 14px;
  font-weight: 600; letter-spacing: 1px;
  z-index: 9999; opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  border-left: 4px solid var(--accent);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  white-space: nowrap; pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* =====================================================
   SCROLL REVEAL
   ===================================================== */
.sr {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.sr.sr-left  { transform: translateX(-40px); }
.sr.sr-right { transform: translateX(40px); }
.sr.visible  { opacity: 1; transform: none; }
.sr-d1 { transition-delay: 0.1s; }
.sr-d2 { transition-delay: 0.2s; }
.sr-d3 { transition-delay: 0.3s; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
  .product-hero { grid-template-columns: 1fr 1fr; padding: 24px 40px 48px; }
  .reviews-section { padding: 48px 40px; }
  .similar-section { padding: 48px 40px; }
  .collection-header { padding: calc(var(--nav-h) + 24px) 40px 0; }
  .detail-content { padding: 56px 48px; }
  .similar-grid { grid-template-columns: repeat(2, 1fr); }
  .review-card { min-width: calc(50% - 10px); }
}

@media (max-width: 768px) {
  .collection-header { padding: calc(var(--nav-h) + 20px) 24px 0; }

  .product-hero {
    grid-template-columns: 1fr;
    padding: 20px 24px 40px;
    gap: 28px;
  }

  .product-image-panel { position: static; }
  .main-img-wrap { height: 300px; }
  .thumb-btn { height: 72px; }

  .size-grid { grid-template-columns: repeat(5, 1fr); }

  .reviews-section { padding: 40px 24px; }
  .review-card { min-width: calc(85% - 10px); }

  .product-detail { grid-template-columns: 1fr; }
  .detail-content { padding: 44px 24px; }
  .detail-visual { min-height: 260px; padding: 28px 20px; }

  .similar-section { padding: 40px 24px; }
  .similar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .similar-grid .card-img-wrap { height: 150px; }
  .product-name { font-size: 32px; }
  .add-to-cart-row { flex-wrap: wrap; }
  .btn-add-to-cart { order: 1; flex: 1; }
  .qty-control { order: 2; }
  .btn-wishlist { order: 3; }
}

@media (max-width: 480px) {
  .main-img-wrap { height: 260px; }
  .size-grid { grid-template-columns: repeat(4, 1fr); }
  .similar-grid { grid-template-columns: repeat(2, 1fr); }
  .product-price { font-size: 38px; }
}
/* =====================================================
   WHATSAPP ORDER BUTTON
   ===================================================== */
.btn-whatsapp-order {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 15px 20px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-cond);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  margin-top: 12px;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 4px 16px rgba(37,211,102,0.28);
}
.btn-whatsapp-order:hover {
  background: #1db954;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.36);
}
.btn-whatsapp-order svg { flex-shrink: 0; }

/* ---- Update checkout button to match WhatsApp style ---- */
.btn-checkout-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-cond);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 4px 14px rgba(37,211,102,0.3);
}
.btn-checkout-wa:hover {
  background: #1db954;
  transform: translateY(-2px);
}

/* ===================================================
   CART CHECKOUT → WHATSAPP (override)
   =================================================== */
.cart-footer .btn-checkout {
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.cart-footer .btn-checkout:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37,211,102,0.4);
}

.cart-footer .btn-checkout svg {
  flex-shrink: 0;
}
/* =====================================================
   ABOUT PAGE — INLINE STYLES
   ===================================================== */
    /* =====================================================
       ABOUT PAGE — EXTRA STYLES (white theme, same as index)
    ===================================================== */

    /* Nav back button */
    .nav-back {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-cond);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      color: var(--gray-text);
      transition: color 0.3s;
    }
    .nav-back:hover { color: var(--accent); }
    .nav-back svg { transition: transform 0.3s; }
    .nav-back:hover svg { transform: translateX(-4px); }

    /* ===== HERO — ABOUT ===== */
    .about-hero {
      background: var(--gray-light);
      padding: calc(var(--nav-h) + 80px) 60px 80px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      min-height: 50vh;
    }

    .about-hero::after {
      content: 'JENZYA';
      position: absolute;
      font-family: var(--font-display);
      font-size: clamp(100px, 15vw, 200px);
      color: rgba(0,0,0,0.04);
      right: -10px;
      bottom: -10px;
      letter-spacing: -4px;
      pointer-events: none;
      line-height: 1;
    }

    .hero-eyebrow {
      font-family: var(--font-cond);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 4px;
      color: var(--accent);
      margin-bottom: 18px;
      opacity: 0;
      transform: translateY(16px);
      animation: fadeUp 0.7s ease-out 0.3s forwards;
    }

    .about-hero-title {
      font-family: var(--font-display);
      font-size: clamp(60px, 8vw, 120px);
      line-height: 0.92;
      color: var(--black);
      letter-spacing: -1px;
      position: relative;
      z-index: 1;
    }

    .about-hero-title .ln {
      display: block;
      overflow: hidden;
    }

    .about-hero-title .ln span {
      display: block;
      opacity: 0;
      transform: translateY(100%);
      animation: lineReveal 0.8s ease-out forwards;
    }

    .about-hero-title .ln:nth-child(1) span { animation-delay: 0.4s; }
    .about-hero-title .ln:nth-child(2) span { animation-delay: 0.6s; color: var(--accent); }
    .about-hero-title .ln:nth-child(3) span { animation-delay: 0.8s; }

    .about-hero-sub {
      font-size: 15px;
      color: var(--gray-text);
      margin-top: 24px;
      max-width: 440px;
      line-height: 1.8;
      font-weight: 300;
      opacity: 0;
      animation: fadeUp 0.7s ease-out 1.0s forwards;
    }

    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes lineReveal {
      to { opacity: 1; transform: translateY(0); }
    }

    /* ===== MARQUEE ===== */
    .marquee-band {
      background: var(--black);
      overflow: hidden;
      padding: 14px 0;
      white-space: nowrap;
    }

    .marquee-track {
      display: inline-flex;
      animation: marqueeScroll 22s linear infinite;
    }

    .marquee-item {
      font-family: var(--font-display);
      font-size: 12px;
      letter-spacing: 4px;
      color: rgba(255,255,255,0.3);
      padding: 0 36px;
    }

    .marquee-item span { color: var(--accent); }

    @keyframes marqueeScroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ===== OUR STORY SECTION ===== */
    .story-section {
      background: var(--white);
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: stretch;
      min-height: 80vh;
    }

    .story-left {
      padding: 100px 60px 100px 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      border-right: 1px solid var(--gray-mid);
    }

    .section-tag {
      font-family: var(--font-cond);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .section-tag::before {
      content: '';
      display: block;
      width: 28px;
      height: 2px;
      background: var(--accent);
    }

    .story-title {
      font-family: var(--font-display);
      font-size: clamp(44px, 5vw, 80px);
      line-height: 0.95;
      letter-spacing: 0.5px;
      color: var(--black);
      margin-bottom: 32px;
    }

    .story-title em {
      color: var(--accent);
      font-style: normal;
    }

    .story-pull {
      font-family: var(--font-display);
      font-size: 22px;
      line-height: 1.3;
      color: rgba(0,0,0,0.15);
      border-left: 3px solid var(--accent);
      padding-left: 20px;
      margin: 28px 0;
      letter-spacing: 0.5px;
    }

    .story-body p {
      font-size: 15px;
      line-height: 1.9;
      color: var(--gray-text);
      margin-bottom: 18px;
      font-weight: 400;
    }

    .story-body p strong {
      color: var(--black);
      font-weight: 600;
    }

    .story-timeline {
      display: flex;
      gap: 36px;
      margin-top: 40px;
      padding-top: 32px;
      border-top: 1px solid var(--gray-mid);
    }

    .timeline-year {
      font-family: var(--font-display);
      font-size: 34px;
      color: var(--accent);
      line-height: 1;
    }

    .timeline-desc {
      font-family: var(--font-cond);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      color: var(--gray-text);
      margin-top: 4px;
      text-transform: uppercase;
    }

    /* Right side — shoe showcase */
    .story-right {
      background: var(--gray-light);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0;
    }

    .story-img-cell {
      flex: 1;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px 30px;
      overflow: hidden;
      position: relative;
      border-bottom: 1px solid var(--gray-mid);
    }

    .story-img-cell:last-child { border-bottom: none; }

    .story-img-cell img {
      width: 75%;
      max-height: 200px;
      object-fit: contain;
      mix-blend-mode: multiply;
      filter: drop-shadow(0 12px 28px rgba(0,0,0,0.12));
      transition: transform 0.5s ease, filter 0.5s ease;
    }

    .story-img-cell:hover img {
      transform: translateY(-8px) scale(1.06);
      filter: drop-shadow(0 24px 40px rgba(0,0,0,0.18));
    }

    .story-img-cell::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,184,0,0.05) 0%, transparent 60%);
      pointer-events: none;
    }

    /* ===== VALUES STRIP ===== */
    .values-strip {
      background: var(--black);
      padding: 64px 60px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
    }

    .value-item {
      padding: 36px 28px;
      background: #181818;
      transition: background 0.3s;
      position: relative;
      overflow: hidden;
    }

    .value-item::after {
      content: '';
      position: absolute;
      top: 0; left: 0;
      height: 2px;
      width: 0;
      background: var(--accent);
      transition: width 0.4s ease;
    }

    .value-item:hover::after { width: 100%; }
    .value-item:hover { background: #1f1f1f; }

    .value-icon { font-size: 26px; margin-bottom: 14px; }

    .value-title {
      font-family: var(--font-cond);
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 1px;
      color: var(--white);
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .value-desc {
      font-size: 13px;
      color: rgba(255,255,255,0.4);
      line-height: 1.6;
    }

    /* ===== FOOTER CTA BAND ===== */
    .footer-cta {
      background: var(--accent);
      padding: 56px 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      position: relative;
      overflow: hidden;
    }

    .footer-cta::before {
      content: 'JENZYA';
      position: absolute;
      font-family: var(--font-display);
      font-size: 200px;
      color: rgba(0,0,0,0.06);
      right: -20px;
      top: 50%;
      transform: translateY(-50%);
      pointer-events: none;
      letter-spacing: -4px;
    }

    .cta-text {
      font-family: var(--font-display);
      font-size: clamp(28px, 4vw, 52px);
      color: var(--black);
      line-height: 1.1;
    }

    .btn-cta-dark {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 40px;
      background: var(--black);
      color: var(--white);
      font-family: var(--font-cond);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 2px;
      border-radius: 4px;
      white-space: nowrap;
      transition: transform 0.3s ease, box-shadow 0.3s;
      box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    }

    .btn-cta-dark:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 40px rgba(0,0,0,0.3);
    }

    /* ===== SCROLL REVEAL ===== */
    .sr {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .sr.sr-left  { transform: translateX(-48px); }
    .sr.sr-right { transform: translateX(48px); }
    .sr.visible  { opacity: 1; transform: none; }
    .sr-d1 { transition-delay: 0.1s; }
    .sr-d2 { transition-delay: 0.2s; }
    .sr-d3 { transition-delay: 0.3s; }
    .sr-d4 { transition-delay: 0.4s; }
    .sr-d5 { transition-delay: 0.5s; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .about-hero { padding: calc(var(--nav-h) + 60px) 40px 60px; }
      .story-section { grid-template-columns: 1fr; }
      .story-left { padding: 72px 40px; border-right: none; }
      .story-right { min-height: 340px; flex-direction: row; }
      .story-img-cell { border-bottom: none; border-right: 1px solid var(--gray-mid); }
      .story-img-cell:last-child { border-right: none; }
      .values-strip { grid-template-columns: 1fr 1fr; padding: 48px 40px; }
      .footer-cta { padding: 48px 40px; }
    }

    @media (max-width: 768px) {
      .about-hero { padding: calc(var(--nav-h) + 40px) 28px 48px; }
      .story-left { padding: 56px 28px; }
      .story-right { flex-direction: column; min-height: 300px; }
      .story-img-cell { border-right: none; border-bottom: 1px solid var(--gray-mid); }
      .story-timeline { flex-wrap: wrap; gap: 24px; }
      .values-strip { grid-template-columns: 1fr 1fr; padding: 40px 28px; gap: 3px; }
      .footer-cta { flex-direction: column; text-align: center; padding: 40px 28px; }
      .nav-back { display: none; }
    }

    @media (max-width: 480px) {
      .values-strip { grid-template-columns: 1fr; }
    }

/* =====================================================
   CONTACT PAGE — INLINE STYLES
   ===================================================== */
    .nav-back { display:flex; align-items:center; gap:8px; font-family:var(--font-cond); font-size:12px; font-weight:700; letter-spacing:2px; color:var(--gray-text); transition:color 0.3s; }
    .nav-back:hover { color:var(--accent); }
    .nav-back svg { transition:transform 0.3s; }
    .nav-back:hover svg { transform:translateX(-4px); }

    .contact-hero { background:var(--gray-light); padding:calc(var(--nav-h) + 80px) 60px 72px; position:relative; overflow:hidden; }
    .contact-hero::after { content:'CONTACT'; position:absolute; font-family:var(--font-display); font-size:clamp(80px,12vw,170px); color:rgba(0,0,0,0.04); right:-10px; bottom:-10px; letter-spacing:-4px; pointer-events:none; line-height:1; }
    .hero-eyebrow { font-family:var(--font-cond); font-size:11px; font-weight:700; letter-spacing:4px; color:var(--accent); margin-bottom:16px; opacity:0; transform:translateY(16px); animation:fadeUp 0.7s ease-out 0.3s forwards; }
    .contact-hero-title { font-family:var(--font-display); font-size:clamp(56px,8vw,110px); line-height:0.92; color:var(--black); letter-spacing:-1px; position:relative; z-index:1; }
    .contact-hero-title .ln { display:block; overflow:hidden; }
    .contact-hero-title .ln span { display:block; opacity:0; transform:translateY(100%); animation:lineReveal 0.8s ease-out forwards; }
    .contact-hero-title .ln:nth-child(1) span { animation-delay:0.4s; }
    .contact-hero-title .ln:nth-child(2) span { animation-delay:0.6s; color:var(--accent); }
    .contact-hero-sub { font-size:15px; color:var(--gray-text); margin-top:22px; max-width:400px; line-height:1.8; font-weight:300; opacity:0; animation:fadeUp 0.7s ease-out 0.9s forwards; }
    @keyframes fadeUp { to { opacity:1; transform:translateY(0); } }
    @keyframes lineReveal { to { opacity:1; transform:translateY(0); } }

    .marquee-band { background:var(--black); overflow:hidden; padding:13px 0; white-space:nowrap; }
    .marquee-track { display:inline-flex; animation:marqueeScroll 20s linear infinite; }
    .marquee-item { font-family:var(--font-display); font-size:12px; letter-spacing:4px; color:rgba(255,255,255,0.3); padding:0 32px; }
    .marquee-item span { color:var(--accent); }
    @keyframes marqueeScroll { from { transform:translateX(0); } to { transform:translateX(-50%); } }

    .contact-body { display:grid; grid-template-columns:1fr 1.2fr; background:var(--white); }
    .contact-info { padding:72px 56px 72px 60px; border-right:1px solid var(--gray-mid); }
    .section-tag { font-family:var(--font-cond); font-size:10px; font-weight:700; letter-spacing:4px; text-transform:uppercase; color:var(--accent); margin-bottom:36px; display:flex; align-items:center; gap:12px; }
    .section-tag::before { content:''; display:block; width:28px; height:2px; background:var(--accent); }
    .info-block { margin-bottom:28px; }
    .info-label { font-family:var(--font-cond); font-size:10px; font-weight:700; letter-spacing:3px; text-transform:uppercase; color:var(--gray-text); margin-bottom:8px; }
    .info-value { font-size:16px; color:var(--black); font-weight:500; line-height:1.7; }
    .info-value a { color:var(--black); transition:color 0.3s; }
    .info-value a:hover { color:var(--accent); }
    .info-divider { width:40px; height:2px; background:var(--gray-mid); margin:28px 0; }
    .hours-table { width:100%; }
    .hours-table tr td { font-size:13px; padding:5px 0; color:var(--gray-text); }
    .hours-table tr td:last-child { text-align:right; color:var(--black); }
    .hours-table tr.today td { color:var(--accent); font-weight:600; }
    .contact-social { display:flex; gap:10px; margin-top:28px; }
    .info-accent-box { background:#fffbee; border:1.5px solid rgba(255,184,0,0.3); border-radius:8px; padding:18px 22px; margin-top:28px; }
    .info-accent-box p { font-size:13px; color:var(--gray-text); line-height:1.7; }
    .info-accent-box strong { color:var(--black); font-weight:600; }

    .contact-form-wrap { padding:72px 60px 72px 56px; background:var(--gray-light); }
    .form-title { font-family:var(--font-display); font-size:clamp(36px,4vw,58px); line-height:0.95; color:var(--black); margin-bottom:8px; letter-spacing:0.5px; }
    .form-title em { font-style:normal; color:var(--accent); }
    .form-sub { font-size:14px; color:var(--gray-text); margin-bottom:36px; font-weight:300; }
    .form-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
    .form-group { display:flex; flex-direction:column; gap:7px; }
    .form-group.full { grid-column:1 / -1; }
    .form-label { font-family:var(--font-cond); font-size:10px; font-weight:700; letter-spacing:2.5px; text-transform:uppercase; color:var(--gray-text); }
    .form-input, .form-select, .form-textarea { background:var(--white); border:1.5px solid var(--gray-mid); border-radius:6px; padding:13px 16px; font-family:var(--font-body); font-size:14px; color:var(--black); transition:border-color 0.3s, box-shadow 0.3s; outline:none; width:100%; }
    .form-select { appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%23888' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 16px center; background-color:var(--white); cursor:pointer; }
    .form-input::placeholder, .form-textarea::placeholder { color:#bbb; }
    .form-input:focus, .form-select:focus, .form-textarea:focus { border-color:var(--accent); box-shadow:0 0 0 3px rgba(255,184,0,0.12); }
    .form-textarea { resize:vertical; min-height:120px; line-height:1.6; }
    .btn-submit { display:inline-flex; align-items:center; gap:10px; padding:15px 40px; background:var(--black); color:var(--white); font-family:var(--font-cond); font-size:13px; font-weight:800; letter-spacing:2.5px; text-transform:uppercase; border-radius:4px; margin-top:22px; cursor:pointer; transition:background 0.3s, transform 0.3s; border:none; }
    .btn-submit:hover { background:var(--accent); color:var(--black); transform:translateY(-2px); }
    .btn-submit svg { transition:transform 0.3s; }
    .btn-submit:hover svg { transform:translateX(4px); }
    .form-success { display:none; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding:40px 20px; gap:16px; }
    .form-success.show { display:flex; }
    .success-icon { width:64px; height:64px; border-radius:50%; background:#fffbee; border:2px solid var(--accent); display:flex; align-items:center; justify-content:center; }
    .success-title { font-family:var(--font-display); font-size:40px; letter-spacing:1px; color:var(--black); }
    .success-sub { font-size:14px; color:var(--gray-text); max-width:300px; line-height:1.7; }

    .location-section { background:var(--white); padding:72px 60px; border-top:1px solid var(--gray-mid); }
    .location-inner { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
    .location-city-name { font-family:var(--font-display); font-size:clamp(44px,5vw,72px); line-height:0.95; color:var(--black); margin-bottom:20px; letter-spacing:0.5px; }
    .location-city-name em { font-style:normal; color:var(--accent); }
    .location-address { font-size:16px; color:var(--gray-text); line-height:1.8; margin-bottom:24px; }
    .location-hours { background:var(--gray-light); border-radius:8px; padding:22px; }
    .location-hours-title { font-family:var(--font-cond); font-size:10px; font-weight:700; letter-spacing:3px; text-transform:uppercase; color:var(--gray-text); margin-bottom:14px; }
    .location-map-placeholder { background:var(--gray-light); border-radius:12px; overflow:hidden; aspect-ratio:4/3; position:relative; display:flex; align-items:center; justify-content:center; border:1px solid var(--gray-mid); }
    .map-inner { text-align:center; }
    .map-pin { font-size:48px; margin-bottom:12px; display:block; }
    .map-label { font-family:var(--font-cond); font-size:14px; font-weight:700; letter-spacing:2px; color:var(--black); text-transform:uppercase; display:block; margin-bottom:4px; }
    .map-sub { font-size:12px; color:var(--gray-text); display:block; }
    .btn-map { display:inline-flex; align-items:center; gap:8px; margin-top:16px; padding:11px 28px; background:var(--black); color:var(--white); font-family:var(--font-cond); font-size:12px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; border-radius:4px; transition:background 0.3s; text-decoration:none; }
    .btn-map:hover { background:var(--accent); color:var(--black); }

    .footer-logo-img { height: 60px; width: auto; display: block; margin-bottom: 12px; transition: opacity 0.3s; }
    .footer-logo-img:hover { opacity: 0.8; }

    .footer-cta { background:var(--accent); padding:56px 60px; display:flex; align-items:center; justify-content:space-between; gap:40px; position:relative; overflow:hidden; }
    .footer-cta::before { content:'JENZYA'; position:absolute; font-family:var(--font-display); font-size:200px; color:rgba(0,0,0,0.06); right:-20px; top:50%; transform:translateY(-50%); pointer-events:none; letter-spacing:-4px; }
    .cta-text { font-family:var(--font-display); font-size:clamp(28px,4vw,52px); color:var(--black); line-height:1.1; }
    .btn-cta-dark { display:inline-flex; align-items:center; gap:10px; padding:16px 40px; background:var(--black); color:var(--white); font-family:var(--font-cond); font-size:13px; font-weight:700; letter-spacing:2px; border-radius:4px; white-space:nowrap; transition:transform 0.3s, box-shadow 0.3s; box-shadow:0 8px 32px rgba(0,0,0,0.2); text-decoration:none; }
    .btn-cta-dark:hover { transform:translateY(-3px); box-shadow:0 16px 40px rgba(0,0,0,0.3); }

    .sr { opacity:0; transform:translateY(36px); transition:opacity 0.7s ease, transform 0.7s ease; }
    .sr.sr-left { transform:translateX(-48px); }
    .sr.sr-right { transform:translateX(48px); }
    .sr.visible { opacity:1; transform:none; }
    .sr-d1 { transition-delay:0.1s; }
    .sr-d2 { transition-delay:0.2s; }
    .sr-d3 { transition-delay:0.3s; }
    .sr-d4 { transition-delay:0.4s; }

    @media (max-width:1024px) {
      .contact-hero { padding:calc(var(--nav-h) + 60px) 40px 60px; }
      .contact-body { grid-template-columns:1fr; }
      .contact-info { padding:60px 40px; border-right:none; border-bottom:1px solid var(--gray-mid); }
      .contact-form-wrap { padding:60px 40px; }
      .location-section { padding:60px 40px; }
      .location-inner { grid-template-columns:1fr; gap:40px; }
      .footer-cta { padding:48px 40px; }
    }
    @media (max-width:768px) {
      .nav-back { display:none; }
      .contact-hero { padding:calc(var(--nav-h) + 40px) 28px 48px; }
      .contact-info { padding:48px 28px; }
      .contact-form-wrap { padding:48px 28px; }
      .form-grid { grid-template-columns:1fr; }
      .form-group.full { grid-column:1; }
      .location-section { padding:48px 28px; }
      .footer-cta { flex-direction:column; text-align:center; padding:40px 28px; }
    }

/* =====================================================
   CONTACT PAGE — STORE HOURS AUTO-DAY DETECTION
   ===================================================== */

/* Today's highlighted row */
.hours-table tr.today {
  background: var(--accent) !important;
  border-radius: 6px;
}

.hours-table tr.today td {
  color: var(--black) !important;
  font-weight: 700 !important;
  padding: 9px 10px !important;
}

/* "Mon – Fri  Thu · Today ✦" tag inline */
.today-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  background: rgba(0,0,0,0.15);
  color: var(--black);
  padding: 2px 7px;
  border-radius: 10px;
  vertical-align: middle;
  margin-left: 4px;
}

/* Open / Closed status badge */
.hours-status {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.hours-open {
  color: #1a7a1a;
  background: rgba(26,122,26,0.12);
  padding: 3px 10px;
  border-radius: 20px;
}

.hours-closed {
  color: #c0392b;
  background: rgba(192,57,43,0.1);
  padding: 3px 10px;
  border-radius: 20px;
}

/* When row is today — override status badge colors to work on accent bg */
.hours-table tr.today .hours-open {
  color: #155215;
  background: rgba(0,0,0,0.12);
}

.hours-table tr.today .hours-closed {
  color: #7a1212;
  background: rgba(0,0,0,0.1);
}