/* ── WASHELA GLOBAL STYLES ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #111110;
  --white: #ffffff;
  --off: #fafaf8;
  --cream: #f5f0e8;
  --gray-light: #eeebe6;
  --gray: #d8d4ce;
  --mid: #9a9690;
  --dark: #4a4744;
  --accent: #c8a96e;
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--black); overflow-x: hidden; }

/* ── SCROLL PROGRESS ── */
.scroll-progress { position: fixed; top: 0; left: 0; height: 2px; background: var(--black); z-index: 9999; width: 0%; transition: width .1s; }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(60px);
  background: var(--black); color: var(--white);
  padding: 12px 28px; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
  opacity: 0; transition: all .4s; pointer-events: none; z-index: 9999;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── TOP BAR ── */
.top-bar {
  background: var(--black); color: rgba(255,255,255,0.6);
  padding: 10px 60px; display: flex; align-items: center; justify-content: space-between;
  font-size: 10px; letter-spacing: 1.5px;
}
.top-bar-center { color: var(--white); letter-spacing: 2px; text-transform: uppercase; font-size: 10px; font-weight: 500; }
.top-bar a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 10px; letter-spacing: 1px; transition: color .2s; }
.top-bar a:hover { color: var(--white); }

/* ── NAV ── */
nav {
  background: var(--white); border-bottom: 1px solid var(--gray-light);
  position: sticky; top: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px; height: 68px;
}
.nav-logo { display: flex; align-items: center; cursor: pointer; text-decoration: none; }
.nav-logo img { height: 32px; width: auto; display: block; }
.nav-logo-text { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; letter-spacing: 5px; text-transform: uppercase; color: var(--black); }
.nav-links { display: flex; list-style: none; }
.nav-links a {
  display: block; padding: 0 20px; height: 68px; line-height: 68px;
  font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--dark); text-decoration: none; transition: color .2s; cursor: pointer; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 20px; right: 20px; height: 2px;
  background: var(--black); transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.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-right { display: flex; align-items: center; gap: 16px; }
.nav-search { display: flex; align-items: center; border: 1px solid var(--gray); padding: 9px 14px; gap: 8px; }
.nav-search input { border: none; outline: none; font-size: 11px; font-family: 'DM Sans', sans-serif; width: 130px; color: var(--dark); background: transparent; }
.nav-search svg { width: 14px; height: 14px; stroke: var(--mid); fill: none; stroke-width: 2; flex-shrink: 0; }

/* ── HERO ── */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 88vh;
  background: var(--off);
  position: relative; overflow: hidden;
}
.hero-left {
  padding: 60px 80px;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid var(--gray-light);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--gray); padding: 8px 16px; margin-bottom: 28px;
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--mid); font-weight: 600;
  width: fit-content; background: var(--white);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5vw, 72px); font-weight: 300;
  color: var(--black); line-height: 1.05; margin-bottom: 20px; letter-spacing: -0.5px;
}
.hero-title em { font-style: italic; color: var(--mid); }
.hero-sub { font-size: 13px; line-height: 1.85; color: var(--dark); font-weight: 300; max-width: 380px; margin-bottom: 40px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-right {
  position: relative; display: flex; align-items: center; justify-content: center;
  background: var(--white); overflow: hidden; padding: 40px;
}
.hero-product-img {
  position: relative; z-index: 2; width: 100%; max-width: 460px;
  animation: float 6s ease-in-out infinite;
}
.hero-product-img img { width: 100%; height: auto; display: block; filter: drop-shadow(0 30px 50px rgba(0,0,0,0.1)); }
.hero-replace-btn {
  position: absolute; bottom: 20px; right: 20px; z-index: 4;
  background: var(--white); border: 1px solid var(--gray);
  padding: 8px 14px; font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--mid); font-weight: 500; cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: all .2s;
}
.hero-replace-btn:hover { border-color: var(--black); color: var(--black); }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ── BUTTONS ── */
.btn-black {
  background: var(--black); color: var(--white); border: none;
  padding: 14px 32px; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
  cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all .25s; text-decoration: none; display: inline-block;
}
.btn-black:hover { background: var(--dark); }
.btn-outline {
  background: transparent; color: var(--black); border: 1px solid var(--black);
  padding: 14px 32px; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
  cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all .25s; text-decoration: none; display: inline-block;
}
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-white {
  background: var(--white); color: var(--black); border: none;
  padding: 14px 32px; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
  cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all .25s;
}
.btn-white:hover { background: var(--cream); }

/* ── STATS ── */
.stats-bar {
  border-top: 1px solid var(--gray-light); border-bottom: 1px solid var(--gray-light);
  display: grid; grid-template-columns: repeat(4, 1fr); background: var(--white);
}
.stat { padding: 32px 40px; text-align: center; border-right: 1px solid var(--gray-light); }
.stat:last-child { border-right: none; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 300; color: var(--black); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--mid); font-weight: 500; }

/* ── MARQUEE ── */
.marquee-wrap { background: var(--black); padding: 13px 0; overflow: hidden; }
.marquee-inner { display: flex; gap: 0; animation: marq 22s linear infinite; white-space: nowrap; }
.marquee-item {
  flex-shrink: 0; padding: 0 32px; font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.4); font-weight: 500; border-right: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; gap: 10px;
}
.marquee-dot { color: rgba(255,255,255,0.2); font-size: 10px; }
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── DISCOVER SECTION ── */
.discover { padding: 80px 60px; background: var(--white); }
.section-row { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; }
.section-eyebrow { font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: var(--mid); font-weight: 600; margin-bottom: 10px; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 3.5vw, 48px); font-weight: 300; color: var(--black); line-height: 1.1; }
.section-title em { font-style: italic; }
.section-link { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; color: var(--black); text-decoration: none; border-bottom: 1px solid var(--black); padding-bottom: 2px; white-space: nowrap; }

.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--gray-light); }
.cat-tile { background: var(--white); cursor: pointer; overflow: hidden; transition: background .2s; }
.cat-tile:hover { background: var(--off); }
.cat-tile-img { width: 100%; aspect-ratio: 3/4; background: var(--off); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.cat-tile-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s; display: none; }
.cat-tile-img img.loaded { display: block; }
.cat-tile:hover .cat-tile-img img { transform: scale(1.05); }
.cat-img-ph { display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--gray); pointer-events: none; }
.cat-img-ph svg { width: 28px; height: 28px; stroke: var(--gray); fill: none; stroke-width: 1.5; }
.cat-img-ph span { font-size: 8px; letter-spacing: 2px; text-transform: uppercase; }
.cat-tile input[type=file] { display: none; }
.cat-tile-info { padding: 20px 20px 24px; border-top: 1px solid var(--gray-light); }
.cat-tile-name { font-size: 14px; font-weight: 600; color: var(--black); margin-bottom: 5px; }
.cat-tile-desc { font-size: 11px; color: var(--mid); font-weight: 300; margin-bottom: 12px; line-height: 1.6; }
.cat-tile-link { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; color: var(--black); display: flex; align-items: center; gap: 8px; transition: gap .2s; }
.cat-tile:hover .cat-tile-link { gap: 12px; }
.cat-tile-link svg { width: 14px; height: 14px; stroke: var(--black); fill: none; stroke-width: 2; }

/* ── WHY SECTION ── */
.why-section { background: var(--off); padding: 80px 60px; border-top: 1px solid var(--gray-light); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.why-img-slot { aspect-ratio: 1; background: var(--white); border: 1px solid var(--gray-light); display: flex; flex-direction: column; align-items: center; justify-content: center; cursor: pointer; overflow: hidden; position: relative; transition: background .2s; }
.why-img-slot:first-child { grid-column: 1; grid-row: 1 / span 2; aspect-ratio: unset; }
.why-img-slot:hover { background: var(--gray-light); }
.why-img-slot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: none; }
.why-img-slot img.loaded { display: block; }
.why-img-slot input[type=file] { display: none; }
.slot-ph { display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--gray); pointer-events: none; z-index: 1; position: relative; }
.slot-ph svg { width: 20px; height: 20px; stroke: var(--gray); fill: none; stroke-width: 1.5; }
.slot-ph span { font-size: 8px; letter-spacing: 2px; text-transform: uppercase; }
.why-right { display: flex; flex-direction: column; gap: 0; }
.why-point { padding: 24px 0; border-bottom: 1px solid var(--gray-light); display: flex; gap: 20px; align-items: flex-start; }
.why-point:first-of-type { border-top: 1px solid var(--gray-light); }
.wp-num { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; color: var(--gray); line-height: 1; flex-shrink: 0; min-width: 32px; }
.wp-body h4 { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--black); margin-bottom: 5px; }
.wp-body p { font-size: 12px; color: var(--dark); line-height: 1.75; font-weight: 300; }

/* ── TRADE SECTION ── */
.trade-section { padding: 80px 60px; background: var(--black); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.trade-eyebrow { font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 14px; }
.trade-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 3.5vw, 48px); font-weight: 300; color: var(--white); line-height: 1.1; margin-bottom: 18px; }
.trade-title em { font-style: italic; }
.trade-text { font-size: 13px; line-height: 1.9; color: rgba(255,255,255,0.5); font-weight: 300; margin-bottom: 36px; }
.trade-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); padding: 24px 24px; display: flex; align-items: center; gap: 18px; transition: all .3s; cursor: pointer; margin-bottom: 1px; }
.trade-card:hover { background: rgba(255,255,255,0.08); padding-left: 32px; }
.tc-icon { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tc-icon svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.5); fill: none; stroke-width: 1.5; }
.tc-body h4 { font-size: 12px; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.tc-body p { font-size: 11px; color: rgba(255,255,255,0.35); line-height: 1.5; font-weight: 300; }

/* ── FOOTER ── */
footer { background: var(--off); border-top: 1px solid var(--gray-light); padding: 64px 60px 36px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 52px; }
.footer-logo-wrap { margin-bottom: 16px; }
.footer-logo-wrap img { height: 26px; width: auto; display: block; }
.footer-logo-wrap .footer-logo-text { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; letter-spacing: 5px; text-transform: uppercase; color: var(--black); }
.footer-logo-upload { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; cursor: pointer; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--mid); font-weight: 500; border: 1px dashed var(--gray); padding: 6px 12px; transition: all .2s; }
.footer-logo-upload:hover { border-color: var(--black); color: var(--black); }
.footer-logo-upload svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; }
.footer-tagline { font-size: 12px; color: var(--dark); line-height: 1.8; font-weight: 300; max-width: 220px; margin-top: 14px; }
.footer-h { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--black); font-weight: 700; margin-bottom: 18px; }
.footer-ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-ul a { font-size: 12px; color: var(--mid); text-decoration: none; font-weight: 300; transition: color .2s; cursor: pointer; }
.footer-ul a:hover { color: var(--black); }
.footer-bottom { border-top: 1px solid var(--gray-light); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 10px; color: var(--mid); letter-spacing: 1px; }
.footer-tag { font-size: 10px; color: var(--mid); }

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

/* ── CATEGORY PAGE: HERO ── */
.cat-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 72vh; background: var(--off); border-bottom: 1px solid var(--gray-light); }
.cph-left { padding: 60px 80px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--gray-light); }
.cph-back { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--mid); font-weight: 600; border: none; background: none; font-family: 'DM Sans', sans-serif; margin-bottom: 28px; transition: color .2s; padding: 0; text-decoration: none; }
.cph-back:hover { color: var(--black); }
.cph-back svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }
.cph-eyebrow { font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: var(--mid); font-weight: 600; margin-bottom: 12px; }
.cph-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(40px, 5vw, 64px); font-weight: 300; color: var(--black); line-height: 1.05; margin-bottom: 18px; }
.cph-title em { font-style: italic; }
.cph-desc { font-size: 13px; line-height: 1.85; color: var(--dark); font-weight: 300; max-width: 360px; margin-bottom: 36px; }
.cph-right { background: var(--white); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; padding: 50px; cursor: pointer; }
.cph-right:hover .cph-replace { opacity: 1; }
.cph-img-wrap { position: relative; z-index: 2; width: 100%; max-width: 340px; }
.cph-img-wrap img { width: 100%; height: auto; display: block; filter: drop-shadow(0 24px 40px rgba(0,0,0,0.1)); }
.cph-placeholder { width: 280px; height: 320px; border: 1px dashed var(--gray); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: var(--gray); }
.cph-placeholder svg { width: 28px; height: 28px; stroke: var(--gray); fill: none; stroke-width: 1.5; }
.cph-placeholder span { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; }
.cph-replace { position: absolute; bottom: 16px; right: 16px; background: var(--white); border: 1px solid var(--gray); padding: 7px 14px; font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mid); font-weight: 500; opacity: 0; transition: opacity .2s; cursor: pointer; font-family: 'DM Sans', sans-serif; }

/* ── BENEFITS BAR ── */
.benefits-bar { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--gray-light); background: var(--white); }
.benefit { padding: 28px 24px; border-right: 1px solid var(--gray-light); display: flex; gap: 14px; align-items: flex-start; }
.benefit:last-child { border-right: none; }
.b-icon svg { width: 22px; height: 22px; stroke: var(--black); fill: none; stroke-width: 1.5; flex-shrink: 0; margin-top: 2px; }
.b-title { font-size: 11px; font-weight: 700; color: var(--black); margin-bottom: 2px; letter-spacing: 0.3px; }
.b-text { font-size: 10px; color: var(--mid); line-height: 1.6; font-weight: 300; }

/* ── PRODUCTS SECTION ── */
.products-section { padding: 72px 60px; background: var(--off); }
.ps-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 40px; }
.ps-title { font-family: 'Cormorant Garamond', serif; font-size: 38px; font-weight: 300; color: var(--black); }
.ps-title em { font-style: italic; }
.ps-count { font-size: 10px; color: var(--mid); letter-spacing: 1px; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--gray-light); }

/* ── PRODUCT CARD ── */
.prd { background: var(--white); transition: background .2s; overflow: hidden; }
.prd:hover { background: var(--off); }
.prd-img { position: relative; aspect-ratio: 1; background: var(--cream); display: flex; align-items: center; justify-content: center; cursor: pointer; overflow: hidden; }
.prd-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s; display: none; }
.prd-img img.loaded { display: block; }
.prd:hover .prd-img img { transform: scale(1.03); }
.prd-img-ph { display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--gray); pointer-events: none; z-index: 1; position: relative; }
.prd-img-ph svg { width: 22px; height: 22px; stroke: var(--gray); fill: none; stroke-width: 1.5; }
.prd-img-ph span { font-size: 8px; letter-spacing: 2px; text-transform: uppercase; }
.prd-img input[type=file] { display: none; }
.prd-badge { position: absolute; top: 0; left: 0; background: var(--black); color: var(--white); font-size: 7px; letter-spacing: 2px; font-weight: 700; text-transform: uppercase; padding: 5px 10px; }
.prd-badge.new { background: var(--dark); }
.prd-body { padding: 20px; border-top: 1px solid var(--gray-light); }
.prd-name { font-size: 13px; font-weight: 600; color: var(--black); margin-bottom: 4px; line-height: 1.3; }
.prd-desc { font-size: 11px; color: var(--mid); line-height: 1.65; margin-bottom: 14px; font-weight: 300; }
.prd-sizes { display: flex; gap: 5px; margin-bottom: 14px; flex-wrap: wrap; }
.prd-size { padding: 5px 11px; border: 1px solid var(--gray); font-size: 9px; font-weight: 600; color: var(--dark); cursor: pointer; transition: all .2s; }
.prd-size:hover, .prd-size.active { border-color: var(--black); background: var(--black); color: var(--white); }
.prd-price-row { display: flex; align-items: baseline; gap: 7px; margin-bottom: 14px; }
.prd-price { font-size: 17px; font-weight: 700; color: var(--black); }
.prd-old { font-size: 12px; color: var(--mid); text-decoration: line-through; font-weight: 300; }
.prd-off { font-size: 9px; font-weight: 700; color: var(--dark); letter-spacing: 1px; }
.prd-add { width: 100%; padding: 12px; background: var(--black); color: var(--white); border: none; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: background .2s; }
.prd-add:hover { background: var(--dark); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .top-bar { padding: 8px 24px; }
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hero, .cat-hero, .why-section, .trade-section { grid-template-columns: 1fr; }
  .hero-right, .cph-right { min-height: 360px; }
  .hero-left, .cph-left { padding: 48px 24px; }
  .discover, .products-section, .why-section, .trade-section { padding: 56px 24px; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar, .benefits-bar { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  footer { padding: 48px 24px 32px; }
  .why-img-grid { display: none; }
}
@media (max-width: 600px) {
  .cat-grid, .products-grid { grid-template-columns: 1fr; }
  .stats-bar, .benefits-bar { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
}
