/* ═══════════════════════════════════════════════════════════
   PichilemuWear — Costanera Design System
   Sage · Cream · Navy · Gold — pensado para el clima de la costa
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Cormorant+Garamond:ital,wght@1,500;1,600&family=Syne:wght@500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap');

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

:root {
  --bg: #F8F5F0;
  --bg-warm: #F0EBE3;
  --bg-card: #FFFFFF;
  --bg-dark: #1A1F35;
  --surface: rgba(255,255,255,0.7);
  --glass: rgba(255,255,255,0.15);
  --sage: #9CAF88;
  --sage-light: #B8CCA8;
  --sage-dark: #7A9268;
  --navy: #1A1F35;
  --cream: #E8DED1;
  --gold: #C4A97D;
  --gold-light: #D4BC96;
  --ocean: #5B8FA8;
  --coral: #D4856A;
  --text-primary: #1A1F35;
  --text-secondary: #5A6178; /* A11Y: 6.43:1 on --bg — PASSES WCAG AA normal text */
  --text-muted: #8B90A0;     /* A11Y WARNING: 3.23:1 on --bg — FAILS WCAG AA for body text. Only for 18pt+ (large) or decorative meta. Suggested fix: #6C7285 (≈4.54:1). */
  --text-light: #F8F5F0;
  /* A11Y NOTES on brand colors (WCAG 1.4.3 Contrast Minimum):
     --sage #9CAF88 on white = 2.42:1 → FAIL normal text / FAIL 3:1 large. OK only for background-with-white-text (2.42:1 actually FAILS white text too — use --sage-dark for button bg).
     --sage on --navy = 7.27:1 → PASS.
     --sage on --bg = 2.30:1 → FAIL. Currently used for .pw-product-brand / .pw-section-tag — borderline for uppercase micro-copy; swap to --sage-dark (~3.28:1, still FAIL normal) or --navy for AA compliance.
     --gold #C4A97D on --bg = 2.14:1 → FAIL. OK only for decorative stars / large headlines (>24px bold).
     #fff on --sage bg = 2.42:1 → FAIL AA. .pw-btn-primary / .pw-announce need white text on --sage-dark (3.28:1 large only) or a darker sage (#5F7A4E = 4.56:1) for AA body-text compliance. */
  --border: rgba(26,31,53,0.08);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-accent: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-heading: 'Syne', 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'DM Sans', 'Inter', system-ui, sans-serif;
  --container: 1320px;
  --gap: 24px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration: 0.4s;
  --shadow: 0 4px 20px rgba(26,31,53,0.06);
  --shadow-lg: 0 20px 60px rgba(26,31,53,0.1);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text-primary); line-height: 1.6; overflow-x: hidden; }
.pw-container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gap); }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--duration) var(--ease); }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ═══ ACCESSIBILITY HELPERS ═══ */
/* Visually hidden but available to assistive technology (WCAG 1.3.1, 4.1.2) */
.pw-sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }

/* Skip link (WCAG 2.4.1 Bypass Blocks) */
.pw-skip-link { position: absolute; top: -48px; left: 12px; z-index: 10000; background: var(--navy); color: #fff; padding: 10px 18px; border-radius: 0 0 12px 12px; font-weight: 700; font-size: 14px; text-decoration: none; transition: top 0.2s var(--ease); }
.pw-skip-link:focus { top: 0; outline: 3px solid var(--sage-light); outline-offset: 2px; }

/* Focus indicators (WCAG 2.4.7 Focus Visible) */
:focus { outline: none; }
:focus-visible { outline: 3px solid var(--sage-dark); outline-offset: 2px; border-radius: 4px; }
/* Stronger outlines for dark/photo backgrounds where sage-dark may not contrast */
.pw-header a:focus-visible, .pw-header button:focus-visible,
.pw-nav a:focus-visible, .pw-footer a:focus-visible, .pw-footer button:focus-visible,
.pw-trends a:focus-visible, .pw-trends button:focus-visible,
.pw-hero a:focus-visible, .pw-hero button:focus-visible,
.pw-lang-btn:focus-visible,
.pw-cat-card:focus-visible, .pw-pichi-card:focus-visible, .pw-trend-card:focus-visible,
.pw-ai-banner a:focus-visible, .pw-ai-banner button:focus-visible,
.pw-ig-card:focus-visible { outline: 3px solid var(--sage-light); outline-offset: 3px; }
/* Keep input focus clear against cream background */
input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid var(--sage-dark); outline-offset: 1px; border-color: var(--sage-dark); }

/* Reduced motion (WCAG 2.3.3 Animation from Interactions) */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .pw-hero__scroll-line { animation: none !important; }
  .pw-hero video, video[autoplay] { display: none; }
}

/* Headings that need visual override (semantic level changed to fix hierarchy — WCAG 1.3.1) */
.pw-footer-heading { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin-bottom: 16px; color: #fff; }
.pw-trust-heading { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.pw-cart-title { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--navy); margin: 0; }
.pw-summary-h2 { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 20px; letter-spacing: -0.01em; }
.pw-confirm-box-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }

/* ═══ LANGUAGE BAR ═══ */
.pw-lang-bar { background: var(--bg-dark); color: var(--text-light); font-size: 12px; padding: 6px 0; position: relative; z-index: 1001; }
.pw-lang-inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--gap); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.pw-lang-label { opacity: 0.6; font-size: 11px; }
.pw-lang-options { display: flex; gap: 4px; flex: 1; justify-content: flex-start; margin-left: 12px; }
.pw-lang-btn { background: rgba(255,255,255,0.08); color: var(--text-light); border: 1px solid rgba(255,255,255,0.1); padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 500; transition: all 0.3s var(--ease); display: flex; align-items: center; gap: 4px; }
.pw-lang-btn:hover, .pw-lang-btn.active { background: var(--sage); border-color: var(--sage); color: #fff; }
.pw-ai-badge { display: inline-flex; align-items: center; gap: 5px; background: linear-gradient(135deg, var(--sage), var(--ocean)); padding: 3px 10px; border-radius: 20px; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: #fff; }

/* ═══ ANNOUNCEMENT BAR ═══ */
.pw-announce { background: linear-gradient(90deg, var(--sage-dark) 0%, var(--sage) 50%, var(--sage-dark) 100%); color: #fff; text-align: center; padding: 9px var(--gap); font-size: 12.5px; font-weight: 500; letter-spacing: 0.5px; }
.pw-announce strong { font-weight: 700; letter-spacing: 1px; }

/* ═══ HEADER ═══ */
.pw-header { position: sticky; top: 0; z-index: 999; background: rgba(248,245,240,0.88); backdrop-filter: blur(24px) saturate(140%); -webkit-backdrop-filter: blur(24px) saturate(140%); border-bottom: 1px solid transparent; transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease); }
.pw-header.scrolled { box-shadow: 0 2px 24px rgba(26,31,53,0.05); border-bottom-color: var(--border); background: rgba(248,245,240,0.96); }
.pw-header-inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--gap); display: grid; grid-template-columns: auto 1fr auto; align-items: center; height: 76px; gap: 24px; }
.pw-brand { display: inline-flex; align-items: center; flex-shrink: 0; transition: opacity 0.3s var(--ease); }
.pw-brand:hover { opacity: 0.78; }
.pw-brand img { height: 42px; width: auto; max-width: 180px; object-fit: contain; display: block; }
.pw-brand-text { font-family: var(--font-display); font-size: 20px; font-weight: 700; letter-spacing: 0.5px; color: var(--navy); }
.pw-brand-text small { font-family: var(--font-heading); font-size: 11px; font-weight: 400; letter-spacing: 3px; text-transform: uppercase; display: block; color: var(--sage); margin-top: -4px; }
.pw-nav { display: flex; align-items: center; justify-content: center; gap: 30px; }
.pw-nav-link { font-size: 13.5px; font-weight: 500; color: var(--text-secondary); padding: 10px 2px; position: relative; letter-spacing: 0.4px; white-space: nowrap; }
.pw-nav-link::after { content: ''; position: absolute; bottom: 4px; left: 0; width: 0; height: 1.5px; background: var(--sage); transition: width 0.35s var(--ease); }
.pw-nav-link:hover, .pw-nav-link.active { color: var(--navy); }
.pw-nav-link:hover::after, .pw-nav-link.active::after { width: 100%; }
.pw-nav-highlight { color: var(--sage-dark) !important; font-weight: 600; position: relative; }
.pw-nav-highlight::before { content: ''; position: absolute; top: 4px; right: -8px; width: 6px; height: 6px; border-radius: 50%; background: var(--coral); }
.pw-header-actions { display: flex; align-items: center; gap: 4px; justify-self: end; }
.pw-action-btn { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; transition: all 0.3s var(--ease); position: relative; color: var(--navy); font-size: 16px; }
.pw-action-btn i { line-height: 1; }
.pw-action-btn:hover { background: var(--cream); color: var(--sage-dark); transform: translateY(-1px); }
.pw-action-btn:active { transform: translateY(0); }
.pw-cart-count { position: absolute; top: 0px; right: 0px; background: var(--sage); color: #fff; font-size: 10px; font-weight: 700; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 10px; display: flex; align-items: center; justify-content: center; opacity: 0; transform: scale(0); transition: all 0.3s var(--ease-bounce); box-shadow: 0 2px 6px rgba(156,175,136,0.4); border: 2px solid var(--bg); }
.pw-cart-count.visible { opacity: 1; transform: scale(1); }
.pw-cart-count.bump { animation: pwBump 0.3s var(--ease-bounce); }
@keyframes pwBump { 50% { transform: scale(1.4); } }

/* Search */
.pw-search-overlay { position: fixed; top: 72px; left: 0; right: 0; background: var(--bg-card); padding: 20px var(--gap); box-shadow: var(--shadow-lg); transform: translateY(-10px); opacity: 0; visibility: hidden; transition: all 0.3s var(--ease); z-index: 998; }
.pw-search-overlay.active { transform: translateY(0); opacity: 1; visibility: visible; }
.pw-search-overlay form { max-width: 680px; margin: 0 auto; display: flex; gap: 12px; }
.pw-search-overlay input { flex: 1; padding: 14px 20px; border: 1px solid var(--border); border-radius: 30px; font-size: 15px; font-family: inherit; background: var(--bg); }
.pw-search-overlay input:focus { outline: none; border-color: var(--sage); }
.pw-search-overlay button { padding: 14px 28px; background: var(--navy); color: #fff; border-radius: 30px; font-weight: 600; font-size: 14px; }

/* ═══ HERO VIDEO ═══ */
.pw-hero { position: relative; height: calc(100vh - 110px); min-height: 560px; max-height: 820px; overflow: hidden; background: var(--navy); }
.pw-hero__bg { position: absolute; inset: 0; z-index: 0; }
.pw-hero__bg video { width: 100%; height: 100%; object-fit: cover; }
.pw-hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26,31,53,0.45) 0%, rgba(26,31,53,0.55) 60%, rgba(26,31,53,0.78) 100%); }
.pw-hero__content { position: relative; z-index: 2; max-width: var(--container); margin: 0 auto; padding: 0 var(--gap); height: 100%; display: flex; flex-direction: column; justify-content: center; color: #fff; }
.pw-hero__badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.08); backdrop-filter: blur(14px); padding: 9px 20px; border-radius: 30px; font-size: 11.5px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; width: fit-content; margin-bottom: 28px; border: 1px solid rgba(255,255,255,0.14); }
.pw-hero__badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sage-light); box-shadow: 0 0 12px rgba(184,204,168,0.8); animation: pwPulseDot 2s ease-in-out infinite; }
@keyframes pwPulseDot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(0.85); } }
.pw-hero__title { font-family: var(--font-display); font-size: clamp(48px, 9vw, 112px); line-height: 0.95; font-weight: 700; letter-spacing: -0.025em; margin-bottom: 24px; }
.pw-hero__title-main { display: block; }
.pw-hero__title-accent { display: block; font-family: var(--font-accent); font-style: italic; color: var(--sage-light); font-weight: 500; letter-spacing: -0.01em; }
.pw-hero__sub { font-size: clamp(15px, 1.9vw, 19px); max-width: 540px; opacity: 0.92; margin-bottom: 36px; line-height: 1.55; font-weight: 400; }
.pw-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 60px; }
.pw-btn { padding: 16px 32px; font-size: 13px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; border-radius: 30px; transition: all 0.3s var(--ease); display: inline-flex; align-items: center; justify-content: center; gap: 10px; cursor: pointer; font-family: inherit; white-space: nowrap; }
.pw-btn-primary { background: var(--sage); color: #fff; box-shadow: 0 6px 20px rgba(156,175,136,0.25); }
.pw-btn-primary:hover { background: var(--sage-dark); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(156,175,136,0.45); }
.pw-btn-primary:active { transform: translateY(0); }
.pw-btn-ghost { background: rgba(255,255,255,0.04); color: #fff; border: 1px solid rgba(255,255,255,0.28); backdrop-filter: blur(10px); }
.pw-btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; transform: translateY(-2px); }
.pw-btn-dark { background: var(--navy); color: #fff; }
.pw-btn-dark:hover { background: #000; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(26,31,53,0.3); }
.pw-btn-lg { padding: 17px 34px; font-size: 13px; }
.pw-btn-block { width: 100%; justify-content: center; }
.pw-hero__stats { display: flex; align-items: center; gap: 32px; }
.pw-hero__stat { display: flex; flex-direction: column; gap: 4px; }
.pw-hero__stat-num { font-family: var(--font-display); font-size: 32px; font-weight: 700; line-height: 1; }
.pw-hero__stat-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; opacity: 0.7; }
.pw-hero__stat-div { width: 1px; height: 32px; background: rgba(255,255,255,0.2); }
.pw-hero__scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; color: #fff; opacity: 0.6; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; }
.pw-hero__scroll-line { width: 1px; height: 40px; background: currentColor; animation: pwScrollPulse 2s ease-in-out infinite; transform-origin: top; }
@keyframes pwScrollPulse { 0%, 100% { transform: scaleY(0.3); opacity: 0.3; } 50% { transform: scaleY(1); opacity: 0.8; } }

/* ═══ SECTION HELPERS ═══ */
.pw-section { padding: 96px 0; }
.pw-section-tight { padding: 56px 0; }
.pw-section-header { text-align: center; margin-bottom: 56px; }
.pw-section-tag { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--sage); margin-bottom: 16px; }
.pw-section-tag::before, .pw-section-tag::after { content: ''; width: 24px; height: 1px; background: currentColor; opacity: 0.5; }
.pw-section-title { font-family: var(--font-display); font-size: clamp(34px, 4.5vw, 54px); font-weight: 700; line-height: 1.08; color: var(--navy); margin-bottom: 18px; letter-spacing: -0.02em; }
.pw-section-sub { font-size: 16px; color: var(--text-secondary); max-width: 620px; margin: 0 auto; line-height: 1.65; }

/* ═══ CATEGORIES GRID ═══ */
.pw-categories { padding: 96px 0; background: var(--bg); }
.pw-cat-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 20px; height: 540px; }
.pw-cat-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); isolation: isolate; }
.pw-cat-card.pw-cat-large { grid-row: span 2; }
.pw-cat-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -20px rgba(26,31,53,0.25); }
.pw-cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.pw-cat-card:hover img { transform: scale(1.06); }
.pw-cat-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26,31,53,0) 0%, rgba(26,31,53,0.35) 55%, rgba(26,31,53,0.88) 100%); transition: opacity 0.5s var(--ease); }
.pw-cat-card:hover .pw-cat-overlay { opacity: 0.9; }
.pw-cat-content { position: absolute; bottom: 32px; left: 32px; right: 32px; color: #fff; z-index: 2; }
.pw-cat-label { font-family: var(--font-display); font-size: clamp(24px, 2.4vw, 34px); font-weight: 700; display: block; margin-bottom: 6px; letter-spacing: -0.01em; transform: translateY(0); transition: transform 0.5s var(--ease); }
.pw-cat-count { font-family: var(--font-heading); font-size: 11px; opacity: 0.85; letter-spacing: 2px; text-transform: uppercase; display: block; margin-bottom: 18px; font-weight: 500; }
.pw-cat-arrow { display: inline-flex; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,0.35); border-radius: 50%; align-items: center; justify-content: center; font-size: 17px; transition: all 0.4s var(--ease); backdrop-filter: blur(6px); background: rgba(255,255,255,0.06); }
.pw-cat-card:hover .pw-cat-arrow { background: var(--sage); border-color: var(--sage); transform: translateX(10px); box-shadow: 0 8px 24px rgba(156,175,136,0.4); }
.pw-cat-card:hover .pw-cat-label { transform: translateY(-2px); }

/* ═══ AI BANNER ═══ */
.pw-ai-banner { padding: 40px 0; background: var(--bg); }
.pw-ai-inner { background: linear-gradient(135deg, var(--navy) 0%, #2A2F45 100%); color: #fff; border-radius: var(--radius-xl); padding: 44px 52px; display: flex; align-items: center; gap: 28px; position: relative; overflow: hidden; }
.pw-ai-inner::before { content: ''; position: absolute; top: -60%; right: -10%; width: 440px; height: 440px; background: radial-gradient(circle, rgba(156,175,136,0.35) 0%, transparent 70%); filter: blur(60px); animation: pwFloat 12s ease-in-out infinite; }
.pw-ai-inner::after { content: ''; position: absolute; bottom: -40%; left: -10%; width: 320px; height: 320px; background: radial-gradient(circle, rgba(91,143,168,0.25) 0%, transparent 70%); filter: blur(60px); }
@keyframes pwFloat { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-20px, 15px); } }
.pw-ai-icon { width: 72px; height: 72px; border-radius: 50%; background: rgba(156,175,136,0.2); display: flex; align-items: center; justify-content: center; color: var(--sage-light); flex-shrink: 0; position: relative; z-index: 2; border: 1px solid rgba(156,175,136,0.3); }
.pw-ai-text { flex: 1; position: relative; z-index: 2; }
.pw-ai-text h3 { font-family: var(--font-display); font-size: 26px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.pw-ai-text p { opacity: 0.82; font-size: 14.5px; line-height: 1.55; max-width: 640px; }
.pw-btn-ai { background: var(--sage); color: #fff; border-radius: 30px; padding: 15px 28px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; font-size: 12.5px; transition: all 0.3s var(--ease); position: relative; z-index: 2; flex-shrink: 0; box-shadow: 0 6px 20px rgba(156,175,136,0.3); white-space: nowrap; }
.pw-btn-ai:hover { background: var(--sage-light); transform: translateX(4px); box-shadow: 0 10px 28px rgba(156,175,136,0.45); }

/* ═══ PRODUCTS SECTION ═══ */
.pw-products { padding: 96px 0; background: var(--bg); }
.pw-products-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 44px; flex-wrap: wrap; }
.pw-filter-tabs { display: inline-flex; gap: 2px; background: var(--bg-warm); padding: 5px; border-radius: 30px; flex-wrap: wrap; }
.pw-filter-tab { padding: 10px 22px; font-size: 13px; font-weight: 600; letter-spacing: 0.3px; color: var(--text-secondary); border-radius: 24px; transition: all 0.3s var(--ease); white-space: nowrap; }
.pw-filter-tab:hover { color: var(--navy); background: rgba(255,255,255,0.5); }
.pw-filter-tab.active { background: var(--navy); color: #fff; box-shadow: 0 4px 12px rgba(26,31,53,0.15); }
.pw-sort-select { position: relative; }
.pw-sort-select select { padding: 11px 42px 11px 20px; border: 1px solid var(--border); border-radius: 24px; font-size: 13px; font-weight: 600; color: var(--navy); background: var(--bg-card); cursor: pointer; appearance: none; font-family: inherit; transition: border-color 0.2s, box-shadow 0.2s; }
.pw-sort-select select:hover { border-color: var(--sage); }
.pw-sort-select select:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(156,175,136,0.15); }
.pw-sort-select::after { content: '▾'; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); pointer-events: none; color: var(--text-secondary); font-size: 12px; }

/* ═══ PRODUCT GRID ═══ */
.pw-products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.pw-product-card { background: var(--bg-card); border-radius: var(--radius-lg); overflow: hidden; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); position: relative; display: flex; flex-direction: column; border: 1px solid transparent; }
.pw-product-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -20px rgba(26,31,53,0.18); border-color: var(--border); }
.pw-product-img-wrap { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--bg-warm); }
.pw-product-img-wrap a { display: block; width: 100%; height: 100%; position: absolute; inset: 0; }
.pw-product-img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease), opacity 0.6s var(--ease); position: absolute; inset: 0; }
.pw-product-img-2 { opacity: 0; transform: scale(1.02); }
.pw-product-card:hover .pw-product-img-1 { opacity: 0; transform: scale(1.03); }
.pw-product-card:hover .pw-product-img-2 { opacity: 1; transform: scale(1.05); }
.pw-product-img-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26,31,53,0) 60%, rgba(26,31,53,0.08) 100%); pointer-events: none; opacity: 0; transition: opacity 0.4s var(--ease); }
.pw-product-card:hover .pw-product-img-wrap::after { opacity: 1; }
.pw-product-badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; align-items: flex-start; gap: 5px; z-index: 2; }
.pw-badge { padding: 5px 11px; font-size: 10px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; border-radius: 20px; line-height: 1; backdrop-filter: blur(10px); box-shadow: 0 2px 8px rgba(26,31,53,0.1); }
.pw-badge-new { background: var(--sage); color: #fff; }
.pw-badge-sale { background: var(--coral); color: #fff; }
.pw-badge-popular { background: var(--gold); color: #fff; }
.pw-badge-oferta { background: var(--coral); color: #fff; }
.pw-badge-vintage { background: rgba(26,31,53,0.92); color: #fff; }
.pw-badge-last { background: rgba(255,255,255,0.95); color: var(--navy); border: 1px solid rgba(26,31,53,0.06); }
.pw-product-wishlist { position: absolute; top: 12px; right: 12px; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); display: flex; align-items: center; justify-content: center; color: var(--navy); z-index: 3; opacity: 0; transform: translateY(-6px); transition: all 0.35s var(--ease); box-shadow: 0 4px 12px rgba(26,31,53,0.08); }
.pw-product-card:hover .pw-product-wishlist { opacity: 1; transform: translateY(0); }
.pw-product-wishlist:hover { color: var(--coral); transform: scale(1.08); }
.pw-product-wishlist .fas { color: var(--coral); }
.pw-product-info { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 6px; }
.pw-product-brand { font-family: var(--font-heading); font-size: 10px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--sage-dark); }
.pw-product-name { font-family: var(--font-display); font-size: 17px; font-weight: 600; line-height: 1.25; color: var(--navy); letter-spacing: -0.01em; }
.pw-product-name a { color: inherit; transition: color 0.2s var(--ease); }
.pw-product-name a:hover { color: var(--sage-dark); }
.pw-product-meta { font-size: 12px; color: var(--text-muted); letter-spacing: 0.3px; }
.pw-product-price-row { display: flex; align-items: baseline; gap: 10px; margin-top: 6px; min-height: 26px; }
.pw-product-price { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--navy); letter-spacing: -0.01em; }
.pw-product-price-old { font-size: 14px; color: var(--text-muted); text-decoration: line-through; }
.pw-product-add { margin-top: 14px; width: 100%; padding: 13px; background: var(--navy); color: #fff; border-radius: 24px; font-size: 11.5px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; transition: all 0.3s var(--ease); display: flex; align-items: center; justify-content: center; gap: 8px; }
.pw-product-add:hover { background: var(--sage-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(122,146,104,0.3); }
.pw-product-add:active { transform: translateY(0); }
.pw-product-add.added { background: var(--sage); }

/* ═══ PICHILEMU LIFESTYLE ═══ */
.pw-pichilemu { padding: 96px 0; background: var(--bg-warm); }
.pw-pichi-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 260px); gap: 18px; }
.pw-pichi-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.pw-pichi-card.pw-pichi-large { grid-column: span 2; grid-row: span 2; }
.pw-pichi-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -20px rgba(26,31,53,0.25); }
.pw-pichi-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.pw-pichi-card:hover img { transform: scale(1.06); }
.pw-pichi-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26,31,53,0) 40%, rgba(26,31,53,0.85) 100%); padding: 28px; display: flex; flex-direction: column; justify-content: flex-end; color: #fff; }
.pw-pichi-overlay h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.01em; transform: translateY(6px); transition: transform 0.4s var(--ease); }
.pw-pichi-overlay p { font-size: 13px; opacity: 0.85; max-width: 400px; line-height: 1.5; transform: translateY(6px); transition: transform 0.4s var(--ease); transition-delay: 0.05s; }
.pw-pichi-card:hover .pw-pichi-overlay h3, .pw-pichi-card:hover .pw-pichi-overlay p { transform: translateY(0); }

/* ═══ TRUST SECTION ═══ */
.pw-trust { padding: 72px 0; background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pw-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pw-trust-card { text-align: center; padding: 20px 20px; transition: transform 0.3s var(--ease); }
.pw-trust-card:hover { transform: translateY(-4px); }
.pw-trust-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--cream); color: var(--sage-dark); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; transition: all 0.35s var(--ease); }
.pw-trust-card:hover .pw-trust-icon { background: var(--sage); color: #fff; transform: scale(1.08) rotate(-4deg); box-shadow: 0 12px 30px rgba(156,175,136,0.3); }
.pw-trust-card h4 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--navy); letter-spacing: -0.01em; }
.pw-trust-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.55; }

/* ═══ INSTAGRAM FEED ═══ */
.pw-instagram { padding: 96px 0; background: var(--bg); }
.pw-ig-feed { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin-bottom: 40px; }
.pw-ig-card { position: relative; aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.pw-ig-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.pw-ig-card:hover img { transform: scale(1.08); }
.pw-ig-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(240,148,51,0.85), rgba(188,24,136,0.85)); display: flex; align-items: center; justify-content: center; color: #fff; opacity: 0; transition: opacity 0.35s var(--ease); font-size: 14px; font-weight: 600; gap: 8px; backdrop-filter: blur(2px); }
.pw-ig-card:hover .pw-ig-overlay { opacity: 1; }
.pw-ig-cta { text-align: center; }
.pw-btn-ig { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(45deg,#F09433,#E6683C,#DC2743,#CC2366,#BC1888); color: #fff; padding: 15px 34px; border-radius: 30px; font-weight: 600; font-size: 14px; letter-spacing: 0.3px; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); box-shadow: 0 6px 20px rgba(220,39,67,0.25); }
.pw-btn-ig:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 12px 30px rgba(220,39,67,0.4); }

/* ═══ TRENDS 2026 ═══ */
.pw-trends { padding: 96px 0; background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.pw-trends::before { content: ''; position: absolute; top: -20%; left: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(156,175,136,0.12) 0%, transparent 70%); filter: blur(80px); pointer-events: none; }
.pw-trends .pw-container { position: relative; z-index: 1; }
.pw-trends .pw-section-title { color: #fff; }
.pw-trends .pw-section-sub { color: rgba(255,255,255,0.7); }
.pw-trends .pw-section-tag { color: var(--sage-light); }
.pw-trends-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 320px); gap: 20px; }
.pw-trend-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.pw-trend-card--large { grid-column: span 2; grid-row: span 1; }
.pw-trend-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5); }
.pw-trend-img { position: absolute; inset: 0; }
.pw-trend-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.pw-trend-card:hover .pw-trend-img img { transform: scale(1.06); }
.pw-trend-gradient { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26,31,53,0.15) 0%, rgba(26,31,53,0.5) 50%, rgba(26,31,53,0.96) 100%); transition: opacity 0.5s var(--ease); }
.pw-trend-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px; color: #fff; }
.pw-trend-number { font-family: var(--font-heading); font-size: 11px; font-weight: 600; color: var(--sage-light); letter-spacing: 3px; margin-bottom: 8px; display: block; }
.pw-trend-name { font-family: var(--font-display); font-size: 28px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; line-height: 1.1; }
.pw-trend-desc { font-size: 13px; opacity: 0.85; line-height: 1.55; margin-bottom: 16px; max-width: 480px; }
.pw-trend-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.pw-trend-tags span { padding: 5px 12px; border: 1px solid rgba(255,255,255,0.22); border-radius: 20px; font-size: 11px; letter-spacing: 0.5px; font-weight: 500; backdrop-filter: blur(6px); transition: all 0.3s var(--ease); }
.pw-trend-card:hover .pw-trend-tags span { border-color: rgba(184,204,168,0.4); background: rgba(156,175,136,0.12); }
.pw-trends-ai-note { margin-top: 44px; text-align: center; display: flex; justify-content: center; align-items: center; gap: 10px; font-size: 13px; color: var(--sage-light); letter-spacing: 0.5px; }
.pw-trends-ai-note i { animation: pwPulse 3s ease-in-out infinite; }
@keyframes pwPulse { 0%, 100% { opacity: 0.7; } 50% { opacity: 1; } }

/* ═══ NEWSLETTER ═══ */
.pw-newsletter { padding: 80px 0; background: var(--bg-warm); position: relative; overflow: hidden; }
.pw-newsletter::before { content: ''; position: absolute; top: -20%; right: -10%; width: 360px; height: 360px; background: radial-gradient(circle, rgba(156,175,136,0.15) 0%, transparent 70%); filter: blur(50px); pointer-events: none; }
.pw-newsletter-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1020px; margin: 0 auto; padding: 0 var(--gap); position: relative; z-index: 1; }
.pw-newsletter-text h2 { font-family: var(--font-display); font-size: clamp(30px, 3.5vw, 40px); font-weight: 700; color: var(--navy); margin-bottom: 12px; letter-spacing: -0.02em; }
.pw-newsletter-text p { color: var(--text-secondary); font-size: 15px; line-height: 1.6; }
.pw-newsletter-form { display: flex; gap: 10px; }
.pw-newsletter-input { flex: 1; padding: 16px 22px; border: 1px solid var(--border); border-radius: 30px; font-size: 14px; background: var(--bg-card); font-family: inherit; color: var(--navy); transition: border-color 0.2s, box-shadow 0.2s; }
.pw-newsletter-input:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(156,175,136,0.15); }
.pw-newsletter-input::placeholder { color: var(--text-muted); }

/* ═══ EMPTY STATE ═══ */
.pw-empty { text-align: center; padding: 80px 24px; color: var(--text-muted); background: var(--bg-card); border-radius: var(--radius-lg); border: 1px dashed var(--border); }
.pw-empty h3 { font-family: var(--font-display); color: var(--navy); font-size: 22px; margin-bottom: 8px; }

/* ═══ CART DRAWER ═══ */
.pw-cart-drawer { position: fixed; top: 0; right: 0; width: 440px; max-width: 92vw; height: 100vh; background: var(--bg-card); box-shadow: -20px 0 80px rgba(26,31,53,0.18); z-index: 2000; display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.5s var(--ease); }
.pw-cart-drawer.open { transform: translateX(0); }
.pw-cart-overlay { position: fixed; inset: 0; background: rgba(26,31,53,0.5); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); z-index: 1999; opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease); }
.pw-cart-overlay.open { opacity: 1; pointer-events: auto; }
.pw-cart-header { padding: 24px 26px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.pw-cart-header h3 { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--navy); letter-spacing: -0.01em; }
.pw-cart-close { width: 38px; height: 38px; border-radius: 50%; background: var(--bg-warm); display: flex; align-items: center; justify-content: center; color: var(--navy); transition: all 0.25s; }
.pw-cart-close:hover { background: var(--navy); color: #fff; transform: rotate(90deg); }
.pw-cart-body { flex: 1; overflow-y: auto; padding: 18px 26px; }
.pw-cart-body::-webkit-scrollbar { width: 6px; }
.pw-cart-body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
.pw-cart-empty { text-align: center; padding: 60px 20px; color: var(--text-muted); font-family: var(--font-display); font-size: 16px; font-style: italic; }
.pw-cart-item { display: grid; grid-template-columns: 72px 1fr auto; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.pw-cart-item:last-child { border-bottom: none; }
.pw-cart-item img { width: 72px; height: 90px; border-radius: var(--radius); object-fit: cover; background: var(--bg-warm); }
.pw-cart-item-info { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.pw-cart-item-info strong, .pw-cart-item-name { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--navy); line-height: 1.3; letter-spacing: -0.005em; }
.pw-cart-item-info small { font-size: 11px; color: var(--text-muted); letter-spacing: 0.3px; text-transform: uppercase; }
.pw-cart-item-price, .pw-cart-price { font-size: 14px; font-weight: 700; color: var(--sage-dark); font-family: var(--font-display); margin-top: 4px; }
.pw-cart-qty { display: inline-flex; align-items: center; background: var(--bg-warm); border-radius: 20px; padding: 3px; margin-top: 6px; width: fit-content; }
.pw-cart-qty button { width: 26px; height: 26px; border-radius: 50%; background: transparent; font-weight: 700; color: var(--navy); transition: background 0.2s; font-size: 14px; }
.pw-cart-qty button:hover { background: var(--bg-card); }
.pw-cart-qty span { min-width: 28px; text-align: center; font-size: 13px; font-weight: 600; }
.pw-cart-item-remove, .pw-cart-remove { background: transparent; color: var(--text-muted); font-size: 14px; align-self: flex-start; padding: 6px; cursor: pointer; transition: color 0.2s var(--ease); border-radius: 50%; width: 30px; height: 30px; display: inline-flex; align-items: center; justify-content: center; }
.pw-cart-item-remove:hover, .pw-cart-remove:hover { color: var(--coral); background: rgba(212,133,106,0.1); }
.pw-cart-footer { padding: 20px 26px 26px; border-top: 1px solid var(--border); background: var(--bg-warm); }
.pw-cart-subtotal { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; font-family: var(--font-display); }
.pw-cart-subtotal span { font-size: 13px; color: var(--text-secondary); letter-spacing: 0.5px; text-transform: uppercase; font-family: var(--font-heading); font-weight: 500; }
.pw-cart-subtotal strong { font-size: 24px; color: var(--navy); font-weight: 700; letter-spacing: -0.01em; }

/* ═══ FOOTER ═══ */
.pw-footer { background: var(--navy); color: #fff; padding: 80px 0 0; }
.pw-footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.pw-footer-brand img { height: 42px; max-width: 200px; width: auto; object-fit: contain; margin-bottom: 20px; }
.pw-footer-brand p { font-size: 14px; opacity: 0.7; line-height: 1.65; max-width: 380px; margin-bottom: 16px; }
.pw-footer-address { font-size: 13px; opacity: 0.55; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.pw-footer-social { display: flex; gap: 10px; margin-top: 10px; }
.pw-footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; color: #fff; transition: all 0.3s var(--ease); border: 1px solid rgba(255,255,255,0.08); }
.pw-footer-social a:hover { background: var(--sage); border-color: var(--sage); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(156,175,136,0.3); }
.pw-footer-col h4 { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin-bottom: 18px; letter-spacing: -0.005em; }
.pw-footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.65); padding: 6px 0; transition: all 0.25s var(--ease); }
.pw-footer-col a:hover { color: var(--sage-light); transform: translateX(4px); }
.pw-footer-col span { display: block; font-size: 13px; opacity: 0.55; margin-top: 10px; line-height: 1.65; }
.pw-footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; font-size: 12px; opacity: 0.5; flex-wrap: wrap; gap: 10px; letter-spacing: 0.3px; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1200px) {
  :root { --gap: 20px; }
  .pw-nav { gap: 22px; }
  .pw-nav-link { font-size: 13px; }
  .pw-products-grid { gap: 24px; }
}

@media (max-width: 1024px) {
  .pw-header-inner { grid-template-columns: auto auto; height: 68px; }
  .pw-nav { display: none; }
  .pw-brand img { height: 36px; }
  .pw-section { padding: 80px 0; }
  .pw-categories, .pw-products, .pw-pichilemu, .pw-instagram, .pw-trends { padding: 80px 0; }
  .pw-cat-grid { grid-template-columns: 1fr 1fr; height: auto; grid-template-rows: 340px 340px; }
  .pw-cat-card.pw-cat-large { grid-row: span 1; grid-column: span 2; height: 340px; }
  .pw-products-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .pw-pichi-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .pw-pichi-card.pw-pichi-large { grid-column: span 2; height: 340px; }
  .pw-pichi-card { height: 230px; }
  .pw-trends-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .pw-trend-card--large { grid-column: span 2; height: 300px; }
  .pw-trend-card { height: 300px; }
  .pw-trust-grid { grid-template-columns: 1fr 1fr; }
  .pw-ig-feed { grid-template-columns: repeat(3, 1fr); }
  .pw-newsletter-inner { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .pw-newsletter-form { max-width: 520px; margin: 0 auto; }
  .pw-footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .pw-ai-inner { padding: 36px 32px; gap: 24px; }
}

@media (max-width: 860px) {
  .pw-products-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .pw-ai-inner { flex-direction: column; text-align: center; padding: 32px 24px; gap: 18px; }
  .pw-ai-text p { max-width: none; }
  .pw-hero__stats { gap: 22px; }
  .pw-hero__stat-num { font-size: 26px; }
  .pw-trend-card--large, .pw-trend-card { height: 280px; }
  .pw-trend-content { padding: 24px; }
}

@media (max-width: 640px) {
  :root { --gap: 16px; }
  .pw-section { padding: 60px 0; }
  .pw-categories, .pw-products, .pw-pichilemu, .pw-instagram, .pw-trends { padding: 60px 0; }
  .pw-trust, .pw-newsletter { padding: 56px 0; }
  .pw-section-header { margin-bottom: 36px; }
  .pw-section-tag::before, .pw-section-tag::after { width: 16px; }
  .pw-lang-inner { flex-wrap: wrap; gap: 8px; }
  .pw-lang-options { margin-left: 0; }
  .pw-announce { font-size: 11px; padding: 7px 14px; letter-spacing: 0.2px; }
  .pw-brand img { height: 32px; }
  .pw-header-inner { height: 64px; gap: 12px; }
  .pw-action-btn { width: 38px; height: 38px; font-size: 15px; }
  .pw-header-actions { gap: 2px; }
  .pw-hero { height: calc(100vh - 120px); min-height: 500px; max-height: 720px; }
  .pw-hero__content { padding: 0 16px; }
  .pw-hero__badge { font-size: 10px; padding: 6px 14px; letter-spacing: 1.5px; margin-bottom: 20px; }
  .pw-hero__sub { margin-bottom: 28px; }
  .pw-hero__actions { margin-bottom: 40px; gap: 10px; }
  .pw-hero__stats { gap: 16px; flex-wrap: wrap; }
  .pw-hero__stat-num { font-size: 24px; }
  .pw-hero__stat-label { font-size: 10px; letter-spacing: 1.5px; }
  .pw-hero__stat-div { display: none; }
  .pw-hero__scroll { display: none; }
  .pw-btn { padding: 14px 26px; font-size: 12.5px; }
  .pw-cat-grid { grid-template-columns: 1fr; grid-template-rows: auto; height: auto; gap: 14px; }
  .pw-cat-card.pw-cat-large, .pw-cat-card { grid-column: span 1; height: 300px; grid-row: auto; }
  .pw-cat-content { bottom: 24px; left: 22px; right: 22px; }
  .pw-cat-label { font-size: 26px; }
  .pw-ai-inner { padding: 28px 22px; flex-direction: column; text-align: center; border-radius: var(--radius-lg); }
  .pw-ai-icon { width: 60px; height: 60px; }
  .pw-ai-text h3 { font-size: 22px; }
  .pw-products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .pw-products-toolbar { flex-direction: column; align-items: stretch; gap: 14px; margin-bottom: 32px; }
  .pw-filter-tabs { overflow-x: auto; flex-wrap: nowrap; justify-content: flex-start; padding: 4px; -webkit-overflow-scrolling: touch; }
  .pw-filter-tab { padding: 9px 18px; font-size: 12.5px; }
  .pw-filter-tabs::-webkit-scrollbar { display: none; }
  .pw-product-info { padding: 14px 14px 16px; }
  .pw-product-name { font-size: 14px; }
  .pw-product-price { font-size: 17px; }
  .pw-product-add { padding: 11px; font-size: 10.5px; margin-top: 10px; }
  .pw-product-badges { top: 10px; left: 10px; gap: 4px; }
  .pw-badge { padding: 4px 9px; font-size: 9px; }
  .pw-product-wishlist { opacity: 1; transform: translateY(0); width: 32px; height: 32px; top: 10px; right: 10px; }
  .pw-pichi-grid { grid-template-columns: 1fr; gap: 12px; }
  .pw-pichi-card.pw-pichi-large, .pw-pichi-card { grid-column: span 1; height: 260px; grid-row: auto; }
  .pw-pichi-overlay { padding: 22px; }
  .pw-pichi-overlay h3 { font-size: 20px; }
  .pw-trends-grid { grid-template-columns: 1fr; grid-template-rows: auto; gap: 14px; }
  .pw-trend-card--large, .pw-trend-card { grid-column: span 1; height: 280px; }
  .pw-trend-content { padding: 22px; }
  .pw-trend-name { font-size: 22px; }
  .pw-trust-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .pw-trust-card { padding: 16px 10px; }
  .pw-trust-icon { width: 54px; height: 54px; margin-bottom: 14px; }
  .pw-trust-card h4 { font-size: 15px; }
  .pw-trust-card p { font-size: 12px; }
  .pw-ig-feed { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .pw-footer { padding: 60px 0 0; }
  .pw-footer-top { grid-template-columns: 1fr; gap: 28px; padding-bottom: 28px; }
  .pw-footer-brand img { height: 32px; }
  .pw-cart-drawer { width: 100vw; }
  .pw-cart-header, .pw-cart-footer { padding: 18px 20px; }
  .pw-cart-body { padding: 14px 20px; }
  .pw-newsletter-text h2 { font-size: 28px; }
  .pw-newsletter-form { flex-direction: column; gap: 10px; }
  .pw-btn-ai { padding: 14px 24px; font-size: 12px; }
}

@media (max-width: 400px) {
  .pw-hero__title { font-size: 44px; line-height: 1; }
  .pw-hero__stat-num { font-size: 22px; }
  .pw-trust-grid { grid-template-columns: 1fr 1fr; }
  .pw-ig-feed { grid-template-columns: repeat(2, 1fr); }
}

/* reduced-motion + focus helpers already defined at top of file */


/* ═══════════════════════════════════════════════════════════
   PHASE 1 — ASOS-inspired refinements (overrides at end)
   Mantiene el sistema Costanera pero añade:
   - Densidad ASOS en la grilla de productos
   - Sale badges rojos (estándar e-commerce global)
   - Tipografía de producto más limpia / sentence-case
   - FAQ accordion (home + /shop/faq)
   ═══════════════════════════════════════════════════════════ */

:root {
  --asos-red: #E60000;        /* SALE tag rojo ASOS-like */
  --asos-red-deep: #B80000;
  --line: #E5E5E5;            /* hairline gris neutro tipo ASOS */
}

/* — Product grid: más densa en desktop (4 col en >1100px, 5 en >1400px) — */
@media (min-width: 1101px) {
  .pw-products-grid { grid-template-columns: repeat(4, 1fr) !important; gap: 28px 18px !important; }
}
@media (min-width: 1400px) {
  .pw-products-grid { grid-template-columns: repeat(5, 1fr) !important; gap: 32px 20px !important; }
}

/* — Tarjeta de producto: ratio 3:4 (ASOS), shadow plana, line accent en hover — */
.pw-product-card { background: transparent; border-radius: 0; box-shadow: none; transition: transform 0.4s var(--ease); }
.pw-product-card:hover { transform: translateY(-2px); box-shadow: none; }
.pw-product-img-wrap { aspect-ratio: 3 / 4; border-radius: 4px; overflow: hidden; background: #F2EFEA; }
.pw-product-img-wrap::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--navy); transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease); }
.pw-product-card:hover .pw-product-img-wrap::after { transform: scaleX(1); }

/* — Brand name: micro caps, letter-spacing — */
.pw-product-brand {
  font-family: var(--font-heading);
  font-size: 10.5px !important;
  letter-spacing: 1.4px !important;
  text-transform: uppercase;
  color: var(--text-secondary) !important;   /* AA contraste OK */
  font-weight: 600;
}

/* — Product name: sentence case, peso medio, dos líneas máx — */
.pw-product-name {
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
  color: var(--navy) !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 6px 0 4px !important;
}
.pw-product-name a { color: inherit; transition: color 0.2s var(--ease); }
.pw-product-name a:hover { color: var(--sage-dark); }

.pw-product-meta { font-size: 11.5px; color: var(--text-secondary); letter-spacing: 0.3px; }

/* — Precios: precio sale en rojo cuando hay descuento — */
.pw-product-card .pw-product-price-row { gap: 10px; align-items: baseline; margin-top: 8px; }
.pw-product-card .pw-product-price { font-family: var(--font-body); font-size: 15px; font-weight: 700; color: var(--navy); }
.pw-product-card .pw-product-price-old { font-size: 12.5px; color: var(--text-secondary); text-decoration: line-through; }
/* Cuando hay precio old visible: el principal va en rojo ASOS */
.pw-product-card .pw-product-price-row .pw-product-price-old + * ,
.pw-product-card .pw-product-price-row :has(+ .pw-product-price-old) { color: var(--asos-red) !important; }
/* Fallback sin :has() — se aplica vía la clase del badge */
.pw-product-card.has-sale .pw-product-price { color: var(--asos-red); }

/* — Sale badge ASOS-style — */
.pw-badge-sale {
  background: var(--asos-red) !important;
  color: #fff !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  border-radius: 2px !important;
  padding: 4px 8px !important;
  font-size: 11px !important;
  box-shadow: none !important;
}
.pw-badge-vintage, .pw-badge-new, .pw-badge-last {
  background: var(--navy) !important; color: #fff !important;
  border-radius: 2px !important; font-weight: 600 !important;
  letter-spacing: 0.4px !important;
}
.pw-badge-last { background: var(--asos-red-deep) !important; }

/* — Add button minimal: full width, text-only, slide underline — */
.pw-product-add {
  margin-top: 10px;
  background: transparent !important;
  color: var(--navy) !important;
  border: 1px solid var(--line) !important;
  border-radius: 0 !important;
  padding: 10px 12px !important;
  font-size: 12.5px !important;
  font-weight: 600 !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase;
  width: 100%;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.pw-product-add:hover { background: var(--navy) !important; color: #fff !important; border-color: var(--navy) !important; }
.pw-product-add i { font-size: 11px; }

/* — Sticky filter bar tipo ASOS PLP — */
.pw-products-toolbar {
  position: sticky;
  top: 76px;
  z-index: 50;
  background: rgba(248,245,240,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px var(--gap);
  margin: 0 calc(-1 * var(--gap)) 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* ═══ FAQ ACCORDION ═══ */

.pw-faq { padding: 90px 0 60px; background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%); }
.pw-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
  max-width: 980px;
  margin: 40px auto 0;
}
@media (max-width: 720px) {
  .pw-faq-grid { grid-template-columns: 1fr; }
}

.pw-faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.pw-faq-item:hover { border-color: var(--sage); }
.pw-faq-item[open] { border-color: var(--sage-dark); box-shadow: 0 8px 28px rgba(26,31,53,0.06); }

.pw-faq-q {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  user-select: none;
}
.pw-faq-q::-webkit-details-marker { display: none; }
.pw-faq-q::marker { content: ''; }

.pw-faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--navy);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.pw-faq-item[open] .pw-faq-icon { transform: rotate(45deg); background: var(--sage-dark); color: #fff; }

.pw-faq-a {
  padding: 0 22px 22px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-secondary);
}
.pw-faq-a p { margin: 0; }

.pw-faq-more {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 38px;
  flex-wrap: wrap;
}

/* ═══ FAQ PAGE (página dedicada /shop/faq) ═══ */
.pw-faq-hero { padding: 80px 0 30px; text-align: center; background: var(--bg); }
.pw-faq-h1 { font-size: clamp(38px, 5vw, 60px) !important; }
.pw-faq-list { padding: 30px 0 80px; background: var(--bg-warm); }
.pw-faq-container { max-width: 820px; }
.pw-faq-list .pw-faq-item { margin-bottom: 14px; }

.pw-faq-cta {
  background: var(--navy);
  color: #fff;
  padding: 70px 0;
  text-align: center;
}
.pw-faq-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 12px;
  color: #fff;
}
.pw-faq-cta-inner p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 30px;
  font-size: 16px;
}
.pw-faq-cta-inner .pw-btn-primary {
  background: var(--sage);
  border-color: var(--sage);
}
.pw-faq-cta-inner .pw-btn-primary:hover {
  background: var(--sage-light);
  border-color: var(--sage-light);
}

/* ═══ ANNOUNCE BAR — refinada estilo ASOS ═══ */
.pw-announce {
  background: var(--navy) !important;
  font-size: 12px !important;
  letter-spacing: 0.8px !important;
  padding: 10px var(--gap) !important;
}
.pw-announce strong { color: var(--sage-light); }

/* ═══ HEADER — más limpio (menos backdrop-filter en móvil) ═══ */
@media (max-width: 720px) {
  .pw-header { background: var(--bg) !important; backdrop-filter: none; }
}

/* ═══ Sale price tweak: si el contenedor es .pw-product-price-row y hay
   un sibling .pw-product-price-old, el .pw-product-price principal va en rojo. ═══ */
.pw-product-price-row .pw-product-price-old ~ .pw-product-price,
.pw-product-card:has(.pw-product-price-old) .pw-product-price {
  color: var(--asos-red);
}


/* ═══════════════════════════════════════════════════════════
   EVA CHAT WIDGET — flotante en todas las paginas del shop
   ═══════════════════════════════════════════════════════════ */

.pw-eva-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--ocean));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(26,31,53,0.25), 0 0 0 4px rgba(255,255,255,0.7);
  border: none;
  cursor: pointer;
  z-index: 9000;
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s var(--ease);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
}
.pw-eva-fab:hover { transform: translateY(-3px) scale(1.05); }
.pw-eva-fab .pw-eva-fab-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--sage);
  opacity: 0.6;
  animation: pwEvaPulse 2.4s var(--ease) infinite;
  pointer-events: none;
}
@keyframes pwEvaPulse { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.5); opacity: 0; } }
.pw-eva-fab[hidden] { display: none; }

.pw-eva-panel {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: min(380px, calc(100vw - 32px));
  height: min(560px, calc(100vh - 140px));
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(26,31,53,0.25);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 9001;
  border: 1px solid var(--line);
  animation: pwEvaSlideIn 0.4s var(--ease);
}
.pw-eva-panel.open { display: flex; }
@keyframes pwEvaSlideIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 540px) {
  .pw-eva-panel { right: 12px; bottom: 88px; width: calc(100vw - 24px); height: calc(100vh - 120px); }
}

.pw-eva-header {
  padding: 16px 18px;
  background: linear-gradient(135deg, var(--navy), #2A3052);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.pw-eva-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--ocean));
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  flex-shrink: 0;
}
.pw-eva-title { font-family: var(--font-display); font-size: 15px; font-weight: 700; line-height: 1.2; }
.pw-eva-status { font-size: 11px; opacity: 0.7; display: flex; align-items: center; gap: 5px; margin-top: 2px; letter-spacing: 0.3px; }
.pw-eva-status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--sage-light); box-shadow: 0 0 0 2px rgba(184,204,168,0.3); }
.pw-eva-close {
  margin-left: auto;
  background: rgba(255,255,255,0.1);
  color: #fff;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.pw-eva-close:hover { background: rgba(255,255,255,0.2); }

.pw-eva-msgs {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--bg);
  font-size: 14px;
}
.pw-eva-msg { max-width: 82%; padding: 10px 14px; border-radius: 16px; line-height: 1.45; word-wrap: break-word; }
.pw-eva-msg.from-eva { background: #fff; color: var(--navy); border: 1px solid var(--line); border-bottom-left-radius: 4px; align-self: flex-start; }
.pw-eva-msg.from-user { background: var(--navy); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; }
.pw-eva-msg a { color: var(--sage-dark); text-decoration: underline; }
.pw-eva-msg.from-user a { color: var(--sage-light); }

.pw-eva-typing { display: inline-flex; gap: 4px; padding: 12px 14px; background: #fff; border: 1px solid var(--line); border-radius: 16px; border-bottom-left-radius: 4px; align-self: flex-start; }
.pw-eva-typing span { width: 6px; height: 6px; background: var(--sage); border-radius: 50%; opacity: 0.4; animation: pwEvaTyping 1.2s ease-in-out infinite; }
.pw-eva-typing span:nth-child(2) { animation-delay: 0.15s; }
.pw-eva-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes pwEvaTyping { 0%, 60%, 100% { opacity: 0.4; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }

.pw-eva-form { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--line); background: #fff; flex-shrink: 0; }
.pw-eva-input { flex: 1; padding: 11px 16px; border: 1px solid var(--line); border-radius: 24px; font-family: inherit; font-size: 14px; background: var(--bg); transition: border-color 0.2s; }
.pw-eva-input:focus { outline: none; border-color: var(--sage-dark); background: #fff; }
.pw-eva-send {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.pw-eva-send:hover { background: var(--sage-dark); transform: scale(1.05); }
.pw-eva-send:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

.pw-eva-quickreplies { display: flex; gap: 6px; flex-wrap: wrap; padding: 0 18px 12px; background: var(--bg); }
.pw-eva-qr {
  background: #fff; border: 1px solid var(--line); padding: 6px 12px; border-radius: 16px;
  font-size: 12px; color: var(--navy); cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.pw-eva-qr:hover { background: var(--sage-light); border-color: var(--sage); }


/* ═══════════════════════════════════════════════════════════
   COOKIE CONSENT BANNER — GDPR/Chile-friendly
   ═══════════════════════════════════════════════════════════ */

.pw-cookies {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 540px;
  margin: 0 auto;
  background: var(--navy);
  color: #fff;
  border-radius: 14px;
  padding: 18px 20px;
  display: none;
  z-index: 8500;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
  font-size: 13.5px;
  line-height: 1.5;
  animation: pwCookiesIn 0.5s var(--ease) 0.4s backwards;
}
.pw-cookies.visible { display: block; }
@keyframes pwCookiesIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.pw-cookies p { margin: 0 0 12px; }
.pw-cookies a { color: var(--sage-light); text-decoration: underline; }
.pw-cookies-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.pw-cookies-btn {
  padding: 9px 16px; border-radius: 22px; font-size: 13px; font-weight: 600;
  border: 1px solid rgba(255,255,255,0.25); background: transparent; color: #fff;
  cursor: pointer; transition: background 0.2s, border-color 0.2s;
}
.pw-cookies-btn:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); }
.pw-cookies-btn.primary { background: var(--sage); border-color: var(--sage); color: #fff; }
.pw-cookies-btn.primary:hover { background: var(--sage-light); }
@media (max-width: 540px) {
  .pw-cookies { bottom: 8px; left: 8px; right: 8px; padding: 14px 16px; font-size: 12.5px; }
}


/* ═══════════════════════════════════════════════════════════
   LIVE SEARCH RESULTS — dropdown debounced
   ═══════════════════════════════════════════════════════════ */
.pw-search-results {
  max-width: 680px;
  margin: 16px auto 0;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  display: none;
}
.pw-search-results.visible { display: block; }
.pw-search-results-empty { padding: 20px; text-align: center; color: var(--text-secondary); font-size: 13.5px; }
.pw-search-result {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}
.pw-search-result:last-child { border-bottom: 0; }
.pw-search-result:hover, .pw-search-result:focus-visible { background: var(--bg-warm); }
.pw-search-result-img { width: 56px; height: 72px; border-radius: 4px; overflow: hidden; background: #F2EFEA; flex-shrink: 0; }
.pw-search-result-img img { width: 100%; height: 100%; object-fit: cover; }
.pw-search-result-info { flex: 1; min-width: 0; }
.pw-search-result-brand { font-family: var(--font-heading); font-size: 10px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--text-secondary); font-weight: 600; }
.pw-search-result-name { font-size: 13.5px; font-weight: 500; color: var(--navy); margin: 2px 0; line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pw-search-result-price { font-size: 13px; font-weight: 700; color: var(--navy); }
.pw-search-result-price .old { color: var(--text-secondary); text-decoration: line-through; font-size: 11.5px; margin-left: 6px; font-weight: 500; }
.pw-search-result-price .sale { color: var(--asos-red); }
.pw-search-result-arrow { color: var(--text-secondary); transition: transform 0.2s; }
.pw-search-result:hover .pw-search-result-arrow { transform: translateX(3px); color: var(--navy); }
.pw-search-more { display: block; padding: 14px; text-align: center; background: var(--bg-warm); font-size: 13px; font-weight: 600; color: var(--navy); }
.pw-search-more:hover { background: var(--navy); color: #fff; }


/* ═══════════════════════════════════════════════════════════
   ASOS-INSPIRED HOMEPAGE — Phase 4
   Hero dual-tile · subnav pills · collections · dual narrative
   editorial 3-up · USP color blocks
   ═══════════════════════════════════════════════════════════ */

.pw-container--wide { max-width: 1480px; margin: 0 auto; padding: 0 var(--gap); }

/* Botones ASOS — rectangulares, sin redondeo, uppercase con tracking */
.pw-asos-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 28px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  border-radius: 0;
  border: 1.5px solid var(--navy);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.2s;
  white-space: nowrap;
}
.pw-asos-btn--solid { background: var(--navy); color: #fff; }
.pw-asos-btn--solid:hover { background: #fff; color: var(--navy); }
.pw-asos-btn--outline { background: transparent; color: var(--navy); border-color: rgba(255,255,255,0.7); color: #fff; }
.pw-asos-btn--outline:hover { background: #fff; color: var(--navy); border-color: #fff; }

/* ── HERO ASOS DUAL-TILE ── */
.pw-asos-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: clamp(620px, 88vh, 920px);
  background: var(--navy);
  overflow: hidden;
}
.pw-asos-hero__tile { position: relative; overflow: hidden; display: block; }
.pw-asos-hero__tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.pw-asos-hero__tile:hover img { transform: scale(1.04); }
.pw-asos-hero__tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,31,53,0.55) 0%, rgba(26,31,53,0.15) 40%, rgba(26,31,53,0.05) 100%);
  pointer-events: none;
}
.pw-asos-hero__tile-label {
  position: absolute;
  bottom: 28px;
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 4px;
  font-weight: 700;
  color: #fff;
  z-index: 2;
  text-transform: uppercase;
  background: rgba(26,31,53,0.55);
  backdrop-filter: blur(6px);
  padding: 9px 18px;
  border-radius: 0;
  border: 1px solid rgba(255,255,255,0.25);
}
.pw-asos-hero__tile--left .pw-asos-hero__tile-label { left: 28px; }
.pw-asos-hero__tile--right .pw-asos-hero__tile-label { right: 28px; }

/* Centro: wordmark gigante + tagline + split + CTAs */
.pw-asos-hero__center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  pointer-events: none;
  padding: 24px;
}
.pw-asos-hero__center > * { pointer-events: auto; }
.pw-asos-hero__eyebrow {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.3);
  padding: 6px 14px;
  border-radius: 0;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.2);
}
.pw-asos-hero__wordmark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(56px, 11vw, 168px);
  line-height: 0.85;
  color: #fff;
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
  text-shadow: 0 6px 40px rgba(0,0,0,0.4);
  margin: 0;
}
.pw-asos-hero__wordmark span:nth-child(2) {
  letter-spacing: 0.18em;
  font-size: 0.62em;
  font-weight: 400;
  margin-top: -0.1em;
}
.pw-asos-hero__tag {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 6px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.pw-asos-hero__split {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: rgba(26,31,53,0.55);
  backdrop-filter: blur(10px);
  padding: 14px 22px;
  border: 1px solid rgba(255,255,255,0.18);
}
.pw-asos-hero__split-side { display: flex; flex-direction: column; gap: 2px; padding: 0 18px; }
.pw-asos-hero__split-label {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.pw-asos-hero__split-desc { font-size: 11.5px; color: rgba(255,255,255,0.75); letter-spacing: 0.3px; }
.pw-asos-hero__split-divider {
  width: 1px;
  background: rgba(255,255,255,0.25);
}
.pw-asos-hero__cta { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 4px; }

@media (max-width: 720px) {
  .pw-asos-hero { grid-template-columns: 1fr; height: auto; }
  .pw-asos-hero__tile { height: 50vh; min-height: 320px; }
  .pw-asos-hero__center { position: relative; inset: auto; padding: 50px 20px; background: var(--navy); gap: 14px; }
  .pw-asos-hero__split { flex-direction: column; padding: 14px 18px; }
  .pw-asos-hero__split-divider { width: 100%; height: 1px; margin: 10px 0; }
  .pw-asos-hero__tile-label { bottom: 14px; font-size: 11px; padding: 7px 14px; }
  .pw-asos-hero__tile--left .pw-asos-hero__tile-label { left: 14px; }
  .pw-asos-hero__tile--right .pw-asos-hero__tile-label { right: 14px; }
}

/* ── SUB-NAV ASOS PILLS ── */
.pw-asos-subnav {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 76px;
  z-index: 90;
}
.pw-asos-subnav__list {
  display: flex; gap: 8px; list-style: none; padding: 14px 0; margin: 0;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
}
.pw-asos-subnav__list::-webkit-scrollbar { display: none; }
.pw-asos-subnav__pill {
  display: inline-flex; align-items: center;
  padding: 9px 18px;
  background: var(--bg-warm);
  color: var(--navy);
  border-radius: 0;
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.6px;
  border: 1px solid var(--line);
  transition: background 0.2s var(--ease), color 0.2s, transform 0.15s;
}
.pw-asos-subnav__pill:hover { background: var(--navy); color: #fff; border-color: var(--navy); transform: translateY(-1px); }
.pw-asos-subnav__pill--accent { background: var(--navy); color: #fff; border-color: var(--navy); }
.pw-asos-subnav__pill--accent:hover { background: var(--sage-dark); border-color: var(--sage-dark); }
.pw-asos-subnav__pill--sale { background: var(--asos-red); color: #fff; border-color: var(--asos-red); }
.pw-asos-subnav__pill--sale:hover { background: var(--asos-red-deep); border-color: var(--asos-red-deep); }

/* ── COLLECTIONS GRID ── */
.pw-collections { padding: 80px 0 60px; background: #fff; }
.pw-collections__header { text-align: center; margin-bottom: 44px; }
.pw-collections__h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.025em;
  margin: 0 0 10px;
  line-height: 1;
}
.pw-collections__sub { color: var(--text-secondary); max-width: 580px; margin: 0 auto; font-size: 15px; line-height: 1.55; }
.pw-collections__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 1100px) { .pw-collections__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .pw-collections__grid { grid-template-columns: 1fr; } }

.pw-collections__tile {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--navy);
  display: block;
  transition: transform 0.25s var(--ease);
}
.pw-collections__tile:hover { transform: translateY(-3px); }
.pw-collections__tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); filter: saturate(1.05); }
.pw-collections__tile:hover img { transform: scale(1.06); }
.pw-collections__tile::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.65) 100%);
  pointer-events: none;
}
.pw-collections__tile-tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: 10.5px;
  letter-spacing: 1.6px;
  font-weight: 700;
  padding: 6px 11px;
  background: #fff;
  color: var(--navy);
}
.pw-collections__tile-tag--vintage { background: var(--sage-dark); color: #fff; }
.pw-collections__tile-tag--new { background: var(--coral); color: #fff; }
.pw-collections__tile-tag--mix { background: var(--ocean); color: #fff; }
.pw-collections__tile-tag--ai { background: linear-gradient(135deg, var(--sage), var(--ocean)); color: #fff; }

.pw-collections__tile-label {
  position: absolute;
  left: 22px; bottom: 22px;
  z-index: 2;
  display: flex; flex-direction: column;
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 0.92;
  letter-spacing: -0.015em;
  text-shadow: 0 4px 18px rgba(0,0,0,0.4);
}
.pw-collections__tile-label--center {
  left: 50%; bottom: 50%;
  transform: translate(-50%, 50%);
  text-align: center;
  align-items: center;
}

.pw-collections__tile--accent {
  background: linear-gradient(135deg, var(--navy) 0%, #2A3052 50%, var(--sage-dark) 100%);
}
.pw-collections__tile--accent::before { display: none; }
.pw-collections__tile-cta {
  position: absolute;
  left: 50%; bottom: 28px;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  font-weight: 600;
}

/* ── DUAL NARRATIVE: Vintage Real vs Nuevo Curado ── */
.pw-dual { padding: 70px 0 50px; background: var(--bg-warm); }
.pw-dual__header { text-align: center; margin-bottom: 42px; }
.pw-dual__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 900px) { .pw-dual__grid { grid-template-columns: 1fr; } }

.pw-dual__card {
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
}
@media (max-width: 700px) { .pw-dual__card { grid-template-columns: 1fr; } }

.pw-dual__card-img { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.pw-dual__card-img img { width: 100%; height: 100%; object-fit: cover; }
.pw-dual__card-badge {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--font-heading);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  padding: 6px 11px;
  background: #fff;
}
.pw-dual__card--vintage .pw-dual__card-badge { background: var(--sage-dark); color: #fff; }
.pw-dual__card--nuevo .pw-dual__card-badge { background: var(--coral); color: #fff; }

.pw-dual__card-info { padding: 26px 28px; display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.pw-dual__card-h3 { font-family: var(--font-display); font-size: clamp(24px, 3vw, 36px); font-weight: 700; color: var(--navy); margin: 0; letter-spacing: -0.015em; }
.pw-dual__card-desc { font-size: 14.5px; color: var(--text-secondary); line-height: 1.6; margin: 0; }
.pw-dual__card-list { list-style: none; padding: 0; margin: 6px 0 12px; display: flex; flex-direction: column; gap: 7px; }
.pw-dual__card-list li {
  font-size: 13px;
  color: var(--navy);
  padding-left: 22px;
  position: relative;
}
.pw-dual__card-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage-dark);
  font-weight: 700;
}
.pw-dual__card--nuevo .pw-dual__card-list li::before { color: var(--coral); }
.pw-dual__card-info .pw-asos-btn { align-self: flex-start; margin-top: 4px; }
.pw-dual__legend { text-align: center; margin: 36px auto 0; max-width: 720px; font-size: 13.5px; color: var(--text-secondary); line-height: 1.5; }
.pw-dual__legend strong { color: var(--navy); padding: 1px 6px; background: var(--bg); border-radius: 2px; font-size: 12px; letter-spacing: 0.5px; }

/* ── EDITORIAL 3-UP — full bleed ── */
.pw-editorial3 {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 0;
  background: #fff;
}
@media (max-width: 720px) { .pw-editorial3 { grid-template-columns: 1fr; } }

.pw-editorial3__cell { position: relative; aspect-ratio: 4/5; overflow: hidden; margin: 0; }
.pw-editorial3__cell--portrait { aspect-ratio: 4/5; }
.pw-editorial3__cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.5s var(--ease); }
.pw-editorial3__cell:hover img { transform: scale(1.05); }

.pw-editorial3__cell--portrait::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 55%);
}
.pw-editorial3__caption {
  position: absolute;
  left: 30px; bottom: 30px;
  z-index: 2;
  display: flex; flex-direction: column;
  color: #fff;
}
.pw-editorial3__eyebrow { font-family: var(--font-heading); font-size: 11px; letter-spacing: 3px; font-weight: 600; opacity: 0.85; }
.pw-editorial3__title { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 48px); font-weight: 700; line-height: 1.05; margin-top: 6px; }

/* ── USP COLOR BLOCKS — flat bold ── */
.pw-usp {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
}
@media (max-width: 900px) { .pw-usp { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .pw-usp { grid-template-columns: 1fr; } }

.pw-usp__block {
  display: flex; flex-direction: column;
  padding: 44px 32px 38px;
  min-height: 280px;
  text-decoration: none;
  position: relative;
  transition: transform 0.25s var(--ease);
  overflow: hidden;
}
.pw-usp__block:hover { transform: translateY(-4px); }
.pw-usp__block::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0; height: 4px;
  background: var(--navy);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.pw-usp__block:hover::after { transform: scaleX(1); }

.pw-usp__num {
  font-family: var(--font-display);
  font-size: 14px; letter-spacing: 2px; font-weight: 600;
  margin-bottom: auto;
}
.pw-usp__h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 10px;
  letter-spacing: -0.015em;
}
.pw-usp__p { font-size: 14px; line-height: 1.5; margin: 0 0 18px; opacity: 0.85; }
.pw-usp__cta {
  font-family: var(--font-heading);
  font-size: 12px; letter-spacing: 1.5px; font-weight: 700;
  text-transform: uppercase;
  margin-top: auto;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  align-self: flex-start;
}
.pw-usp__block--sage  { background: #B8CCA8; color: #1A1F35; }
.pw-usp__block--cream { background: #E8DED1; color: #1A1F35; }
.pw-usp__block--coral { background: #E29A82; color: #1A1F35; }
.pw-usp__block--navy  { background: #1A1F35; color: #fff; }
.pw-usp__block--navy::after { background: var(--sage); }

