/*
Theme Name: Pawaurel
Theme URI: https://pawaurel.local
Author: Pawaurel Studio
Description: A luxury pet supplies e-commerce theme. Inspired by the layout of luxurycarrybag.shop and the mega menu navigation of MOSHIQA. A minimalist black-and-white palette accented with gold and soft pink, pairing serif headlines with modern sans-serif body text. Crafted for premium pet products: collars and harnesses, beds and mats, apparel, travel gear, toys, and matching human-pet collections.
Version: 1.0.17
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: pawaurel
Tags: ecommerce, woocommerce, luxury, pets, mega-menu, custom-colors, custom-logo, featured-images, translation-ready
*/

/* ==========================================================================
   Pawaurel Design System
   ========================================================================== */
:root{
  /* Brand colors */
  --pw-color-primary:#1a1a1a;
  --pw-color-primary-soft:#2d2d2d;
  --pw-color-accent:#b08d57;        /* cognac gold */
  --pw-color-accent-deep:#8b6f47;
  --pw-color-accent-soft:#d4b483;
  --pw-color-blush:#f0d9d9;          /* soft luxury pink */
  --pw-color-blush-deep:#e6c3c3;

  /* Neutrals */
  --pw-color-bg:#ffffff;
  --pw-color-bg-alt:#faf8f5;         /* warm off-white */
  --pw-color-bg-dark:#1a1a1a;
  --pw-color-card:#ffffff;
  --pw-color-border:#e8e3dc;
  --pw-color-border-strong:#cfc7bc;

  /* Text */
  --pw-color-text:#1a1a1a;
  --pw-color-text-muted:#6b6258;
  --pw-color-text-subtle:#9b9286;
  --pw-color-link:#1a1a1a;
  --pw-color-link-hover:#b08d57;
  --pw-color-on-dark:#ffffff;
  --pw-color-on-dark-muted:#b8b0a6;

  /* Feedback */
  --pw-color-danger:#b3261e;
  --pw-color-success:#2e7d32;
  --pw-color-sale:#b3261e;

  /* Typography */
  --pw-font-heading:"Playfair Display", Georgia, "Times New Roman", serif;
  --pw-font-body:"Jost","Helvetica Neue",Arial,sans-serif;
  --pw-font-script:"Great Vibes","Brush Script MT",cursive;
  --pw-font-ui:"Jost","Helvetica Neue",Arial,sans-serif;
  --pw-fs-base:16px;
  --pw-lh-base:1.7;
  --pw-lh-heading:1.15;

  /* Spacing */
  --pw-space-xs:0.5rem;
  --pw-space-sm:1rem;
  --pw-space-md:2rem;
  --pw-space-lg:4rem;
  --pw-space-xl:6rem;
  --pw-space-2xl:8rem;
  --pw-container:1280px;
  --pw-container-narrow:880px;

  /* Radius */
  --pw-radius-sm:4px;
  --pw-radius:8px;
  --pw-radius-lg:16px;
  --pw-radius-pill:999px;

  /* Shadows */
  --pw-shadow-sm:0 1px 2px rgba(26,26,26,.06);
  --pw-shadow:0 6px 24px rgba(26,26,26,.08);
  --pw-shadow-lg:0 18px 50px rgba(26,26,26,.14);
  --pw-shadow-card:0 8px 30px rgba(26,26,26,.10);

  /* Transitions */
  --pw-t-fast:.18s ease;
  --pw-t:.3s cubic-bezier(.4,0,.2,1);
  --pw-t-slow:.6s cubic-bezier(.4,0,.2,1);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*,*::before,*::after{box-sizing:border-box;}
html{font-size:var(--pw-fs-base);scroll-behavior:smooth;-webkit-text-size-adjust:100%;}
body{
  margin:0;
  font-family:var(--pw-font-body);
  font-size:1rem;
  line-height:var(--pw-lh-base);
  color:var(--pw-color-text);
  background:var(--pw-color-bg);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}
img,video{max-width:100%;height:auto;display:block;}
a{color:var(--pw-color-link);text-decoration:none;transition:color var(--pw-t-fast);}
a:hover{color:var(--pw-color-link-hover);}
ul,ol{margin:0;padding:0;}
li{list-style:none;}
button{font-family:inherit;cursor:pointer;border:0;background:transparent;}
input,textarea,select{font-family:inherit;font-size:1rem;}
h1,h2,h3,h4,h5,h6{
  font-family:var(--pw-font-heading);
  font-weight:600;
  line-height:var(--pw-lh-heading);
  margin:0 0 var(--pw-space-sm);
  color:var(--pw-color-primary);
  letter-spacing:.01em;
}
h1{font-size:clamp(2.4rem,5vw,4rem);}
h2{font-size:clamp(2rem,4vw,3rem);}
h3{font-size:clamp(1.5rem,3vw,2rem);}
h4{font-size:clamp(1.2rem,2vw,1.5rem);}
p{margin:0 0 var(--pw-space-sm);}
.container{max-width:var(--pw-container);margin:0 auto;padding:0 1.5rem;}
.container-narrow{max-width:var(--pw-container-narrow);margin:0 auto;padding:0 1.5rem;}
.screen-reader-text{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0;}
.skip-link{position:absolute;left:-9999px;top:0;z-index:9999;background:var(--pw-color-primary);color:#fff;padding:.75rem 1.25rem;}
.skip-link:focus{left:1rem;top:1rem;}

/* ==========================================================================
   Buttons
   ========================================================================== */
.pw-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.6em;
  padding:.95em 2.2em;
  font-family:var(--pw-font-ui);
  font-size:.78rem;
  font-weight:500;
  letter-spacing:.18em;
  text-transform:uppercase;
  border:1px solid transparent;
  border-radius:0;
  cursor:pointer;
  transition:all var(--pw-t);
  text-align:center;
  line-height:1;
}
.pw-btn--primary{background:var(--pw-color-primary);color:#fff;border-color:var(--pw-color-primary);}
.pw-btn--primary:hover{background:var(--pw-color-accent);border-color:var(--pw-color-accent);color:#fff;}
.pw-btn--outline{background:transparent;color:var(--pw-color-primary);border-color:var(--pw-color-primary);}
.pw-btn--outline:hover{background:var(--pw-color-primary);color:#fff;}
.pw-btn--ghost{background:transparent;color:var(--pw-color-primary);border-color:transparent;padding-left:0;padding-right:0;border-bottom:1px solid var(--pw-color-primary);border-radius:0;padding-bottom:.2em;}
.pw-btn--ghost:hover{color:var(--pw-color-accent);border-color:var(--pw-color-accent);}
.pw-btn--light{background:#fff;color:var(--pw-color-primary);border-color:#fff;}
.pw-btn--light:hover{background:transparent;color:#fff;border-color:#fff;}
.pw-btn--accent{background:var(--pw-color-accent);color:#fff;border-color:var(--pw-color-accent);}
.pw-btn--accent:hover{background:var(--pw-color-accent-deep);border-color:var(--pw-color-accent-deep);}
.pw-btn--block{display:flex;width:100%;}
.pw-btn--lg{padding:1.15em 2.8em;font-size:.85rem;}
.pw-btn--sm{padding:.7em 1.5em;font-size:.7rem;}

/* ==========================================================================
   Section helpers
   ========================================================================== */
.pw-section{padding:var(--pw-space-xl) 0;}
.pw-section--tight{padding:var(--pw-space-lg) 0;}
.pw-section--alt{background:var(--pw-color-bg-alt);}
.pw-section--dark{background:var(--pw-color-bg-dark);color:var(--pw-color-on-dark);}
.pw-section--dark h1,.pw-section--dark h2,.pw-section--dark h3,.pw-section--dark h4{color:#fff;}
.pw-section--blush{background:var(--pw-color-blush);}
.pw-section-head{text-align:center;max-width:680px;margin:0 auto var(--pw-space-lg);}
.pw-section-head--left{text-align:left;margin-left:0;}
.pw-eyebrow{
  font-family:var(--pw-font-ui);
  font-size:.72rem;font-weight:500;letter-spacing:.32em;text-transform:uppercase;
  color:var(--pw-color-accent);
  display:inline-block;margin-bottom:.9rem;
}
.pw-section-title{margin-bottom:1rem;}
.pw-section-sub{color:var(--pw-color-text-muted);font-size:1.05rem;}
.pw-script{font-family:var(--pw-font-script);font-weight:400;color:var(--pw-color-accent);}

/* ==========================================================================
   Promo Bar
   ========================================================================== */
.pw-promo{
  background:var(--pw-color-primary);color:#fff;
  font-size:.72rem;letter-spacing:.22em;text-transform:uppercase;
  text-align:center;
  position:relative;
  padding:.7rem 3rem .7rem 1.5rem;
  overflow:hidden;
}
.pw-promo__inner{display:flex;align-items:center;justify-content:center;gap:1.2rem;flex-wrap:wrap;}
.pw-promo a{color:#fff;text-decoration:underline;text-underline-offset:.2em;}
.pw-promo a:hover{color:var(--pw-color-accent-soft);}
.pw-promo__close{
  position:absolute;right:1rem;top:50%;transform:translateY(-50%);
  background:transparent;border:0;color:#fff;font-size:1rem;line-height:1;padding:.2rem;
  opacity:.7;transition:opacity var(--pw-t-fast);
}
.pw-promo__close:hover{opacity:1;}
.pw-promo.is-hidden{display:none;}

/* ==========================================================================
   Header / Navigation — logo centered on top, single nav row below
   ========================================================================== */
:root{
  --pw-header-bg:#ffffff;
  --pw-header-nav-bg:#faf8f5;        /* light gray nav row */
  --pw-header-fg:#1a1a1a;
  --pw-header-fg-muted:#6b6258;
  --pw-header-fg-strong:#1a1a1a;
  --pw-header-border:#e8e3dc;
}
.pw-header{
  position:relative;z-index:500;
  background:var(--pw-header-bg);
  color:var(--pw-header-fg);
  box-shadow:0 1px 0 var(--pw-header-border);
}

/* Top row: utility links (left) · centered logo · icons (right) */
.pw-header__top{
  display:grid;grid-template-columns:1fr auto 1fr;align-items:center;
  max-width:var(--pw-container);margin:0 auto;
  padding:1.4rem 1.5rem 1rem;gap:1rem;
}
.pw-header__top-left{display:flex;align-items:center;gap:1.5rem;}
.pw-header__top-left a{
  font-family:var(--pw-font-ui);font-size:.72rem;letter-spacing:.16em;text-transform:uppercase;
  color:var(--pw-header-fg-muted);text-decoration:none;transition:color var(--pw-t-fast);
}
.pw-header__top-left a:hover{color:var(--pw-color-accent);}
.pw-header__brand{display:flex;justify-content:center;min-width:0;}
.pw-header__top-right{display:flex;align-items:center;justify-content:flex-end;gap:.4rem;}
.pw-header__icons{display:flex;align-items:center;gap:.5rem;}

/* Logo — small tagline stacked above the wordmark, centered */
.pw-logo{
  display:inline-flex;flex-direction:column-reverse;align-items:center;gap:.18em;
  font-family:"Playfair Display", Georgia, serif;
  font-size:clamp(1.9rem,2.6vw,2.6rem);
  font-weight:400;letter-spacing:.02em;line-height:1;
  color:var(--pw-header-fg-strong);text-decoration:none;white-space:nowrap;
}
.pw-logo:hover{color:var(--pw-color-accent);}
.pw-logo--img img{max-height:60px;width:auto;display:block;}
.pw-logo__sub{
  font-family:var(--pw-font-ui);font-size:.5rem;letter-spacing:.34em;text-transform:uppercase;
  color:var(--pw-header-fg-muted);white-space:nowrap;
}

/* Header icons */
.pw-icon-btn{
  position:relative;display:inline-flex;align-items:center;justify-content:center;
  width:40px;height:40px;color:var(--pw-header-fg);
  transition:color var(--pw-t-fast);
  text-decoration:none;background:transparent;border:0;cursor:pointer;
}
.pw-icon-btn:hover{color:var(--pw-color-accent);}
.pw-icon-btn svg{width:22px;height:22px;}
.pw-icon-btn--cart{display:inline-flex;align-items:center;gap:.45em;width:auto;}
.pw-icon-btn--cart .pw-cart-label{font-family:var(--pw-font-ui);font-size:.78rem;letter-spacing:.04em;color:var(--pw-header-fg);}
.pw-cart-count{
  position:absolute;top:2px;right:0;min-width:17px;height:17px;padding:0 .35em;
  background:var(--pw-color-accent,#b08d57);color:#fff;border-radius:var(--pw-radius-pill);
  font-size:.6rem;font-weight:600;display:flex;align-items:center;justify-content:center;line-height:1;
}
.pw-icon-btn--cart svg{width:24px;height:24px;}

/* Mobile burger */
.pw-burger{display:none;width:40px;height:40px;align-items:center;justify-content:center;color:var(--pw-header-fg);background:transparent;border:0;cursor:pointer;}
.pw-burger svg{width:24px;height:24px;}

/* Nav row — single centered line on light gray */
.pw-header__menu{background:var(--pw-header-nav-bg);border-top:1px solid var(--pw-header-border);text-align:center;}
.pw-nav{
  display:inline-flex;align-items:center;flex-wrap:wrap;justify-content:center;
  gap:0 1.7rem;list-style:none;margin:0 auto;padding:.75rem 1.5rem;
  max-width:var(--pw-container);
}
.pw-nav__item{position:relative;white-space:nowrap;flex-shrink:0;}
.pw-nav__link{
  font-family:"Playfair Display", Georgia, serif;
  font-size:.875rem;font-weight:400;letter-spacing:.04em;
  color:var(--pw-header-fg-muted);
  padding:.45rem .15rem;display:inline-flex;align-items:center;gap:.35em;
  position:relative;white-space:nowrap;text-decoration:none;
  transition:color var(--pw-t-fast);
}
.pw-nav__link::after{
  content:"";position:absolute;left:.15rem;right:.15rem;bottom:.1rem;height:1px;
  background:var(--pw-color-accent);transform:scaleX(0);transform-origin:left;
  transition:transform var(--pw-t);
}
.pw-nav__link:hover{color:var(--pw-color-accent);}
.pw-nav__link:hover::after{transform:scaleX(1);}
.pw-nav__link.is-active{color:var(--pw-color-accent);}
.pw-nav__link.is-active::after{transform:scaleX(1);}
.pw-nav__item.is-active > .pw-nav__link{color:var(--pw-color-accent);}
.pw-nav__item.is-active > .pw-nav__link::after{transform:scaleX(1);}
.pw-nav__caret{display:inline-flex;align-items:center;opacity:.6;}
.pw-nav__caret svg{width:10px;height:6px;}
.pw-nav__link--sale{color:var(--pw-color-sale,#b3261e);font-weight:500;}
.pw-nav__link--sale::after{background:var(--pw-color-sale,#b3261e);}

/* Condensed mega dropdown — single centered list of sub-links */
.pw-mega{
  position:absolute;top:100%;left:50%;transform:translateX(-50%) translateY(6px);
  background:#fff;color:var(--pw-color-text,#1a1a1a);
  border:1px solid var(--pw-header-border);border-top:0;
  box-shadow:var(--pw-shadow-lg);
  padding:1rem 1.6rem;min-width:220px;
  opacity:0;visibility:hidden;pointer-events:none;
  transition:opacity var(--pw-t-fast),transform var(--pw-t-fast),visibility var(--pw-t-fast);
  z-index:60;border-radius:0 0 var(--pw-radius) var(--pw-radius);
}
.pw-nav__item--has-mega:hover .pw-mega,
.pw-nav__item--has-mega:focus-within .pw-mega{
  opacity:1;visibility:visible;pointer-events:auto;transform:translateX(-50%) translateY(0);
}
.pw-mega__list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:.1rem;}
.pw-mega__list a{
  display:block;padding:.5rem 0;font-size:.92rem;color:var(--pw-color-text,#1a1a1a);
  border-bottom:1px solid var(--pw-header-border);
  transition:color var(--pw-t-fast),padding-left var(--pw-t-fast);
}
.pw-mega__list li:last-child a{border-bottom:0;}
.pw-mega__list a:hover{color:var(--pw-color-accent,#b08d57);padding-left:.3rem;}

/* Simple dropdown (walker sub-level) */
.pw-dropdown{
  position:absolute;top:100%;left:50%;transform:translateX(-50%) translateY(6px);
  background:#fff;color:var(--pw-color-text,#1a1a1a);
  border:1px solid var(--pw-header-border);border-top:0;
  box-shadow:var(--pw-shadow-lg);
  padding:1rem 1.6rem;min-width:200px;
  opacity:0;visibility:hidden;pointer-events:none;
  transition:opacity var(--pw-t-fast),transform var(--pw-t-fast),visibility var(--pw-t-fast);
  z-index:60;border-radius:0 0 var(--pw-radius) var(--pw-radius);
}
.pw-nav__item:hover .pw-dropdown,.pw-nav__item:focus-within .pw-dropdown{
  opacity:1;visibility:visible;pointer-events:auto;transform:translateX(-50%) translateY(0);
}
.pw-dropdown a{display:block;padding:.5rem 0;font-size:.92rem;color:var(--pw-color-text,#1a1a1a);border-bottom:1px solid var(--pw-header-border);}
.pw-dropdown a:last-child{border-bottom:0;}
.pw-dropdown a:hover{color:var(--pw-color-accent,#b08d57);}

/* Search slide-down panel */
.pw-search-panel{
  position:absolute;left:0;right:0;top:100%;
  background:#fff;border-top:1px solid var(--pw-header-border);
  box-shadow:var(--pw-shadow);
  transform:translateY(-8px);opacity:0;visibility:hidden;pointer-events:none;
  transition:opacity var(--pw-t-fast),transform var(--pw-t-fast),visibility var(--pw-t-fast);
}
.pw-search-panel.is-open{transform:translateY(0);opacity:1;visibility:visible;pointer-events:auto;}
.pw-search-form{display:flex;align-items:center;gap:.8rem;max-width:var(--pw-container);margin:0 auto;padding:1.1rem clamp(1rem,4vw,3rem);color:var(--pw-color-text,#1a1a1a);}
.pw-search-form svg{width:22px;height:22px;flex-shrink:0;opacity:.7;color:var(--pw-header-fg);}
.pw-search-form input{
  flex:1;border:0;background:transparent;outline:0;
  color:var(--pw-color-text,#1a1a1a);font-family:"Playfair Display", Georgia, serif;
  font-size:1.05rem;padding:.4rem 0;border-bottom:1px solid var(--pw-header-border);
}
.pw-search-form input::placeholder{color:var(--pw-header-fg-muted);font-style:italic;}
.pw-search-form input:focus{border-bottom-color:var(--pw-color-accent);}
.pw-search-panel__close{
  width:40px;height:40px;display:inline-flex;align-items:center;justify-content:center;
  background:transparent;border:0;color:var(--pw-header-fg);cursor:pointer;
}
.pw-search-panel__close svg{width:22px;height:22px;}

/* Sticky */
.pw-header.is-sticky{position:fixed;top:0;left:0;right:0;box-shadow:0 8px 24px rgba(0,0,0,.12);animation:pwSlideDown .4s ease;}
.pw-header.is-sticky .pw-header__top{padding:.7rem 1.5rem .55rem;}
.pw-header.is-sticky .pw-logo{font-size:1.7rem;}
.pw-header.is-sticky .pw-logo--img img{max-height:44px;}
.pw-header.is-sticky .pw-header__top-left{display:none;}
.pw-header.is-sticky .pw-nav{padding-top:.5rem;padding-bottom:.5rem;}
@keyframes pwSlideDown{from{transform:translateY(-100%);opacity:0;}to{transform:translateY(0);opacity:1;}}

/* Mobile menu */
.pw-mobile-nav{
  position:fixed;inset:0;z-index:1000;background:#fff;color:var(--pw-color-text,#1a1a1a);
  transform:translateX(100%);transition:transform var(--pw-t);
  display:flex;flex-direction:column;overflow-y:auto;
}
.pw-mobile-nav.is-open{transform:translateX(0);}
.pw-mobile-nav__head{display:flex;align-items:center;justify-content:space-between;padding:1.2rem 1.5rem;background:#fff;border-bottom:1px solid var(--pw-color-border,#e8e3dc);}
.pw-mobile-nav__head .pw-logo{color:var(--pw-color-primary,#1a1a1a);}
.pw-mobile-nav__head .pw-mobile-close{color:var(--pw-color-primary,#1a1a1a);}
.pw-mobile-nav__body{padding:1.5rem;flex:1;}
.pw-mobile-nav__item{border-bottom:1px solid var(--pw-color-border);}
.pw-mobile-nav__link{
  display:flex;align-items:center;justify-content:space-between;padding:1rem 0;
  font-family:"Playfair Display", Georgia, serif;font-size:1.05rem;font-weight:400;letter-spacing:.02em;
  color:var(--pw-color-primary,#1a1a1a);
}
.pw-mobile-nav__sub{padding:0 0 1rem;display:none;}
.pw-mobile-nav__item.is-open .pw-mobile-nav__sub{display:block;}
.pw-mobile-nav__sub a{display:block;padding:.6rem 0;font-size:.92rem;color:var(--pw-color-text-muted);}
.pw-mobile-nav__sub a:hover{color:var(--pw-color-accent);}
.pw-mobile-nav__foot{padding:1.5rem;border-top:1px solid var(--pw-color-border);}
.pw-mobile-nav__foot .pw-search-form{border-bottom:1px solid var(--pw-color-border);color:var(--pw-color-primary,#1a1a1a);margin-bottom:1rem;}
.pw-mobile-nav__foot .pw-search-form svg{color:var(--pw-color-primary,#1a1a1a);}
.pw-mobile-nav__foot .pw-search-form input{color:var(--pw-color-text,#1a1a1a);}
.pw-mobile-nav__foot-links{display:flex;gap:1.4rem;flex-wrap:wrap;}
.pw-mobile-nav__foot-links a{display:inline-flex;align-items:center;gap:.4rem;font-size:.85rem;color:var(--pw-color-text,#1a1a1a);text-decoration:none;}
.pw-mobile-nav__foot-links a:hover{color:var(--pw-color-accent);}
.pw-mobile-nav__foot-links svg{width:20px;height:20px;}
.pw-overlay{position:fixed;inset:0;background:rgba(26,26,26,.4);z-index:900;opacity:0;visibility:hidden;transition:opacity var(--pw-t),visibility var(--pw-t);}
.pw-overlay.is-open{opacity:1;visibility:visible;}

/* ==========================================================================
   Hero — full-bleed carousel banner
   ========================================================================== */
.pw-hero{position:relative;background:#1a1a1a;overflow:hidden;}
.pw-hero--slider{height:clamp(460px,78vh,840px);}
.pw-hero__track{position:absolute;inset:0;}
.pw-hero__slide{
  position:absolute;inset:0;opacity:0;visibility:hidden;
  background-image:var(--pw-slide-img);background-size:cover;background-position:center;
  display:flex;align-items:center;
  transition:opacity .8s ease,visibility .8s ease;
  transform:scale(1.04);
}
.pw-hero__slide.is-active{opacity:1;visibility:visible;transform:scale(1);transition:opacity .8s ease,visibility .8s ease,transform 6s ease;}
.pw-hero__scrim{position:absolute;inset:0;background:linear-gradient(90deg,rgba(20,20,24,.62) 0%,rgba(20,20,24,.32) 42%,rgba(20,20,24,.05) 72%);}
.pw-hero__inner{
  position:relative;z-index:2;width:100%;max-width:var(--pw-container);margin:0 auto;
  padding:clamp(3rem,6vw,5rem) 1.5rem;
}
.pw-hero__copy{max-width:580px;color:#fff;}
.pw-hero__eyebrow{
  font-family:var(--pw-font-ui);font-size:.75rem;letter-spacing:.34em;text-transform:uppercase;
  color:var(--pw-color-accent-soft);display:inline-block;margin-bottom:1.4rem;
}
.pw-hero__title{font-size:clamp(2.4rem,5.5vw,4.6rem);line-height:1.05;margin-bottom:1.5rem;color:#fff;}
.pw-hero__title em{font-style:italic;color:var(--pw-color-accent-soft);}
.pw-hero__sub{font-size:1.1rem;line-height:1.75;color:rgba(255,255,255,.86);margin-bottom:2.2rem;max-width:480px;}
.pw-hero__actions{display:flex;gap:1rem;flex-wrap:wrap;}
.pw-btn--ghost-light{background:transparent;border:1px solid rgba(255,255,255,.6);color:#fff;}
.pw-btn--ghost-light:hover{background:#fff;color:var(--pw-color-primary);border-color:#fff;}

/* Arrows */
.pw-hero__arrow{
  position:absolute;top:50%;transform:translateY(-50%);z-index:5;
  width:48px;height:48px;border-radius:50%;
  border:1px solid rgba(255,255,255,.4);background:rgba(255,255,255,.12);color:#fff;
  display:flex;align-items:center;justify-content:center;cursor:pointer;
  transition:background var(--pw-t-fast),border-color var(--pw-t-fast);
}
.pw-hero__arrow:hover{background:rgba(255,255,255,.28);border-color:#fff;}
.pw-hero__arrow svg{width:22px;height:22px;}
.pw-hero__arrow--prev{left:1.2rem;}
.pw-hero__arrow--next{right:1.2rem;}
.pw-hero__arrow--prev svg{transform:rotate(180deg);}

/* Dots */
.pw-hero__dots{position:absolute;left:50%;bottom:1.4rem;transform:translateX(-50%);z-index:5;display:flex;gap:.6rem;}
.pw-hero__dot{width:10px;height:10px;border-radius:50%;border:0;padding:0;background:rgba(255,255,255,.45);cursor:pointer;transition:background var(--pw-t-fast),transform var(--pw-t-fast);}
.pw-hero__dot.is-active{background:#fff;transform:scale(1.25);}
.pw-hero__dot:hover{background:rgba(255,255,255,.8);}

/* ==========================================================================
   Categories grid
   ========================================================================== */
.pw-cats{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;}
.pw-cat{
  position:relative;display:block;overflow:hidden;background:var(--pw-color-bg-alt);
  aspect-ratio:4/5;border-radius:var(--pw-radius);
}
.pw-cat__img{position:absolute;inset:0;}
.pw-cat__img img{width:100%;height:100%;object-fit:cover;transition:transform var(--pw-t-slow);}
.pw-cat:hover .pw-cat__img img{transform:scale(1.06);}
.pw-cat::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 40%,rgba(26,26,26,.55) 100%);}
.pw-cat__body{position:absolute;left:0;right:0;bottom:0;padding:1.8rem;z-index:2;color:#fff;}
.pw-cat__title{color:#fff;font-size:1.5rem;margin:0 0 .25rem;font-family:var(--pw-font-heading);}
.pw-cat__sub{font-size:.78rem;letter-spacing:.18em;text-transform:uppercase;color:rgba(255,255,255,.85);}
.pw-cat__arrow{display:inline-flex;align-items:center;gap:.5em;margin-top:.8rem;font-size:.72rem;letter-spacing:.18em;text-transform:uppercase;opacity:0;transform:translateY(8px);transition:opacity var(--pw-t),transform var(--pw-t);}
.pw-cat:hover .pw-cat__arrow{opacity:1;transform:translateY(0);}

/* ==========================================================================
   Product grid & cards
   ========================================================================== */
.pw-products{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem 1.4rem;}
.pw-product{position:relative;display:flex;flex-direction:column;background:transparent;}
.pw-product__media{
  position:relative;aspect-ratio:3/4;overflow:hidden;background:var(--pw-color-bg-alt);
  border-radius:var(--pw-radius);
}
.pw-product__media img{width:100%;height:100%;object-fit:cover;transition:transform var(--pw-t-slow),opacity var(--pw-t);}
.pw-product:hover .pw-product__media img{transform:scale(1.05);}
.pw-product__media-alt{
  position:absolute;inset:0;opacity:0;transition:opacity var(--pw-t);
}
.pw-product:hover .pw-product__media-alt{opacity:1;}
.pw-product__badge{
  position:absolute;top:.8rem;left:.8rem;z-index:3;
  font-size:.6rem;letter-spacing:.16em;text-transform:uppercase;font-weight:600;
  padding:.45em .85em;border-radius:var(--pw-radius-sm);
}
.pw-product__badge--new{background:var(--pw-color-primary);color:#fff;}
.pw-product__badge--sale{background:var(--pw-color-sale);color:#fff;}
.pw-product__badge--hot{background:var(--pw-color-accent);color:#fff;}
.pw-product__actions{
  position:absolute;left:0;right:0;bottom:0;padding:.8rem;z-index:3;
  display:flex;justify-content:center;gap:.5rem;
  opacity:0;transform:translateY(12px);transition:opacity var(--pw-t),transform var(--pw-t);
}
.pw-product:hover .pw-product__actions{opacity:1;transform:translateY(0);}
.pw-product__action{
  width:42px;height:42px;border-radius:50%;background:#fff;color:var(--pw-color-primary);
  display:inline-flex;align-items:center;justify-content:center;box-shadow:var(--pw-shadow-sm);
  transition:background var(--pw-t-fast),color var(--pw-t-fast);
}
.pw-product__action:hover{background:var(--pw-color-primary);color:#fff;}
.pw-product__action svg{width:18px;height:18px;}
.pw-product__body{padding:1rem .2rem 0;display:flex;flex-direction:column;gap:.3rem;text-align:center;}
.pw-product__cat{font-size:.66rem;letter-spacing:.22em;text-transform:uppercase;color:var(--pw-color-text-subtle);}
.pw-product__title{font-family:var(--pw-font-ui);font-size:.95rem;font-weight:500;margin:0;line-height:1.4;color:var(--pw-color-primary);}
.pw-product__title a{color:inherit;}
.pw-product__title a:hover{color:var(--pw-color-accent);}
.pw-product__price{font-size:.95rem;color:var(--pw-color-primary);font-weight:500;}
.pw-product__price del{color:var(--pw-color-text-subtle);font-weight:400;margin-right:.4em;text-decoration:line-through;}
.pw-product__price ins{background:none;text-decoration:none;color:var(--pw-color-sale);}
.pw-product__rating{display:flex;align-items:center;justify-content:center;gap:.2rem;font-size:.75rem;color:var(--pw-color-accent);}

/* ==========================================================================
   Editorial / brand story split
   ========================================================================== */
.pw-split{display:grid;grid-template-columns:1fr 1fr;gap:0;align-items:stretch;}
.pw-split__media{position:relative;min-height:560px;overflow:hidden;}
.pw-split__media img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;}
.pw-split__body{padding:var(--pw-space-xl) var(--pw-space-lg);display:flex;flex-direction:column;justify-content:center;}
.pw-split--reverse .pw-split__media{order:2;}
.pw-split__copy{max-width:460px;}
.pw-split__title{margin-bottom:1.2rem;}
.pw-split__text{color:var(--pw-color-text-muted);margin-bottom:1.8rem;}
.pw-split__list{display:grid;gap:1.2rem;margin:1.5rem 0 2rem;}
.pw-split__list-item{display:flex;gap:1rem;align-items:flex-start;}
.pw-split__list-num{font-family:var(--pw-font-heading);font-size:1.6rem;color:var(--pw-color-accent);line-height:1;min-width:2rem;}
.pw-split__list-text strong{display:block;font-weight:600;margin-bottom:.2rem;}
.pw-split__list-text span{color:var(--pw-color-text-muted);font-size:.92rem;}

/* ==========================================================================
   Feature strip
   ========================================================================== */
.pw-features{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;}
.pw-feature{text-align:center;padding:1.5rem;}
.pw-feature__icon{
  width:56px;height:56px;margin:0 auto 1rem;border:1px solid var(--pw-color-border-strong);
  border-radius:50%;display:flex;align-items:center;justify-content:center;color:var(--pw-color-accent);
}
.pw-feature__icon svg{width:24px;height:24px;}
.pw-feature__title{font-family:var(--pw-font-ui);font-size:.85rem;letter-spacing:.16em;text-transform:uppercase;font-weight:600;margin:0 0 .4rem;}
.pw-feature__text{font-size:.88rem;color:var(--pw-color-text-muted);}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.pw-testimonials{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;}
.pw-testimonial{background:#fff;border:1px solid var(--pw-color-border);padding:2.2rem;border-radius:var(--pw-radius);display:flex;flex-direction:column;gap:1rem;}
.pw-testimonial__stars{color:var(--pw-color-accent);font-size:1rem;letter-spacing:.15em;}
.pw-testimonial__text{font-size:1rem;color:var(--pw-color-text);line-height:1.7;font-style:italic;}
.pw-testimonial__author{display:flex;align-items:center;gap:.9rem;margin-top:auto;padding-top:1rem;border-top:1px solid var(--pw-color-border);}
.pw-testimonial__avatar{width:48px;height:48px;border-radius:50%;overflow:hidden;background:var(--pw-color-bg-alt);}
.pw-testimonial__avatar img{width:100%;height:100%;object-fit:cover;}
.pw-testimonial__name{font-weight:600;font-size:.9rem;}
.pw-testimonial__loc{font-size:.78rem;color:var(--pw-color-text-subtle);letter-spacing:.1em;text-transform:uppercase;}

/* ==========================================================================
   CTA banner
   ========================================================================== */
.pw-cta{position:relative;background:var(--pw-color-primary);color:#fff;overflow:hidden;text-align:center;padding:var(--pw-space-2xl) 1.5rem;}
.pw-cta__bg{position:absolute;inset:0;opacity:.35;}
.pw-cta__bg img{width:100%;height:100%;object-fit:cover;}
.pw-cta__inner{position:relative;z-index:2;max-width:680px;margin:0 auto;}
.pw-cta__title{color:#fff;font-size:clamp(2.2rem,5vw,3.6rem);margin-bottom:1rem;}
.pw-cta__title em{font-style:italic;color:var(--pw-color-accent-soft);}
.pw-cta__sub{color:rgba(255,255,255,.85);margin-bottom:2rem;font-size:1.1rem;}

/* ==========================================================================
   Newsletter
   ========================================================================== */
.pw-newsletter{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center;}
.pw-newsletter__form{display:flex;gap:.6rem;flex-wrap:wrap;}
.pw-newsletter__form input{flex:1;min-width:220px;padding:1rem 1.2rem;border:1px solid var(--pw-color-border-strong);background:#fff;font-size:.9rem;}
.pw-newsletter__form input:focus{outline:0;border-color:var(--pw-color-accent);}

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.pw-faq{max-width:820px;margin:0 auto;}
.pw-faq__item{border-bottom:1px solid var(--pw-color-border);}
.pw-faq__q{
  width:100%;text-align:left;padding:1.4rem 0;display:flex;justify-content:space-between;align-items:center;gap:1rem;
  font-family:var(--pw-font-ui);font-size:1.05rem;font-weight:500;color:var(--pw-color-primary);
}
.pw-faq__q:hover{color:var(--pw-color-accent);}
.pw-faq__icon{transition:transform var(--pw-t);color:var(--pw-color-accent);font-size:1.2rem;}
.pw-faq__item.is-open .pw-faq__icon{transform:rotate(45deg);}
.pw-faq__a{max-height:0;overflow:hidden;transition:max-height var(--pw-t);}
.pw-faq__a-inner{padding:0 0 1.4rem;color:var(--pw-color-text-muted);}

/* ==========================================================================
   Instagram / lookbook grid
   ========================================================================== */
.pw-lookbook{display:grid;grid-template-columns:repeat(5,1fr);gap:.5rem;}
.pw-lookbook__item{position:relative;aspect-ratio:1/1;overflow:hidden;background:var(--pw-color-bg-alt);}
.pw-lookbook__item img{width:100%;height:100%;object-fit:cover;transition:transform var(--pw-t-slow);}
.pw-lookbook__item:hover img{transform:scale(1.08);}
.pw-lookbook__item::after{content:"";position:absolute;inset:0;background:rgba(26,26,26,0);transition:background var(--pw-t);}
.pw-lookbook__item:hover::after{background:rgba(26,26,26,.25);}

/* ==========================================================================
   Footer
   ========================================================================== */
.pw-footer{background:var(--pw-color-bg-dark);color:var(--pw-color-on-dark-muted);padding:var(--pw-space-xl) 0 0;}
.pw-footer__top{display:grid;grid-template-columns:1.4fr repeat(3,1fr);gap:3rem;padding-bottom:var(--pw-space-lg);border-bottom:1px solid rgba(255,255,255,.12);}
.pw-footer__brand{font-family:var(--pw-font-script);font-size:2rem;color:#fff;display:block;margin-bottom:1rem;}
.pw-footer__about{font-size:.92rem;line-height:1.8;color:var(--pw-color-on-dark-muted);margin-bottom:1.5rem;max-width:320px;}
.pw-footer__socials{display:flex;gap:.8rem;}
.pw-footer__social{width:40px;height:40px;border:1px solid rgba(255,255,255,.2);border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;transition:all var(--pw-t-fast);}
.pw-footer__social:hover{background:var(--pw-color-accent);border-color:var(--pw-color-accent);}
.pw-footer__social svg{width:18px;height:18px;}
.pw-footer__col h4{color:#fff;font-family:var(--pw-font-ui);font-size:.78rem;letter-spacing:.2em;text-transform:uppercase;font-weight:600;margin-bottom:1.4rem;}
.pw-footer__col ul{display:flex;flex-direction:column;gap:.7rem;}
.pw-footer__col a{color:var(--pw-color-on-dark-muted);font-size:.92rem;}
.pw-footer__col a:hover{color:var(--pw-color-accent-soft);}
.pw-footer__bottom{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:1rem;padding:1.8rem 0;font-size:.82rem;}
.pw-footer__pay{display:flex;gap:.6rem;align-items:center;}
.pw-footer__pay span{padding:.3em .6em;border:1px solid rgba(255,255,255,.2);border-radius:var(--pw-radius-sm);font-size:.7rem;letter-spacing:.1em;text-transform:uppercase;}

/* ==========================================================================
   Floating social
   ========================================================================== */
.pw-float{position:fixed;right:1.4rem;bottom:1.4rem;z-index:600;display:flex;flex-direction:column;gap:.7rem;}
.pw-float--left{right:auto;left:1.4rem;}
.pw-float__btn{
  width:50px;height:50px;border-radius:50%;background:var(--pw-color-accent);color:#fff;
  display:flex;align-items:center;justify-content:center;box-shadow:var(--pw-shadow);
  transition:transform var(--pw-t-fast),background var(--pw-t-fast);position:relative;
  padding:0;border:0;cursor:pointer;line-height:1;overflow:hidden;
}
.pw-float__btn > span{display:flex;align-items:center;justify-content:center;}
.pw-float__btn:hover{transform:scale(1.08);background:var(--pw-color-accent-deep);}
.pw-float__btn svg{width:24px;height:24px;display:block;}
.pw-float__tip{
  position:absolute;right:60px;top:50%;transform:translateY(-50%) translateX(6px);
  background:var(--pw-color-primary);color:#fff;padding:.5rem .9rem;font-size:.78rem;white-space:nowrap;
  opacity:0;visibility:hidden;transition:all var(--pw-t-fast);border-radius:var(--pw-radius-sm);
}
.pw-float__btn:hover .pw-float__tip{opacity:1;visibility:visible;transform:translateY(-50%) translateX(0);}
.pw-float--left .pw-float__tip{right:auto;left:60px;transform:translateY(-50%) translateX(-6px);}
.pw-float--left .pw-float__btn:hover .pw-float__tip{transform:translateY(-50%) translateX(0);}

/* WeChat QR modal */
.pw-qr-modal{position:fixed;inset:0;z-index:1100;background:rgba(26,26,26,.6);display:flex;align-items:center;justify-content:center;opacity:0;visibility:hidden;transition:all var(--pw-t);}
.pw-qr-modal.is-open{opacity:1;visibility:visible;}
.pw-qr-modal__inner{background:#fff;padding:2rem;border-radius:var(--pw-radius-lg);text-align:center;max-width:320px;display:flex;flex-direction:column;align-items:center;gap:.8rem;}
.pw-qr-modal__img{width:240px;height:240px;background:var(--pw-color-bg-alt);overflow:hidden;}
.pw-qr-modal__img img{width:100%;height:100%;object-fit:cover;display:block;}
.pw-qr-modal__title{font-family:var(--pw-font-heading);font-size:1.2rem;}
.pw-qr-modal__sub{font-size:.85rem;color:var(--pw-color-text-muted);}
.pw-qr-modal__close{margin-top:0;}

/* ==========================================================================
   Page header (interior pages)
   ========================================================================== */
.pw-page-head{background:var(--pw-color-bg-alt);padding:var(--pw-space-lg) 0;text-align:center;}
.pw-page-head__crumb{font-size:.72rem;letter-spacing:.18em;text-transform:uppercase;color:var(--pw-color-text-subtle);margin-bottom:.8rem;}
.pw-page-head__crumb a{color:inherit;}
.pw-page-head__crumb a:hover{color:var(--pw-color-accent);}
.pw-page-head__title{margin:0;font-size:clamp(2rem,4vw,3rem);}

/* ==========================================================================
   Blog
   ========================================================================== */
.pw-blog{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;}
.pw-post{display:flex;flex-direction:column;}
.pw-post__media{aspect-ratio:3/2;overflow:hidden;border-radius:var(--pw-radius);background:var(--pw-color-bg-alt);margin-bottom:1.2rem;}
.pw-post__media img{width:100%;height:100%;object-fit:cover;transition:transform var(--pw-t-slow);}
.pw-post:hover .pw-post__media img{transform:scale(1.05);}
.pw-post__meta{font-size:.72rem;letter-spacing:.18em;text-transform:uppercase;color:var(--pw-color-text-subtle);margin-bottom:.6rem;}
.pw-post__title{font-size:1.4rem;margin:0 0 .7rem;line-height:1.3;}
.pw-post__title a{color:inherit;}
.pw-post__title a:hover{color:var(--pw-color-accent);}
.pw-post__excerpt{color:var(--pw-color-text-muted);font-size:.92rem;}

/* Pagination */
.pw-pagination{display:flex;justify-content:center;gap:.4rem;margin-top:var(--pw-space-lg);}
.pw-pagination a,.pw-pagination span{
  width:42px;height:42px;display:flex;align-items:center;justify-content:center;
  border:1px solid var(--pw-color-border);font-size:.85rem;
}
.pw-pagination a:hover{border-color:var(--pw-color-primary);background:var(--pw-color-primary);color:#fff;}
.pw-pagination .current{background:var(--pw-color-primary);color:#fff;border-color:var(--pw-color-primary);}

/* ==========================================================================
   404
   ========================================================================== */
.pw-404{text-align:center;padding:var(--pw-space-2xl) 0;}
.pw-404__num{font-family:var(--pw-font-heading);font-size:clamp(6rem,18vw,12rem);line-height:1;color:var(--pw-color-accent);margin:0;}
.pw-404__title{margin-bottom:1rem;}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width:1200px){
  .pw-features{grid-template-columns:repeat(2,1fr);}
  .pw-lookbook{grid-template-columns:repeat(4,1fr);}
}
@media (max-width:992px){
  :root{--pw-space-xl:4rem;--pw-space-2xl:5rem;}
  .pw-header__menu{display:none;}
  .pw-burger{display:inline-flex;}
  .pw-header__top{grid-template-columns:auto 1fr auto;padding:.9rem 1rem;gap:.75rem;}
  .pw-header__top-left{display:none;}
  .pw-header__icons .pw-icon-btn:not(.pw-icon-btn--cart){display:none;}
  .pw-hero__inner{grid-template-columns:1fr;min-height:auto;padding:3rem 1.5rem;}
  .pw-hero__media{order:-1;max-width:520px;margin:0 auto;}
  .pw-cats{grid-template-columns:repeat(2,1fr);}
  .pw-products{grid-template-columns:repeat(3,1fr);}
  .pw-testimonials{grid-template-columns:1fr;}
  .pw-split{grid-template-columns:1fr;}
  .pw-split__media{min-height:420px;}
  .pw-split--reverse .pw-split__media{order:0;}
  .pw-newsletter{grid-template-columns:1fr;gap:1.5rem;}
  .pw-footer__top{grid-template-columns:1fr 1fr;}
  .pw-lookbook{grid-template-columns:repeat(3,1fr);}
  .pw-blog{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:768px){
  .pw-mega{position:static;transform:none;opacity:1;visibility:visible;pointer-events:auto;box-shadow:none;padding:.2rem 0 1rem;min-width:0;}
  .pw-nav__item--has-mega:hover .pw-mega{transform:none;}
  .pw-section{padding:3.5rem 0;}
}
@media (max-width:576px){
  :root{--pw-space-xl:3rem;--pw-space-2xl:3.5rem;}
  .pw-promo{font-size:.62rem;letter-spacing:.15em;padding:.6rem 2.4rem .6rem 1rem;}
  .pw-header__top{padding:.8rem 1rem;}
  .pw-icon-btn--cart .pw-cart-label{display:none;}
  .pw-cats{grid-template-columns:1fr;}
  .pw-products{grid-template-columns:repeat(2,1fr);gap:1rem;}
  .pw-features{grid-template-columns:1fr;}
  .pw-lookbook{grid-template-columns:repeat(2,1fr);}
  .pw-footer__top{grid-template-columns:1fr;gap:2rem;}
  .pw-footer__bottom{flex-direction:column;text-align:center;}
  .pw-blog{grid-template-columns:1fr;}
  .pw-hero__media-sub{width:110px;height:110px;top:-1rem;right:0;}
}
