/* ============================================================
   pw- Design System
   Loaded last. All classes prefixed pw- to avoid conflicts.
   ============================================================ */

/* ── 1. CSS VARIABLES ──────────────────────────────────────── */
:root {
  --primary:        #c96;
  --primary-dark:   #b8864e;
  --primary-light:  #f5e6d3;
  --text-dark:      #222;
  --text-mid:       #555;
  --text-muted:     #888;
  --border:         #e8e8e8;
  --bg-light:       #fafafa;
  --bg-dark:        #111;
  --white:          #fff;
  --radius:         8px;
  --radius-lg:      14px;
  --shadow-sm:      0 2px 8px rgba(0,0,0,.07);
  --shadow-md:      0 6px 24px rgba(0,0,0,.11);
  --shadow-lg:      0 12px 40px rgba(0,0,0,.14);
  --transition:     .22s ease;
  --font-main:      'Poppins', sans-serif;
}

/* ── 2. BASE RESETS ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: hidden; max-width: 100%; }
body { font-family: var(--font-main); color: var(--text-dark); background: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; max-width: 100vw; }
.page-wrapper { overflow-x: clip; max-width: 100%; }
.main { overflow-x: clip; }
a { transition: color var(--transition); }
img { max-width: 100%; height: auto; }

/* ── 3. PROMO BAR ───────────────────────────────────────────── */
.pw-promo {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #e8d5b7;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .5px;
  padding: 0;
  position: relative;
  text-align: center;
  z-index: 200;
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pw-promo-track {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 40px;
}
.pw-promo-msg {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.pw-promo-msg strong { color: #f5d9a8; }
.pw-promo-close {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,.45);
  cursor: pointer; line-height: 1; padding: 6px;
  transition: color .2s; display: flex; align-items: center;
}
.pw-promo-close:hover { color: #fff; }
.pw-promo-close svg { display: block; }

/* ── 4. HEADER ──────────────────────────────────────────────── */
.pw-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 110;
  transition: box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.pw-header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  border-bottom-color: var(--border);
}
.pw-header-wrap { position: relative; }

.pw-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 95px;
}

/* Logo */
.pw-logo {
  display: flex; align-items: center; flex-shrink: 0;
  text-decoration: none; transition: opacity .2s;
}
.pw-logo:hover { opacity: .85; }
.pw-logo img { height: 90px; width: auto; object-fit: contain; }
.pw-logo-text {
  font-size: 22px; font-weight: 700; color: var(--text-dark);
  letter-spacing: -.01em;
}

/* Mobile: center logo absolutely */
@media (max-width: 991px) {
  .pw-header-inner { height: 70px; }
  .pw-logo {
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
  }
  .pw-logo img { height: 60px; }
}

/* Hamburger — animated 3-line to X */
.pw-hamburger {
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
  padding: 6px; width: 38px; height: 38px; flex-shrink: 0;
  border-radius: var(--radius);
  transition: background .2s;
}
.pw-hamburger:hover { background: var(--bg-light); }
.pw-hamburger-box {
  display: flex; flex-direction: column; justify-content: center;
  width: 20px; height: 16px; position: relative;
}
.pw-hamburger-line {
  display: block; width: 100%; height: 2px;
  background: var(--text-dark); border-radius: 2px;
  position: absolute; left: 0;
  transition: transform .25s ease, opacity .15s ease, top .25s ease;
}
.pw-hamburger-line:nth-child(1) { top: 0; }
.pw-hamburger-line:nth-child(2) { top: 7px; }
.pw-hamburger-line:nth-child(3) { top: 14px; }
.pw-hamburger.is-active .pw-hamburger-line:nth-child(1) { top: 7px; transform: rotate(45deg); }
.pw-hamburger.is-active .pw-hamburger-line:nth-child(2) { opacity: 0; }
.pw-hamburger.is-active .pw-hamburger-line:nth-child(3) { top: 7px; transform: rotate(-45deg); }

/* Nav — centered flex on desktop */
.pw-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
  margin: 0 16px;
  height: 100%;
}
.pw-nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.pw-nav-item.pw-has-mega {
  position: static !important;
}

.pw-nav-link {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 14px; font-size: 13px; font-weight: 600;
  color: var(--text-dark); text-decoration: none;
  position: relative; white-space: nowrap;
  transition: color .2s ease;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.pw-nav-arrow {
  transition: transform .2s ease;
  margin-top: 1px;
}
.pw-has-mega:hover .pw-nav-arrow { transform: rotate(180deg); }

.pw-nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 14px;
  right: 14px; height: 2px; background: var(--primary);
  transform: scaleX(0); transform-origin: center;
  transition: transform .25s cubic-bezier(.4, 0, .2, 1);
  border-radius: 2px;
}
.pw-nav-link:hover,
.pw-nav-link.active { color: var(--primary); }
.pw-nav-link:hover::after,
.pw-nav-link.active::after { transform: scaleX(1); }

/* ── Mega Menu (Full-Width Breakout) ─────────────────── */
.pw-mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 3px solid var(--primary);
  box-shadow: 0 26px 55px -14px rgba(40,28,16,.24);
  padding: 24px 0 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .24s ease, visibility .24s, transform .26s cubic-bezier(.2,.75,.3,1);
  transform: translateY(12px);
  z-index: 1050;
}
.pw-has-mega:hover .pw-mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.pw-mega-menu::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}

/* Intro heading row */
.pw-mega-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.pw-mega-head h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.015em;
  margin: 0;
}
.pw-mega-head p {
  font-size: 1.24rem;
  color: var(--text-muted);
  margin: 0;
}

.pw-mega-layout {
  display: grid;
  grid-template-columns: 1fr 290px;
  gap: 32px;
  align-items: stretch;
}
@media (max-width: 1199px) {
  .pw-mega-layout {
    grid-template-columns: 1fr 250px;
    gap: 22px;
  }
}
@media (max-width: 991px) {
  .pw-mega-menu { display: none !important; }
}

.pw-mega-cats-wrap {
  flex: 1;
  min-width: 0;
}
.pw-mega-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(216px, 1fr));
  gap: 6px;
  max-height: 448px;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: #e0cdb4 transparent;
}
.pw-mega-grid::-webkit-scrollbar { width: 6px; }
.pw-mega-grid::-webkit-scrollbar-track { background: transparent; }
.pw-mega-grid::-webkit-scrollbar-thumb { background: #e0cdb4; border-radius: 20px; }
.pw-mega-grid::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* Each category rendered as a soft hover card */
.pw-mega-col {
  display: flex;
  flex-direction: column;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: background .2s ease, border-color .2s ease;
}
.pw-mega-col:hover {
  background: linear-gradient(180deg, #fdf9f3 0%, #fbf4ea 100%);
  border-color: rgba(201,153,102,.28);
}
.pw-mega-title {
  display: block;
  font-size: 1.42rem;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  letter-spacing: -0.01em;
  line-height: 1.3;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition), border-color .2s ease;
}
.pw-mega-title:hover {
  color: var(--primary);
}
.pw-mega-col:hover .pw-mega-title { border-bottom-color: rgba(201,153,102,.3); }
.pw-mega-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.pw-mega-list li {
  margin: 0;
}
.pw-mega-list a {
  font-size: 1.28rem;
  color: var(--text-mid);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px;
  border-radius: 7px;
  line-height: 1.35;
  transition: color .15s ease, background .15s ease, padding-left .15s ease;
}
.pw-mega-list a::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d8c3a6;
  flex-shrink: 0;
  transition: background .15s ease, transform .15s ease;
}
.pw-mega-list a:hover {
  color: var(--primary-dark);
  background: rgba(201,153,102,.12);
  padding-left: 12px;
}
.pw-mega-list a:hover::before {
  background: var(--primary);
  transform: scale(1.4);
}
.pw-mega-empty-subs { margin-top: 2px; }
.pw-mega-explore-link {
  font-size: 1.24rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
  padding: 3px 4px;
  transition: gap .15s ease, color .15s ease;
}
.pw-mega-explore-link:hover {
  color: var(--primary-dark);
  gap: 9px;
}

/* Promo Card in Mega Menu — premium dark walnut */
.pw-mega-promo-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #2a2018 0%, #3d2c1c 55%, #573c24 100%);
  border: 1px solid rgba(201,153,102,.4);
  border-radius: 16px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04), 0 12px 32px -12px rgba(50,34,18,.5);
}
.pw-mega-promo-card::after {
  content: '';
  position: absolute;
  right: -42px;
  top: -42px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,153,102,.38) 0%, transparent 70%);
  pointer-events: none;
}
.pw-mega-promo-badge {
  position: relative;
  z-index: 1;
  display: inline-block;
  align-self: flex-start;
  background: var(--primary);
  color: #2a2018;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 5px;
  letter-spacing: .06em;
  margin-bottom: 12px;
}
.pw-mega-promo-title {
  position: relative;
  z-index: 1;
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 10px;
}
.pw-mega-promo-text {
  position: relative;
  z-index: 1;
  font-size: 1.24rem;
  color: #e8d5b7;
  line-height: 1.6;
  margin-bottom: 18px;
}
.pw-mega-promo-text strong {
  color: #fff;
  background: rgba(201,153,102,.28);
  padding: 1px 6px;
  border-radius: 4px;
}
.pw-mega-promo-card .pw-btn { position: relative; z-index: 1; }

/* Mega Footer */
.pw-mega-footer {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.pw-mega-footer-features {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.24rem;
  color: var(--text-mid);
  font-weight: 500;
}
.pw-mega-footer-link {
  font-size: 1.32rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s ease, color .2s ease;
}
.pw-mega-footer-link:hover {
  color: var(--primary-dark);
  gap: 11px;
}

/* Header Actions */
.pw-header-actions {
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0;
}

.pw-action-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: none; border: none; cursor: pointer;
  color: var(--text-dark); position: relative;
  transition: background .2s, color .2s;
  text-decoration: none;
}
.pw-action-btn svg { display: block; }
.pw-action-btn:hover { background: var(--bg-light); color: var(--primary); }

.pw-login-link {
  width: auto; padding: 0 14px; border-radius: 24px;
  border: 1.5px solid var(--border); height: 36px;
  gap: 6px;
}
.pw-login-link:hover {
  background: var(--primary-light); color: var(--primary-dark);
  border-color: var(--primary-light);
}
.pw-login-label { font-size: 13px; font-weight: 600; color: var(--text-dark); }
.pw-login-link:hover .pw-login-label { color: var(--primary-dark); }

/* Badge */
.pw-badge {
  position: absolute; top: 2px; right: 2px;
  background: var(--primary); color: var(--white);
  font-size: 10px; font-weight: 700; min-width: 17px; height: 17px;
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  padding: 0 4px; line-height: 1;
  box-shadow: 0 1px 3px rgba(0,0,0,.15);
}

/* Cart Panel */
/* ── Cart Hover Dropdown ─────────────────────────────────────────────── */
.pw-cart-wrap { position: relative; display: flex; align-items: center; }
.pw-cart-panel {
  position: absolute; top: calc(100% + 8px); right: -8px;
  width: 340px; background: var(--white); border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0,0,0,.12), 0 0 0 1px rgba(0,0,0,.04);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .22s, visibility .22s, transform .22s;
  transform: translateY(8px); z-index: 500;
  display: flex; flex-direction: column; overflow: hidden;
}
.pw-cart-wrap .pw-cart-panel.pw-cp-open {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
}

/* Panel header */
.pw-cart-panel-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; border-bottom: 1px solid var(--border);
}
.pw-cart-panel-title {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--text-dark);
}
.pw-cart-panel-title .icon-shopping-cart { font-size: 16px; color: var(--primary); }
.pw-cart-count-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 20px; height: 20px; padding: 0 5px;
  background: var(--primary); color: #fff;
  border-radius: 10px; font-size: 10px; font-weight: 700; line-height: 1;
}
.pw-cart-panel-close {
  width: 28px; height: 28px; border: none; background: transparent;
  border-radius: 50%; cursor: pointer; font-size: 0; line-height: 1;
  color: var(--text-muted); display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s;
}
.pw-cart-panel-close:hover { background: var(--bg-light); color: var(--text-dark); }
.pw-cart-panel-close svg { display: block; }

/* Items list */
.pw-cart-body { max-height: 320px; overflow-y: auto; padding: 8px 14px; }
.pw-cart-body::-webkit-scrollbar { width: 3px; }
.pw-cart-body::-webkit-scrollbar-thumb { background: #ddd; border-radius: 3px; }

/* Empty state */
.pw-cart-empty-msg {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 32px 16px; color: #bbb; gap: 10px; text-align: center;
}
.pw-cart-empty-msg svg { opacity: .3; }
.pw-cart-empty-msg p { font-size: 13px; margin: 0; color: var(--text-muted); }

/* Single dropdown item */
.pw-cart-drop-item {
  display: flex; gap: 12px; padding: 10px 0;
  border-bottom: 1px solid #f5f0ea; align-items: flex-start;
}
.pw-cart-drop-item:last-child { border-bottom: none; }
.pw-cart-drop-img {
  width: 64px; height: 64px; border-radius: 8px;
  object-fit: cover; flex-shrink: 0; border: 1px solid var(--border);
}
.pw-cart-drop-details { flex: 1; min-width: 0; }
.pw-cart-drop-name {
  font-size: 13px; font-weight: 600; color: var(--text-dark);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-bottom: 3px; display: block; text-decoration: none;
}
.pw-cart-drop-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 2px; }
.pw-cart-drop-variant { font-size: 11.5px; color: #999; margin-bottom: 4px; font-style: italic; display: block; }
.pw-cart-drop-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 4px;
}
.pw-cart-drop-row .pw-cart-drop-meta { margin-bottom: 0; }
.pw-cart-drop-price {
  font-size: 13px; color: var(--primary-dark); font-weight: 700;
}

/* Footer */
.pw-cart-footer { padding: 14px 18px; border-top: 1px solid var(--border); }
.pw-cart-total-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; margin-bottom: 12px; font-weight: 600;
}
.pw-cart-total-row strong { color: var(--primary-dark); font-size: 16px; font-weight: 700; }
.pw-cart-footer-btns { display: flex; gap: 8px; }
.pw-cart-view-btn {
  flex: 1; display: block; padding: 10px 14px;
  background: transparent; color: var(--text-dark); border: 1.5px solid var(--border);
  border-radius: var(--radius); text-align: center;
  text-decoration: none; font-size: 13px; font-weight: 600;
  transition: border-color .15s, color .15s;
}
.pw-cart-view-btn:hover { border-color: var(--primary); color: var(--primary); }
.pw-cart-checkout-btn {
  flex: 1; display: block; padding: 10px 14px;
  background: var(--text-dark); color: #fff;
  border: 1.5px solid var(--text-dark);
  border-radius: var(--radius); text-align: center;
  text-decoration: none; font-size: 13px; font-weight: 700;
  transition: background .15s;
}
.pw-cart-checkout-btn:hover { background: #000; border-color: #000; color: #fff; }

.pw-btn-block {
  display: block; width: 100%; padding: 9px 14px;
  background: var(--primary); color: var(--white);
  border-radius: var(--radius); text-align: center;
  text-decoration: none; font-size: 1.41rem; font-weight: 600;
  transition: background var(--transition);
}
.pw-btn-block:hover { background: var(--primary-dark); color: var(--white); }

/* Account Panel */
.pw-account-wrap { position: relative; display: flex; align-items: center; }
.pw-account-panel {
  position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 200px; background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0,0,0,.12), 0 0 0 1px rgba(0,0,0,.04);
  padding: 6px 0; opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s, visibility .2s, transform .2s;
  transform: translateY(6px); z-index: 200;
}
.pw-account-wrap.open .pw-account-panel {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
}
.pw-account-hello {
  padding: 12px 18px 10px; font-size: 12px; color: var(--text-muted);
  font-weight: 600; border-bottom: 1px solid var(--border);
  letter-spacing: .02em;
}
.pw-account-panel a {
  display: block; padding: 9px 18px; font-size: 13px;
  color: var(--text-dark); text-decoration: none;
  transition: background .15s, color .15s;
}
.pw-account-panel a:hover { background: var(--bg-light); color: var(--primary); }
.pw-account-divider { height: 1px; background: var(--border); margin: 4px 0; }
.pw-account-logout {
  display: block; width: 100%; text-align: left;
  background: none; border: none; padding: 9px 18px;
  font-size: 13px; color: #e53935; cursor: pointer;
  transition: background .15s;
  font-family: var(--font-main);
}
.pw-account-logout:hover { background: #fef2f2; }

/* Search bar */
.pw-search-bar {
  overflow: hidden; max-height: 0;
  transition: max-height .28s cubic-bezier(.4, 0, .2, 1), border-color .28s;
  border-bottom: 0 solid var(--border);
  background: var(--white);
}
.pw-search-bar.open { max-height: 60px; border-bottom: 1px solid var(--border); }
.pw-search-form {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
}
.pw-search-form .pw-search-icon { color: var(--text-muted); flex-shrink: 0; }
.pw-search-form input {
  flex: 1; border: none; outline: none; background: transparent;
  font-family: var(--font-main); font-size: 14px; color: var(--text-dark);
}
.pw-search-form input::placeholder { color: var(--text-muted); font-weight: 400; }
.pw-search-form #pwSearchClose {
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); padding: 4px;
  transition: color .2s; display: flex; align-items: center;
}
.pw-search-form #pwSearchClose:hover { color: var(--text-dark); }
.pw-search-form #pwSearchClose svg { display: block; }

/* ── 5. DRAWER (MOBILE MENU) ────────────────────────────────── */
.pw-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  opacity: 0; visibility: hidden; z-index: 300;
  transition: opacity .3s, visibility .3s;
  backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
}
.pw-overlay.show { opacity: 1; visibility: visible; }

.pw-drawer {
  position: fixed; left: 0; top: 0; width: 300px; height: 100%;
  background: #fff; overflow-y: auto; z-index: 310;
  transform: translateX(-100%);
  transition: transform .32s cubic-bezier(.22, .61, .36, 1);
  display: flex; flex-direction: column;
  box-shadow: 4px 0 30px rgba(0,0,0,.12);
}
.pw-drawer.open { transform: translateX(0); }

.pw-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
  height: 70px;
  min-height: 70px;
  max-height: 70px;
}
.pw-drawer-logo { display: flex; align-items: center; text-decoration: none; }
.pw-drawer-logo img { height: 60px; width: auto; object-fit: contain; max-width: 190px; }
.pw-drawer-close {
  background: none; border: none; color: var(--text-muted);
  cursor: pointer; line-height: 1; padding: 6px;
  transition: color .2s; display: flex; align-items: center;
  border-radius: 50%;
}
.pw-drawer-close:hover { color: var(--text-dark); background: var(--bg-light); }
.pw-drawer-close svg { display: block; }

/* Drawer search */
.pw-drawer-search {
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.pw-drawer-search form {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-light); border-radius: var(--radius);
  padding: 8px 12px;
}
.pw-drawer-search svg { color: var(--text-muted); flex-shrink: 0; }
.pw-drawer-search input {
  flex: 1; border: none; outline: none; background: transparent;
  font-family: var(--font-main); font-size: 13px; color: var(--text-dark);
}
.pw-drawer-search input::placeholder { color: var(--text-muted); }

/* Nav links */
.pw-drawer-nav { flex: 1; padding: 8px 0; overflow-y: auto; }
.pw-drawer-nav > a {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 22px; color: var(--text-dark);
  font-size: 14px; font-weight: 500; text-decoration: none;
  transition: color .15s, background .15s;
  border-left: 3px solid transparent;
}
.pw-drawer-nav > a:hover,
.pw-drawer-nav > a.active {
  color: var(--primary); background: rgba(201,102,102,.04);
  border-left-color: var(--primary);
}

/* Drawer accordion */
.pw-drawer-group .pw-drawer-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 12px 22px; background: none; border: none;
  color: var(--text-dark); font-family: var(--font-main);
  font-size: 14px; font-weight: 500; cursor: pointer;
  transition: color .15s;
  border-left: 3px solid transparent;
}
.pw-drawer-group .pw-drawer-toggle:hover { color: var(--primary); }
.pw-drawer-chevron { transition: transform .25s ease; }
.pw-drawer-toggle.is-open .pw-drawer-chevron { transform: rotate(180deg); }

.pw-drawer-sub {
  overflow: hidden; max-height: 0;
  transition: max-height .3s cubic-bezier(.4, 0, .2, 1);
  background: var(--bg-light);
}
.pw-drawer-sub a {
  display: block; text-decoration: none;
  transition: color .15s, padding-left .15s;
}
.pw-drawer-cat {
  padding: 8px 22px 8px 32px; font-size: 13px;
  font-weight: 600; color: var(--text-dark);
}
.pw-drawer-subcat {
  padding: 6px 22px 6px 44px; font-size: 12.5px;
  color: var(--text-mid);
}
.pw-drawer-sub a:hover { color: var(--primary); }

/* Drawer footer — user account links (secondary, compact) */
.pw-drawer-footer {
  border-top: 1px solid var(--border);
  padding: 10px 20px 12px;
  flex-shrink: 0;
  background: var(--bg-light);
}
.pw-drawer-user {
  display: flex; align-items: center; gap: 7px;
  padding: 0 0 7px;
  font-size: 11.5px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .06em; color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}
.pw-drawer-user svg { color: var(--text-muted); opacity: .6; width: 14px; height: 14px; }
.pw-drawer-footer a {
  display: inline-block; padding: 4px 10px 4px 0;
  font-size: 12px; color: var(--text-muted);
  text-decoration: none; transition: color .15s;
}
.pw-drawer-footer a:hover { color: var(--primary); }
.pw-drawer-login-btn {
  display: block; text-align: center; padding: 8px 16px;
  background: var(--primary); color: #fff !important;
  border-radius: var(--radius); font-size: 12px; font-weight: 600;
  text-decoration: none; transition: background .15s;
  margin-top: 6px;
}
.pw-drawer-login-btn:hover { background: var(--primary-dark); color: #fff !important; }
.pw-drawer-logout {
  display: inline-block; width: auto; text-align: left;
  background: none; border: none; padding: 4px 0;
  color: #e53935; font-size: 12px; cursor: pointer;
  font-family: var(--font-main); margin-top: 3px;
  transition: opacity .15s;
}
.pw-drawer-logout:hover { opacity: .7; }

/* ── 6. FLASH MESSAGES ──────────────────────────────────────── */
.pw-flash {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 20px; font-size: 1.41rem; font-weight: 500;
  position: relative;
}
.pw-flash button {
  background: none; border: none; font-size: 1.76rem; cursor: pointer;
  padding: 0 4px; line-height: 1; opacity: .7;
}
.pw-flash button:hover { opacity: 1; }
.pw-flash-success { background: #d1fae5; color: #065f46; border-left: 4px solid #10b981; }
.pw-flash-danger  { background: #fee2e2; color: #991b1b; border-left: 4px solid #ef4444; }

/* ── 7. TRUST STRIP ─────────────────────────────────────────── */
.pw-trust {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.pw-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.pw-trust-item {
  display: flex; align-items: center; gap: 12px;
  justify-content: center;
}
.pw-trust-item svg {
  width: 28px; height: 28px; flex-shrink: 0;
  color: var(--primary);
  stroke: var(--primary);
  fill: none;
}
.pw-trust-item span {
  font-size: 1.34rem; font-weight: 600;
  color: var(--text-dark);
}

/* ── 8. FOOTER ──────────────────────────────────────────────── */
.pw-footer {
  background: #111 !important;
  color: rgba(255,255,255,.75);
  padding-top: 54px;
}

.pw-footer-grid {
  display: grid;
  grid-template-columns: 240px 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

/* Footer brand col */
.pw-footer-logo { display: inline-block; margin-bottom: 20px; }
.pw-footer-logo-img {
  height: 80px; width: auto; object-fit: contain;
  background: rgba(255,255,255,.92);
  padding: 10px 18px;
  border-radius: 10px;
  display: block;
}
.pw-footer-logo-text { font-size: 2.08rem; font-weight: 700; color: #fff; letter-spacing:.02em; }
.pw-footer-desc { color: rgba(255,255,255,.5); font-size: 1.33rem; line-height: 1.65; margin-bottom: 18px; }
/* Rich-text footer description: keep all child elements light on the dark footer */
.pw-footer-desc p,
.pw-footer-desc span,
.pw-footer-desc li,
.pw-footer-desc strong,
.pw-footer-desc b,
.pw-footer-desc a { color: rgba(255,255,255,.6) !important; }
.pw-footer-desc a:hover { color: var(--primary) !important; }
.pw-footer-desc p { margin-bottom: 8px; }
.pw-footer-desc p:last-child { margin-bottom: 0; }

/* Footer headings */
.pw-footer-heading {
  color: #fff; font-size: 1.31rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  margin: 0 0 18px; position: relative; padding-bottom: 10px;
}
.pw-footer-heading::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 30px; height: 2px; background: var(--primary); border-radius: 2px;
}

/* Footer links */
.pw-footer-links { list-style: none; padding: 0; margin: 0; }
.pw-footer-links li { margin-bottom: 8px; }
.pw-footer-links a {
  color: rgba(255,255,255,.55); font-size: 1.36rem; text-decoration: none;
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}
.pw-footer-links a:hover { color: var(--primary); padding-left: 4px; }

/* Footer contact list */
.pw-footer-contact-list { list-style: none; padding: 0; margin: 0; }
.pw-footer-contact-list li {
  display: flex; gap: 10px; margin-bottom: 12px;
  color: rgba(255,255,255,.55); font-size: 1.34rem; line-height: 1.5;
}
.pw-footer-contact-list svg {
  width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px;
  stroke: var(--primary);
}
.pw-footer-contact-list a {
  color: rgba(255,255,255,.55); text-decoration: none;
  transition: color var(--transition);
}
.pw-footer-contact-list a:hover { color: var(--primary); }

/* Footer socials */
.pw-footer-socials { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.pw-footer-socials a {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: 1.44rem; text-decoration: none;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.pw-footer-socials a:hover {
  background: var(--primary); border-color: var(--primary); color: #fff;
}

/* WhatsApp button */
.pw-footer-wa-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25d366; color: #fff; padding: 9px 18px;
  border-radius: 22px; font-size: 1.33rem; font-weight: 600;
  text-decoration: none; margin-top: 14px;
  transition: background var(--transition), transform var(--transition);
}
.pw-footer-wa-btn:hover { background: #1ebe5b; color: #fff; transform: translateY(-1px); }

/* Footer bottom */
.pw-footer-bottom { background: #0a0a0a; margin-top: 0; }
.pw-footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px; padding: 18px 0;
  color: rgba(255,255,255,.4); font-size: 1.28rem;
}

/* ── 9. WHATSAPP FLOAT ──────────────────────────────────────── */
.pw-wa-float {
  position: fixed; bottom: 80px; right: 22px;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.4);
  z-index: 250; text-decoration: none;
  animation: pwWaPulse 2.4s infinite;
}
.pw-wa-float svg { width: 26px; height: 26px; fill: #fff; }
@keyframes pwWaPulse {
  0%,100% { box-shadow: 0 4px 18px rgba(37,211,102,.4); }
  50%      { box-shadow: 0 4px 30px rgba(37,211,102,.65); }
}
.pw-wa-tip {
  position: absolute; right: calc(100% + 10px); top: 50%;
  transform: translateY(-50%); background: #222; color: #fff;
  white-space: nowrap; font-size: 1.22rem; font-weight: 500;
  padding: 5px 10px; border-radius: 6px; pointer-events: none;
  opacity: 0; transition: opacity .2s;
}
.pw-wa-float:hover .pw-wa-tip { opacity: 1; }

/* ── 10. SCROLL TOP ─────────────────────────────────────────── */
.pw-scroll-top {
  position: fixed; bottom: 22px; right: 22px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--text-dark); color: var(--white);
  border: none; cursor: pointer; z-index: 249;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); opacity: 0; visibility: hidden;
  transition: opacity .25s, visibility .25s, background var(--transition), transform var(--transition);
}
.pw-scroll-top.show { opacity: 1; visibility: visible; }
.pw-scroll-top:hover { background: var(--primary); transform: translateY(-2px); }
.pw-scroll-top svg { width: 16px; height: 16px; }

/* ── 11. PRODUCT CARDS ──────────────────────────────────────── */
.pw-product-card {
  background: var(--white); border-radius: 1.2rem;
  border: none; overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  transition: box-shadow .3s ease, transform .3s ease;
}
.pw-product-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,.12); transform: translateY(-4px);
}
.pw-product-media { position: relative; overflow: hidden; background: #f8f5f0; }
.pw-product-media img { width:100%; height:auto; display:block; transition: transform .5s cubic-bezier(.25,.46,.45,.94); }
.pw-product-card:hover .pw-product-media img { transform: scale(1.06); }

.pw-product-body { padding: 1.4rem 1.6rem 1.6rem; }
.pw-product-title {
  font-size: 1.38rem; font-weight: 600; color: var(--text-dark);
  margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden; text-decoration: none;
  line-height: 1.45;
}
.pw-product-title:hover { color: var(--primary); }

.pw-product-price { font-size: 1.52rem; font-weight: 700; color: var(--primary); }
.pw-product-original-price { font-size: 1.1rem; font-weight: 400; color: #999; text-decoration: line-through; margin-right: 6px; }
.pw-product-old   { font-size: 1.28rem; color: var(--text-muted); text-decoration: line-through; margin-left: 6px; }
.pw-product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--primary); color: var(--white);
  font-size: 1.08rem; font-weight: 700; padding: 4px 10px;
  border-radius: 6px; text-transform: uppercase; letter-spacing: .05em;
}
.pw-product-badge--discount {
  background: #e53935;
}
.pw-product-actions {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.5));
  padding: 48px 14px 14px;
  display: flex; gap: 8px; justify-content: center;
  opacity: 0; transition: opacity .3s ease;
}
.pw-product-card:hover .pw-product-actions { opacity: 1; }
.pw-btn-cart {
  flex: 1; padding: 8px 12px; border: none; border-radius: var(--radius);
  background: var(--primary); color: var(--white);
  font-family: var(--font-main); font-size: 1.31rem; font-weight: 600;
  cursor: pointer; transition: background var(--transition);
  text-align: center; text-decoration: none;
}
.pw-btn-cart:hover { background: var(--primary-dark); color: var(--white); }

/* ── Wishlist Heart Button ─────────────────────────────────── */
.pw-wishlist-heart {
  position: absolute; top: 10px; right: 10px; z-index: 3;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.9); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .25s ease; box-shadow: 0 1px 4px rgba(0,0,0,.12);
}
.pw-wishlist-heart svg { stroke: #888; fill: none; transition: all .25s ease; }
.pw-wishlist-heart:hover { background: #fff; transform: scale(1.1); }
.pw-wishlist-heart:hover svg { stroke: var(--primary); }
.pw-wishlist-heart.pw-wishlist-active svg { stroke: var(--primary); fill: var(--primary); }

/* PDP Wishlist button (outlined pill) */
.pw-pdp-wishlist-btn {
  position: static; display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 50px;
  width: auto !important; height: auto !important;
  white-space: nowrap;
  border: 1.5px solid #ddd; background: transparent; box-shadow: none;
  font-family: var(--font-main); font-size: 1.35rem; font-weight: 500;
  color: #555; cursor: pointer; transition: all .25s ease; margin-top: 10px;
}
.pw-pdp-wishlist-btn:hover { border-color: var(--primary); color: var(--primary); background: #fdf5ec; }
.pw-pdp-wishlist-btn:hover svg { stroke: var(--primary); }
.pw-pdp-wishlist-btn svg { width: 17px; height: 17px; stroke: currentColor; fill: none; transition: all .25s ease; }
.pw-pdp-wishlist-btn.pw-wishlist-active { border-color: var(--primary); color: var(--primary); background: #fdf5ec; }
.pw-pdp-wishlist-btn.pw-wishlist-active svg { stroke: var(--primary); fill: var(--primary); }

/* ── 12. BUTTONS ────────────────────────────────────────────── */
.pw-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px; padding: 10px 24px; border-radius: var(--radius);
  font-family: var(--font-main); font-size: 1.41rem; font-weight: 600;
  cursor: pointer; border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  text-decoration: none;
}
.pw-btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.pw-btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--white); }
.pw-btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.pw-btn-outline:hover { background: var(--primary); color: var(--white); }
.pw-btn-lg { padding: 13px 32px; font-size: 1.54rem; }
.pw-btn-sm { padding: 7px 16px; font-size: 1.28rem; }

/* ── 13. SECTION HEADINGS ───────────────────────────────────── */
.pw-section-head { text-align: center; margin-bottom: 48px; }
.pw-section-head h2 {
  font-size: 2.8rem; font-weight: 700; color: var(--text-dark);
  margin-bottom: 14px; letter-spacing: -.01em;
}
.pw-section-head p { color: var(--text-muted); font-size: 1.47rem; max-width: 560px; margin: 0 auto 0; line-height: 1.6; }

/* ── 14. PAGE TITLE ─────────────────────────────────────────── */
.pw-page-title {
  padding: 36px 0 28px; text-align: center;
  background: var(--bg-light); border-bottom: 1px solid var(--border);
}
.pw-page-title h1 { font-size: 2.72rem; font-weight: 700; margin: 0; }
.pw-breadcrumb { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 8px; }
.pw-breadcrumb a { font-size: 1.31rem; color: var(--text-muted); text-decoration: none; }
.pw-breadcrumb a:hover { color: var(--primary); }
.pw-breadcrumb span { font-size: 1.31rem; color: var(--text-muted); }

/* ── 15. RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1199px) {
  .pw-footer-grid { grid-template-columns: 200px 1fr 1fr; }
  .pw-footer-brand { grid-column: 1 / -1; display: flex; gap: 24px; flex-wrap: wrap; align-items: flex-start; }
  .pw-footer-brand .pw-footer-desc { margin-bottom: 0; }
}
@media (max-width: 991px) {
  .pw-header-inner { height: 70px; gap: 10px; }
  .pw-mega-menu { display: none !important; }
  .pw-trust-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .pw-footer-grid { grid-template-columns: 1fr 1fr; }
  .pw-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 767px) {
  .pw-footer-grid { grid-template-columns: 1fr 1fr; }
  .pw-footer-bottom-inner { flex-direction: column; text-align: center; }
  .pw-section-head h2 { font-size: 2.24rem; }
}
@media (max-width: 575px) {
  .pw-promo { font-size: 10.5px; height: 30px; }
  .pw-promo-track { padding: 0 28px; }
  .pw-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .pw-trust-item { flex-direction: column; text-align: center; gap: 6px; }
  .pw-trust-item span { white-space: normal; }
  .pw-footer-grid { grid-template-columns: 1fr 1fr; }
  .pw-footer-col.pw-footer-brand, .pw-footer-col:last-child { grid-column: 1 / -1; }
  .pw-wa-float { bottom: 74px; right: 16px; width: 48px; height: 48px; }
  .pw-scroll-top { bottom: 16px; right: 16px; }
}


/* ── 16. GST / TAX DISPLAY ──────────────────────────────────── */
.pw-gst-info {
  display: flex; flex-direction: row; align-items: center; gap: 8px;
  margin-top: 0; margin-bottom: 1rem;
}
.pw-gst-badge {
  background: #e8f5e9; color: #2e7d32;
  font-size: 1.2rem; font-weight: 700;
  padding: 2px 8px; border-radius: 20px;
  border: 1px solid #a5d6a7; letter-spacing: .03em;
}
.pw-gst-amount {
  font-size: 1.2rem; color: var(--text-muted);
}

/* ── 17a. ABOUT PAGE ────────────────────────────────────────── */

/* About intro section */
.pw-about-section {
  padding: 6rem 0;
  background: var(--white);
}
.pw-about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.pw-about-img {
  width: 100%; height: auto;
  display: block;
  transition: transform .5s ease;
}
.pw-about-img-wrap:hover .pw-about-img { transform: scale(1.03); }

.pw-about-text {
  padding-left: 4rem;
}
.pw-about-label {
  display: inline-block;
  font-size: 1.22rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--primary); margin-bottom: 1.2rem;
  position: relative; padding-bottom: .6rem;
}
.pw-about-label::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--primary);
  border-radius: 2px;
}
.pw-about-heading {
  font-size: 2.8rem; font-weight: 700; color: var(--text-dark);
  line-height: 1.25; margin-bottom: 2rem; letter-spacing: -.015em;
}
.pw-about-desc {
  font-size: 1.52rem; color: var(--text-mid);
  line-height: 1.8; margin: 0;
}

/* Philosophy section */
.pw-philosophy-section {
  padding: 6rem 0;
  background: var(--bg-light);
  border-top: 1px solid var(--border);
}

.pw-philosophy-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-areas:
    "a a b b c c"
    ". d d e e .";
  gap: 2.4rem;
  margin-bottom: 5rem;
}
.pw-phil-card:nth-child(1) { grid-area: a; }
.pw-phil-card:nth-child(2) { grid-area: b; }
.pw-phil-card:nth-child(3) { grid-area: c; }
.pw-phil-card:nth-child(4) { grid-area: d; }
.pw-phil-card:nth-child(5) { grid-area: e; }

.pw-phil-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 3.2rem 2.4rem;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.pw-phil-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.pw-phil-icon {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 2rem;
  overflow: hidden;
  border: 2px solid rgba(204,153,102,.2);
}
.pw-phil-icon img {
  width: 52px; height: 52px;
  object-fit: contain;
}
.pw-phil-title {
  font-size: 1.72rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 1.2rem;
  line-height: 1.3;
}
.pw-phil-text {
  font-size: 1.41rem; color: var(--text-mid);
  line-height: 1.75; margin: 0;
}

.pw-about-cta {
  text-align: center;
  margin-top: 1rem;
}

/* About responsive */
@media (max-width: 991px) {
  .pw-about-text { padding-left: 0; margin-top: 3rem; }
  .pw-philosophy-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: none;
  }
  .pw-phil-card:nth-child(1),
  .pw-phil-card:nth-child(2),
  .pw-phil-card:nth-child(3),
  .pw-phil-card:nth-child(4),
  .pw-phil-card:nth-child(5) { grid-area: auto; }
}
@media (max-width: 575px) {
  .pw-about-section { padding: 4rem 0; }
  .pw-philosophy-section { padding: 4rem 0; }
  .pw-philosophy-grid { grid-template-columns: 1fr; }
  .pw-about-heading { font-size: 2.2rem; }
}

/* ── 17b-new. ABOUT PAGE REDESIGN ───────────────────────────── */

/* Hero / Intro */
.pw-about-hero { padding: 6rem 0; background: var(--white); }
.pw-about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 5rem;
  align-items: center;
}
.pw-about-hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.pw-about-hero-img img { width: 100%; height: 460px; object-fit: cover; display: block; }
.pw-about-eyebrow {
  font-size: 1.22rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--primary); margin-bottom: 1.2rem;
}
.pw-about-hero-heading {
  font-size: 2.6rem; font-weight: 800; color: var(--text-dark);
  line-height: 1.2; margin-bottom: 2rem; letter-spacing: -.01em;
}
.pw-about-hero-body {
  font-size: 1.52rem; color: var(--text-mid);
  line-height: 1.82; margin-bottom: 2.8rem;
}
.pw-about-hero-body--extra {
  margin-top: -1.2rem;
  border-top: 1px solid var(--border);
  padding-top: 1.6rem;
}
.pw-about-cta-btn {
  display: inline-block;
  background: var(--primary); color: var(--white);
  padding: 1.1rem 3rem; border-radius: 50px;
  font-size: 1.4rem; font-weight: 700; text-decoration: none;
  letter-spacing: .04em; transition: background .2s, transform .2s;
}
.pw-about-cta-btn:hover { background: var(--primary-dark, #b8762a); transform: translateY(-2px); color: #fff; }

/* Mission + Vision — Split rows */
.pw-about-split-section { padding: 7rem 0; }
.pw-about-split-section--mission { background: var(--bg-light); border-top: 1px solid var(--border); }
.pw-about-split-section--vision  { background: var(--white);    border-top: 1px solid var(--border); }
.pw-about-split-inner {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 5.5rem;
  align-items: center;
}
.pw-about-split-inner--reverse .pw-about-split-img     { order: 2; }
.pw-about-split-inner--reverse .pw-about-split-content { order: 1; }
.pw-about-split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.pw-about-split-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .45s ease;
}
.pw-about-split-img:hover img { transform: scale(1.04); }
.pw-about-split-img-placeholder {
  width: 100%; aspect-ratio: 4/3;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
}
.pw-about-split-img-placeholder svg { width: 80px; height: 80px; }
.pw-about-split-img-placeholder--dark { background: #eef0f8; }
.pw-about-split-eyebrow {
  display: inline-block;
  font-size: 1.18rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--primary);
  background: var(--primary-light);
  padding: .35rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.4rem;
}
.pw-about-split-eyebrow--dark { color: #1a1a2e; background: #eef0f8; }
.pw-about-split-title {
  font-size: 2.5rem; font-weight: 800; color: var(--text-dark);
  line-height: 1.2; margin-bottom: 1.4rem; letter-spacing: -.01em;
}
.pw-about-split-subtitle {
  font-size: 1.46rem; font-weight: 600;
  color: var(--primary); font-style: italic; margin-bottom: 1.6rem;
}
.pw-about-split-subtitle--dark { color: #1a1a2e; }
.pw-about-split-body {
  font-size: 1.48rem; color: var(--text-mid);
  line-height: 1.84; margin: 0;
}
.pw-about-split-accent {
  width: 56px; height: 4px;
  border-radius: 2px; background: var(--primary);
  margin-top: 2.4rem;
}
.pw-about-split-accent--dark { background: #1a1a2e; }

/* Why Choose Us — 2 in a Row Card Grid */
.pw-about-why-section {
  padding: 6.5rem 0;
  background: var(--bg-light);
  border-top: 1px solid var(--border);
}
.pw-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3.8rem;
}
.pw-why-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3.6rem 3.2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.pw-why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--primary);
  transition: height var(--transition);
}
.pw-why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(204,153,102,0.4);
}
.pw-why-card:hover::before {
  height: 100%;
}
.pw-why-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  border: 1.5px solid rgba(204,153,102,0.25);
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition), color var(--transition);
}
.pw-why-card:hover .pw-why-card-icon {
  transform: scale(1.08);
  background: var(--primary);
  color: #fff;
}
.pw-why-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
}
.pw-why-card-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.pw-why-card-body {
  flex: 1;
}
.pw-why-card-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}
.pw-why-card-desc {
  font-size: 1.45rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 991px) {
  .pw-why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.2rem;
  }
  .pw-why-card {
    padding: 2.8rem 2.4rem;
  }
}
@media (max-width: 767px) {
  .pw-why-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .pw-why-card-title {
    font-size: 1.8rem;
  }
}

/* Testimonials / Reviews */
.pw-about-testimonials-section { padding: 5rem 0; background: var(--bg-light); border-top: 1px solid var(--border); }
.pw-about-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.8rem;
  margin-top: 3.2rem;
}
.pw-about-review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem 2.8rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 1.4rem;
}
.pw-about-review-stars { font-size: 1.8rem; color: #f4b400; letter-spacing: .06em; }
.pw-about-review-text { font-size: 1.46rem; color: var(--text-mid); line-height: 1.8; margin: 0; flex: 1; font-style: italic; }
.pw-about-review-author strong { display: block; font-size: 1.42rem; color: var(--text-dark); font-weight: 700; }
.pw-about-review-author span { font-size: 1.3rem; color: var(--text-muted); }

/* About page responsive */
@media (max-width: 991px) {
  .pw-about-hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .pw-about-hero-img img { height: 320px; }
  .pw-about-split-inner,
  .pw-about-split-inner--reverse { grid-template-columns: 1fr; gap: 2.5rem; }
  .pw-about-split-inner--reverse .pw-about-split-img     { order: 0; }
  .pw-about-split-inner--reverse .pw-about-split-content { order: 0; }
  .pw-about-why-row { grid-template-columns: 1fr; }
  .pw-about-why-row-content { padding: 0 2.5rem 2.5rem; }
  .pw-about-reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 575px) {
  .pw-about-hero { padding: 4rem 0; }
  .pw-about-hero-heading { font-size: 2rem; }
  .pw-about-split-section { padding: 4rem 0; }
  .pw-about-split-title { font-size: 2rem; }
  .pw-about-why-rows { gap: 3rem; }
  .pw-about-why-row-content { padding: 0 1.8rem 2rem; }
  .pw-about-reviews-grid { grid-template-columns: 1fr; }
}

/* ── 17b. CONTACT PAGE ───────────────────────────────────────── */

.pw-contact-map { line-height: 0; }
.pw-contact-map iframe {
  width: 100% !important;
  height: 420px !important;
  border: 0 !important;
  display: block;
}

.pw-contact-section {
  padding: 6rem 0;
  background: var(--white);
}

/* Info cards row */
.pw-contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  margin-bottom: 5rem;
}

.pw-contact-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.4rem;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.pw-contact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.pw-contact-card-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.6rem;
  border: 2px solid rgba(204,153,102,.2);
}
.pw-contact-card-icon svg {
  width: 26px; height: 26px;
  color: var(--primary);
  stroke: var(--primary);
}

.pw-contact-card-title {
  font-size: 1.72rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 1.2rem;
}

.pw-contact-card-body {
  font-size: 1.41rem; color: var(--text-mid); line-height: 1.7;
}
.pw-contact-card-body strong {
  display: block; color: var(--text-dark); margin-bottom: .4rem;
  font-size: 1.44rem;
}
.pw-contact-card-body p { margin: 0; }

.pw-contact-link {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  font-size: 1.41rem; color: var(--text-mid);
  text-decoration: none; margin-bottom: .6rem;
  transition: color var(--transition);
}
.pw-contact-link:last-child { margin-bottom: 0; }
.pw-contact-link svg { width: 15px; height: 15px; stroke: var(--primary); flex-shrink: 0; }
.pw-contact-link:hover { color: var(--primary); }

.pw-contact-socials {
  display: flex; justify-content: center; gap: 10px; flex-wrap: wrap;
  margin-top: .4rem;
}
.pw-contact-social-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-mid); font-size: 1.52rem; text-decoration: none;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.pw-contact-social-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* Form */
.pw-contact-form-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.pw-contact-form { margin-top: 3rem; }

.pw-form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pw-form-group {
  display: flex; flex-direction: column; gap: .6rem;
  margin-bottom: 2rem;
}
.pw-form-group label {
  font-size: 1.35rem; font-weight: 600; color: var(--text-dark);
}
.pw-form-input {
  width: 100%; padding: 1.1rem 1.4rem;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-main); font-size: 1.41rem; color: var(--text-dark);
  background: var(--bg-light);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.pw-form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(204,153,102,.15);
  background: var(--white);
}
.pw-form-input::placeholder { color: var(--text-muted); }
textarea.pw-form-input { resize: vertical; min-height: 120px; }

.pw-contact-error-msg {
  display: block; margin-bottom: 1.4rem;
  font-size: 1.35rem; color: #e53935; font-weight: 500;
}

/* Contact consent checkbox */
.pw-contact-consent-wrap {
  margin: 1.6rem 0 2.2rem;
}
.pw-consent-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  font-size: 1.38rem;
  color: var(--text-dark, #222);
  line-height: 1.55;
  margin: 0;
}
.pw-consent-checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.pw-consent-custom-check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1.8px solid var(--primary);
  border-radius: 4px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.18s ease;
  margin-top: 2px;
  box-sizing: border-box;
}
.pw-consent-custom-check svg {
  width: 12px;
  height: 12px;
  stroke: #fff;
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.18s ease;
}
.pw-consent-checkbox-label input[type="checkbox"]:checked + .pw-consent-custom-check {
  background: var(--primary);
  border-color: var(--primary);
}
.pw-consent-checkbox-label input[type="checkbox"]:checked + .pw-consent-custom-check svg {
  opacity: 1;
  transform: scale(1);
}
.pw-consent-checkbox-label:hover .pw-consent-custom-check {
  border-color: var(--primary-dark, var(--primary));
}
.pw-consent-text {
  flex: 1;
  color: #333;
  font-size: 1.38rem;
  line-height: 1.55;
}
.pw-consent-text a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s ease, text-decoration 0.15s ease;
}
.pw-consent-text a:hover {
  text-decoration: underline;
  color: var(--primary-dark, var(--primary));
}
.pw-consent-error-msg {
  display: block;
  font-size: 1.25rem;
  color: #e53935;
  margin-top: 6px;
}

.pw-contact-form-footer {
  display: flex; align-items: center; justify-content: flex-start;
  gap: 1rem; margin-top: .4rem;
  padding-bottom: 20px;
}

/* Contact responsive */
@media (max-width: 991px) {
  .pw-contact-info-grid { grid-template-columns: repeat(2, 1fr); }
  .pw-contact-info-grid .pw-contact-card:last-child { grid-column: 1 / -1; }
  .pw-form-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .pw-contact-section { padding: 4rem 0; }
  .pw-contact-info-grid { grid-template-columns: 1fr; }
  .pw-contact-info-grid .pw-contact-card:last-child { grid-column: auto; }
  .pw-form-row { grid-template-columns: 1fr; }
}

/* ── 17. VARIANT SWATCHES ───────────────────────────────────── */
.pw-variant-section { margin-top: 8px; }
.pw-size-btns { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }

.pw-swatch-btn {
  min-width: 48px; height: 36px; padding: 0 14px;
  border: 2px solid var(--border); border-radius: var(--radius);
  background: var(--white); color: var(--text-dark);
  font-family: var(--font-main); font-size: 1.31rem; font-weight: 600;
  cursor: pointer; transition: border-color .2s, background .2s, color .2s;
}
.pw-swatch-btn:hover { border-color: var(--primary); color: var(--primary); }
.pw-swatch-btn.active {
  border-color: var(--primary); background: var(--primary); color: var(--white);
}

.pw-swatch-color {
  display: inline-block; width: 30px; height: 30px;
  border-radius: 50%; border: 2px solid transparent;
  cursor: pointer; transition: transform .2s, box-shadow .2s;
  margin-right: 4px;
}
.pw-swatch-color:hover { transform: scale(1.15); box-shadow: 0 0 0 3px rgba(204,153,102,.4); }
.pw-swatch-color.active { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(204,153,102,.35); }

/* ── 18. BULK PRICING TABLE ─────────────────────────────────── */
.pw-tiers-content { padding: 8px 0; }
.pw-tiers-table { font-size: 1.41rem; }
.pw-tiers-table thead th {
  background: var(--bg-light); color: var(--text-dark);
  font-weight: 700; border-bottom: 2px solid var(--border);
}
.pw-tiers-table tbody tr:hover { background: #fdf9f5; }
.pw-tiers-table td { vertical-align: middle; }

/* ══════════════════════════════════════════════════════════════
   19. HERO SLIDER
══════════════════════════════════════════════════════════════ */
/* — keyframes — */

@keyframes pw-caption-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pw-progress-run {
  from { width: 0%; }
  to   { width: 100%; }
}

/* — wrapper — */
.pw-hero { position: relative; overflow: hidden; }
.pw-hero-slider { margin: 0; }

/* — individual slide — */
.pw-hero-slide {
  display: block; height: 480px;
  background-size: cover; background-position: center;
  position: relative; text-decoration: none; overflow: hidden;
}
.pw-hero-slide--placeholder { background: var(--bg-light); }



/* — gradient overlay — disabled for clean slider images — */
.pw-hero-overlay {
  display: none;
}

/* — caption container — */
.pw-hero-caption {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 6%;
  max-width: 600px;
}
.pw-hero-caption--center {
  align-items: center; text-align: center;
  max-width: 100%;
  padding: 0 10%;
}
.pw-hero-caption--right {
  left: auto; right: 0;
  align-items: flex-end; text-align: right;
  padding: 0 6%;
}

/* — caption text — animated in when slide is active — */
.owl-item.active .pw-hero-caption__heading,
.owl-item.active .pw-hero-caption__text,
.owl-item.active .pw-hero-caption__btn {
  animation: pw-caption-up .65s cubic-bezier(.22,1,.36,1) both;
}
.owl-item.active .pw-hero-caption__text  { animation-delay: .15s; }
.owl-item.active .pw-hero-caption__btn   { animation-delay: .28s; }

.pw-hero-caption__heading {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
  margin-bottom: .6rem;
  opacity: 0; /* pre-animation state */
}
.pw-hero-caption__text {
  font-size: clamp(.9rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,.88);
  line-height: 1.55;
  max-width: 480px;
  margin-bottom: 1.4rem;
  text-shadow: 0 1px 6px rgba(0,0,0,.3);
  opacity: 0;
}
.pw-hero-caption--center .pw-hero-caption__text { margin-left: auto; margin-right: auto; }

.pw-hero-caption__btn {
  display: inline-block;
  padding: .65rem 1.8rem;
  background: var(--primary);
  color: #fff;
  border-radius: 3px;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .2s, transform .2s;
  opacity: 0;
}
.pw-hero-caption__btn:hover { background: var(--primary-dark, #b8001a); transform: translateY(-2px); }

/* — owl nav arrows — */
.pw-hero .owl-nav button.owl-prev,
.pw-hero .owl-nav button.owl-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; background: rgba(255,255,255,.15) !important;
  border: 2px solid rgba(255,255,255,.4) !important;
  border-radius: 50% !important;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
  backdrop-filter: blur(4px);
}
.pw-hero .owl-nav button.owl-prev { left: 18px; }
.pw-hero .owl-nav button.owl-next { right: 18px; }
.pw-hero .owl-nav button:hover {
  background: rgba(255,255,255,.32) !important;
  border-color: rgba(255,255,255,.8) !important;
}
.pw-hero-prev, .pw-hero-next {
  font-size: 1.6rem; line-height: 1;
  color: #fff;
}

/* — owl dots — */
.pw-hero .owl-dots { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 5; }
.pw-hero .owl-dot span {
  width: 8px !important; height: 8px !important;
  background: rgba(255,255,255,.45) !important;
  transition: width .3s, background .3s !important;
}
.pw-hero .owl-dot.active span {
  width: 28px !important;
  border-radius: 4px !important;
  background: var(--primary) !important;
}

/* — progress bar — */
.pw-hero-progress {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px; background: rgba(255,255,255,.18); z-index: 10;
}
.pw-hero-progress__bar {
  height: 100%;
  background: var(--primary);
  width: 0%;
}
.pw-hero-progress__bar.running {
  animation: pw-progress-run 5.5s linear;
}

/* — responsive — */
@media (max-width: 991px) { .pw-hero-slide { height: 380px; } }
@media (max-width: 767px) {
  .pw-hero-slide { height: 280px; }
  .pw-hero-caption { max-width: 80%; }
  .pw-hero .owl-nav button.owl-prev { left: 8px; }
  .pw-hero .owl-nav button.owl-next { right: 8px; }
}
@media (max-width: 480px) {
  .pw-hero-slide { height: 230px; }
  .pw-hero-caption { padding: 0 4%; }
  .pw-hero .owl-nav { display: none; }
}

/* ── 20. FEATURES STRIP ─────────────────────────────────────── */
.pw-features-strip {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.pw-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pw-feature-item {
  display: flex; align-items: center; gap: 12px;
}
.pw-feature-item svg {
  width: 36px; height: 36px; min-width: 36px;
  stroke: var(--primary); stroke-width: 1.5;
  fill: none;
}
.pw-feature-item strong {
  display: block; font-size: 1.38rem; font-weight: 700; color: var(--text-dark);
}
.pw-feature-item span {
  display: block; font-size: 1.22rem; color: var(--text-muted);
}
@media (max-width: 767px) {
  .pw-features-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 399px) {
  .pw-features-grid { grid-template-columns: 1fr; }
}

/* ── 21. HOME SECTIONS COMMON ───────────────────────────────── */
.pw-home-section { padding: 72px 0; }
.pw-home-section.pw-cat-section { padding: 64px 0; }

/* ── 22. CATEGORY GRID & CAROUSEL ──────────────────────────── */
.pw-cat-section { background: var(--bg-light); position: relative; }
.pw-cat-grid {
  display: grid;
  grid-template-columns: repeat(var(--pw-cat-cols, 4), 1fr);
  gap: 20px;
}
.pw-cat-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.pw-cat-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.pw-cat-grid--cols-4 { grid-template-columns: repeat(4, 1fr); }
.pw-cat-grid--cols-5 { grid-template-columns: repeat(5, 1fr); }
.pw-cat-grid--cols-6 { grid-template-columns: repeat(6, 1fr); }
.pw-cat-grid--cols-8 { grid-template-columns: repeat(8, 1fr); }

.pw-cat-card {
  display: block; text-decoration: none;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.pw-cat-card:hover {
  box-shadow: var(--shadow-lg); transform: translateY(-4px);
  border-color: rgba(204,153,102,0.4);
}
.pw-cat-img-wrap {
  width: 100%; aspect-ratio: 4/3; overflow: hidden;
  background: var(--bg-light);
}
.pw-cat-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.pw-cat-card:hover .pw-cat-img-wrap img { transform: scale(1.05); }
.pw-cat-name {
  display: block; text-align: center;
  padding: 13px 8px;
  font-size: 1.36rem; font-weight: 600; color: var(--text-dark);
  transition: color var(--transition);
}
.pw-cat-card:hover .pw-cat-name { color: var(--primary); }

/* Category Carousel */
.pw-cat-carousel {
  position: relative;
}
.pw-cat-carousel .owl-nav {
  position: absolute;
  top: -55px;
  right: 0;
  display: flex;
  gap: 8px;
}
.pw-cat-carousel .owl-nav button {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: var(--white) !important;
  border: 1px solid var(--border) !important;
  color: var(--text-dark) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all .2s ease !important;
  box-shadow: var(--shadow-sm) !important;
  font-size: 18px !important;
}
.pw-cat-carousel .owl-nav button:hover {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #fff !important;
}

@media (max-width: 1199px) {
  .pw-cat-grid--cols-6, .pw-cat-grid--cols-8 { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 991px) {
  .pw-cat-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .pw-cat-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
  .pw-cat-carousel .owl-nav { top: -48px; }
}
@media (max-width: 575px)  {
  .pw-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pw-cat-name { font-size: 1.22rem; padding: 10px 4px; }
}

/* ── 23. PRODUCT CAROUSEL TWEAKS ────────────────────────────── */
.pw-products-carousel .owl-nav button {
  width: 36px; height: 36px; border-radius: 50% !important;
  background: var(--white) !important; border: 1px solid var(--border) !important;
  color: var(--text-dark) !important; font-size: 1.6rem !important;
  display: flex; align-items: center; justify-content: center;
  top: 50%; transform: translateY(-50%);
  box-shadow: var(--shadow);
}
.pw-products-carousel .owl-nav button:hover {
  background: var(--primary) !important; color: var(--white) !important;
  border-color: var(--primary) !important;
}

/* ── 24. PROMO BANNER STRIP ─────────────────────────────────── */
.pw-promo-banner-strip {
  background: linear-gradient(135deg, #1a1a1a 0%, #3a2a1a 100%);
  padding: 48px 0;
}
.pw-promo-banner-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.pw-promo-banner-text h3 {
  font-size: 2.24rem; font-weight: 700; color: #fff; margin-bottom: 8px;
}
.pw-promo-banner-text p {
  font-size: 1.41rem; color: rgba(255,255,255,.75); margin-bottom: 20px; max-width: 500px;
}
.pw-promo-banner-text .pw-btn-primary {
  background: var(--primary); border-color: var(--primary); color: #fff;
}
.pw-promo-banner-badge {
  text-align: center; min-width: 110px; flex-shrink: 0;
  border: 2px solid var(--primary); border-radius: var(--radius-lg);
  padding: 16px 24px;
}
.pw-promo-banner-badge span {
  display: block; font-size: 1.22rem; color: rgba(255,255,255,.6); letter-spacing: .12em; text-transform: uppercase;
}
.pw-promo-banner-badge strong {
  display: block; font-size: 1.66rem; font-weight: 800; color: var(--primary); letter-spacing: .05em;
}
@media (max-width: 575px) {
  .pw-promo-banner-inner { justify-content: center; text-align: center; }
  .pw-promo-banner-badge { display: none; }
}

/* ── 25. TESTIMONIALS ───────────────────────────────────────── */
.pw-testimonials-section { background: var(--bg-light); }
.pw-testimonials-carousel { max-width: 720px; margin: 0 auto; }
.pw-testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 36px 40px; text-align: center;
  box-shadow: var(--shadow);
}
.pw-testimonial-stars {
  font-size: 1.8rem; color: var(--primary); margin-bottom: 16px;
  letter-spacing: 2px;
}
.pw-testimonial-text {
  font-size: 1.54rem; color: var(--text-dark); line-height: 1.7;
  font-style: italic; margin-bottom: 20px;
}
.pw-testimonial-author { display: flex; flex-direction: column; gap: 2px; }
.pw-testimonial-name { font-size: 1.38rem; font-weight: 700; color: var(--text-dark); }
.pw-testimonial-role { font-size: 1.22rem; color: var(--text-muted); }
.pw-testimonials-carousel .owl-dots { margin-top: 24px !important; }
@media (max-width: 575px) {
  .pw-testimonial-card { padding: 24px 20px; }
  .pw-testimonial-text { font-size: 1.41rem; }
}

/* ── 26. CTA STRIP ──────────────────────────────────────────── */
.pw-cta-strip {
  background: var(--primary);
  padding: 44px 0;
}
.pw-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.pw-cta-inner h3 {
  font-size: 2.1rem; font-weight: 700; color: #fff; margin-bottom: 6px;
}
.pw-cta-inner p { font-size: 1.38rem; color: rgba(255,255,255,.85); }
.pw-cta-strip .pw-btn-outline {
  border-color: #fff; color: #fff; white-space: nowrap; flex-shrink: 0;
}
.pw-cta-strip .pw-btn-outline:hover { background: #fff; color: var(--primary); }
@media (max-width: 575px) {
  .pw-cta-inner { flex-direction: column; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   27. SHOP-NOW BROWSE PAGE
   ═══════════════════════════════════════════════════════════════════════════════ */

.pw-browse-section { padding: 64px 0; }
.pw-browse-section + .pw-browse-section { padding-top: 0; }

/* Color browse */
.pw-color-browse-grid {
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: center; margin-top: 8px;
}
.pw-color-browse-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; text-decoration: none; transition: transform var(--transition);
}
.pw-color-browse-item:hover { transform: translateY(-3px); }
.pw-color-browse-dot {
  width: 48px; height: 48px; border-radius: 50%;
  border: 3px solid var(--border);
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
  transition: border-color var(--transition), box-shadow var(--transition);
  display: block;
}
.pw-color-browse-item:hover .pw-color-browse-dot {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(204,153,102,.35);
}
.pw-color-browse-name {
  font-size: 1.2rem; font-weight: 500; color: var(--text-muted);
  text-transform: capitalize; white-space: nowrap;
}

/* Browse cards (size / layout) */
.pw-browse-card {
  display: flex; flex-direction: column; text-decoration: none;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.pw-browse-card:hover {
  box-shadow: var(--shadow-lg); transform: translateY(-3px);
}
.pw-browse-card-img { aspect-ratio: 1/1; overflow: hidden; }
.pw-browse-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.pw-browse-card:hover .pw-browse-card-img img { transform: scale(1.04); }
.pw-browse-card-label {
  padding: 12px 10px; text-align: center;
  font-size: 1.31rem; font-weight: 600; color: var(--text-dark);
  border-top: 1px solid var(--border);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   28. PRODUCT LISTING & SEARCH
   ═══════════════════════════════════════════════════════════════════════════════ */

/* Sub-category pills */
.pw-sub-cats { display: flex; flex-wrap: wrap; gap: 8px; }
.pw-sub-cat-pill {
  display: inline-block; padding: 6px 16px;
  border: 1px solid var(--primary); border-radius: 20px;
  font-size: 1.28rem; font-weight: 500; color: var(--primary);
  text-decoration: none; transition: background var(--transition), color var(--transition);
}
.pw-sub-cat-pill:hover,
.pw-sub-cat-pill--child { background: var(--primary); color: var(--white); }

/* Toolbar */
.pw-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  padding: 14px 20px; background: var(--bg-light);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  margin-bottom: 28px;
}
.pw-toolbar-info { font-size: 1.31rem; color: var(--text-muted); }
.pw-toolbar-info strong { color: var(--text-dark); font-weight: 600; }
.pw-toolbar-sort { display: flex; align-items: center; gap: 10px; }
.pw-toolbar-sort label { font-size: 1.28rem; font-weight: 500; color: var(--text-muted); margin: 0; }
.pw-sort-select {
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 6px 12px; font-family: var(--font-main); font-size: 1.31rem;
  color: var(--text-dark); background: var(--white); cursor: pointer;
  transition: border-color var(--transition);
}
.pw-sort-select:focus { outline: none; border-color: var(--primary); }

/* Product grid spacing */
.pw-product-grid { margin-top: 4px; }

/* Empty state */
.pw-empty-state {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 64px 24px; text-align: center;
  color: var(--text-muted); gap: 16px;
}
.pw-empty-state p { font-size: 1.52rem; font-weight: 500; margin: 0; }
.pw-empty-state svg { color: var(--border); }

/* Pagination wrapper */
.pw-pagination-wrap { margin-top: 40px; margin-bottom: 24px; }
.pw-pagination-wrap .pagination .page-link {
  font-family: var(--font-main); font-size: 1.31rem;
  color: var(--text-dark); border-color: var(--border);
  padding: 8px 14px; transition: background var(--transition), color var(--transition);
}
.pw-pagination-wrap .pagination .page-item.active .page-link,
.pw-pagination-wrap .pagination .page-link:hover {
  background: var(--primary); border-color: var(--primary); color: var(--white);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   29. CART PAGE
   ═══════════════════════════════════════════════════════════════════════════════ */

.pw-checkflow {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 2rem;
  padding: .9rem 1rem;
  border: 1px solid var(--border);
  border-radius: .9rem;
  background: #fffaf2;
}
.pw-checkflow-step {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: #8a7864;
  font-size: 1.15rem;
  font-weight: 700;
}
.pw-checkflow-dot {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid #ddc9ae;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.08rem;
  background: #fff;
}
.pw-checkflow-line {
  height: 1px;
  background: #e8d8c3;
  width: 2.2rem;
}
.pw-checkflow-step--active {
  color: #6f4a23;
}
.pw-checkflow-step--active .pw-checkflow-dot {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.pw-checkflow-step--done {
  color: #2f7c47;
}
.pw-checkflow-step--done .pw-checkflow-dot {
  background: #e9f7ee;
  color: #2f7c47;
  border-color: #bfe2ca;
}
.pw-checkflow-line--done {
  background: #bfe2ca;
}

/* Cart item card */
.pw-cart-item {
  display: flex; gap: 20px;
  padding: 20px 0; border-bottom: 1px solid var(--border);
}
.pw-cart-item:last-of-type { border-bottom: none; }
.pw-cart-item-img {
  flex-shrink: 0; width: 110px; height: 130px;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border);
}
.pw-cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.pw-cart-item-body { flex: 1; display: flex; flex-direction: column; justify-content: space-between; }

.pw-cart-item-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.pw-cart-item-title {
  font-size: 1.41rem; font-weight: 600; color: var(--text-dark);
  margin: 0 0 4px; line-height: 1.35;
}
.pw-cart-item-meta {
  display: flex; flex-wrap: wrap; gap: 6px 16px;
  font-size: 1.2rem; color: #555; margin-top: 4px; margin-bottom: 8px;
}
.pw-cart-color-dot {
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid var(--border); display: inline-block;
  vertical-align: middle;
}
.pw-cart-remove {
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); padding: 4px; flex-shrink: 0;
  border-radius: var(--radius); transition: color var(--transition), background var(--transition);
}
.pw-cart-remove:hover { color: #e53935; background: #fdecea; }

.pw-cart-item-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }

/* Qty stepper */
.pw-cart-qty { display: flex; align-items: center; gap: 2px; }
.pw-qty-btn {
  width: 32px; height: 32px; border: 1px solid var(--border);
  background: var(--white); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.2rem; color: var(--text-dark);
  transition: border-color var(--transition), background var(--transition);
}
.pw-qty-btn:hover:not(:disabled) { border-color: var(--primary); background: #fdf6ef; }
.pw-qty-btn:disabled { opacity: .4; cursor: not-allowed; }
.pw-qty-input {
  width: 44px; height: 32px; text-align: center;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-main); font-size: 1.31rem; font-weight: 600;
  color: var(--text-dark); background: var(--white);
}

/* Item price */
.pw-cart-item-price { text-align: right; }
.pw-cart-unit-price { display: block; font-size: 1.55rem; font-weight: 600; color: var(--text-dark); }
.pw-cart-line-total { display: block; font-size: 1.62rem; font-weight: 700; color: var(--primary); }

/* Order summary card (shared cart + checkout) */
.pw-order-summary {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm);
}
.pw-order-summary--sticky { position: sticky; top: 100px; }
.pw-order-summary-title {
  font-size: 1.62rem; font-weight: 700; color: var(--text-dark);
  margin: 0 0 20px; padding-bottom: 14px; border-bottom: 1px solid var(--border);
}

/* Coupon */
.pw-coupon-row { display: flex; gap: 8px; margin-bottom: 6px; }
.pw-coupon-input {
  flex: 1; height: 40px; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 0 12px; font-family: var(--font-main); font-size: 1.28rem;
  color: var(--text-dark); transition: border-color var(--transition);
}
.pw-coupon-input:focus { outline: none; border-color: var(--primary); }
.pw-coupon-btn {
  height: 40px; padding: 0 16px; background: var(--primary); color: var(--white);
  border: none; border-radius: var(--radius); font-family: var(--font-main);
  font-size: 1.28rem; font-weight: 600; cursor: pointer;
  transition: background var(--transition);
}
.pw-coupon-btn:hover { background: var(--primary-dark); }
.pw-coupon-cancel {
  height: 40px; padding: 0 12px; background: #e53935; color: var(--white);
  border: none; border-radius: var(--radius); font-size: 1.2rem;
  font-family: var(--font-main); cursor: pointer;
}
.pw-coupon-msg { font-size: 1.2rem; min-height: 18px; margin-bottom: 4px; }

/* Browse coupons link */
.pw-browse-coupons-link { margin-bottom: 14px; }
.pw-browse-coupons-btn {
  background: none; border: none; padding: 0;
  font-family: var(--font-main); font-size: 1.18rem;
  color: var(--primary); cursor: pointer; text-decoration: underline;
  display: inline-flex; align-items: center;
}
.pw-browse-coupons-btn:hover { color: var(--primary-dark); }

/* Coupon browse modal */
.pw-cpn-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 9998;
}
.pw-cpn-modal {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%,-50%);
  z-index: 9999; background: var(--white); border-radius: var(--radius-lg);
  width: min(480px, 96vw); max-height: 80vh;
  flex-direction: column;
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
  animation: pwCpnFadeIn .18s ease;
}
@keyframes pwCpnFadeIn {
  from { opacity: 0; transform: translate(-50%,-48%); }
  to   { opacity: 1; transform: translate(-50%,-50%); }
}
.pw-cpn-modal-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
  font-size: 1.45rem; font-weight: 700; color: var(--text-dark);
}
.pw-cpn-close {
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); padding: 2px;
}
.pw-cpn-close:hover { color: #e53935; }
.pw-cpn-modal-body {
  overflow-y: auto; padding: 16px 20px;
  display: flex; flex-direction: column; gap: 12px;
}
.pw-cpn-loading { text-align:center; padding:24px 0; color:var(--text-muted); font-size:1.3rem; }
.pw-cpn-empty   { text-align:center; padding:24px 0; color:var(--text-muted); font-size:1.3rem; }

/* Individual coupon card */
.pw-cpn-card {
  border: 1.5px dashed var(--primary); border-radius: var(--radius);
  padding: 14px 16px; display: flex; align-items: center; gap: 14px;
  background: var(--primary-light);
}
.pw-cpn-left { flex: 1; min-width: 0; }
.pw-cpn-code-wrap {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  background: var(--white); border: 1.5px dashed var(--primary);
  border-radius: 6px; padding: 5px 10px; margin-bottom: 6px;
}
.pw-cpn-code {
  font-size: 1.42rem; font-weight: 800; color: var(--primary-dark);
  letter-spacing: .06em; font-family: monospace;
}
.pw-cpn-badge {
  font-size: 1.15rem; font-weight: 700;
  color: #2e7d32; background: #e8f5e9; border-radius: 4px;
  padding: 2px 8px; white-space: nowrap;
}
.pw-cpn-details {
  font-size: 1.12rem; color: #555; margin-top: 4px; line-height: 1.55;
}
.pw-cpn-apply-btn {
  flex-shrink: 0; height: 40px; padding: 0 18px;
  background: var(--primary); color: var(--white); border: none;
  border-radius: var(--radius); font-family: var(--font-main);
  font-size: 1.22rem; font-weight: 700; cursor: pointer;
  transition: background var(--transition);
}
.pw-cpn-apply-btn:hover { background: var(--primary-dark); }

/* Summary lines */
.pw-summary-lines { border-top: 1px solid var(--border); margin-top: 16px; padding-top: 14px; }
.pw-summary-line {
  display: flex; justify-content: space-between;
  font-size: 1.31rem; color: var(--text-muted);
  padding: 5px 0;
}
.pw-summary-total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 14px; padding-top: 14px; border-top: 2px solid var(--border);
  font-size: 1.72rem; font-weight: 700; color: var(--text-dark);
}

/* ── Responsive ── */
@media (max-width: 576px) {
  .pw-cart-item { flex-direction: column; }
  .pw-cart-item-img { width: 100%; height: 200px; }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   30. CHECKOUT PAGE
   ═══════════════════════════════════════════════════════════════════════════════ */

/* Section card */
.pw-checkout-section {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px 20px 16px;
  margin-bottom: 14px; box-shadow: var(--shadow-sm);
}
.pw-checkout-section-title {
  font-size: 1.62rem; font-weight: 700; color: var(--text-dark);
  margin: 0 0 12px; display: flex; align-items: center; gap: 10px;
}
.pw-checkout-step {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  font-size: 1.3rem; font-weight: 700; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
}

/* Form grid */
.pw-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 14px; }
.pw-form-group { display: flex; flex-direction: column; gap: 4px; }
.pw-form-group--full { grid-column: 1 / -1; }
.pw-form-label { font-size: 1.2rem; font-weight: 600; color: var(--text-dark); }
.pw-optional { font-weight: 400; color: var(--text-muted); }
.pw-form-control {
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 8px 12px; font-family: var(--font-main); font-size: 1.22rem;
  color: var(--text-dark); transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}
.pw-form-control:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(204,153,102,.15);
}
.pw-form-control::placeholder { color: var(--text-muted); }
textarea.pw-form-control { resize: vertical; min-height: 74px; }
select.pw-form-control { cursor: pointer; }

/* Address type radio */
.pw-addr-type-row { display: flex; gap: 12px; flex-wrap: wrap; }
.pw-addr-type-label { cursor: pointer; }
.pw-addr-type-label input[type="radio"] { display: none; }
.pw-addr-type-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; border: 2px solid var(--border);
  border-radius: 20px; font-size: 1.28rem; font-weight: 500;
  color: var(--text-dark); transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.pw-addr-type-label input[type="radio"]:checked ~ .pw-addr-type-pill {
  border-color: var(--primary); background: #fdf6ef; color: var(--primary);
}

/* Payment method cards */
.pw-payment-methods { display: flex; flex-direction: column; gap: 10px; }
.pw-payment-card { cursor: pointer; position: relative; display: block; }
.pw-payment-card input[type="radio"] { display: none; }
.pw-payment-card-inner {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px 14px;
  padding: 14px 16px; border: 2px solid var(--border);
  border-radius: var(--radius-lg); transition: border-color var(--transition), background var(--transition);
  position: relative; padding-right: 44px;
}
.pw-payment-card input[type="radio"]:checked ~ .pw-payment-card-inner {
  border-color: var(--primary); background: #fdf6ef;
}
.pw-payment-card-name { font-size: 1.38rem; font-weight: 600; color: var(--text-dark); }
.pw-pay-badge {
  color: #fff; font-size: 1.1rem; font-weight: 700;
  padding: 2px 8px; border-radius: 3px; letter-spacing: .04em;
}
.pw-payment-card-desc { width: 100%; font-size: 1.18rem; color: var(--text-muted); margin-top: -4px; }
.pw-payment-radio-dot {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid var(--border); background: var(--white);
  transition: border-color var(--transition);
}
.pw-payment-card input[type="radio"]:checked ~ .pw-payment-card-inner .pw-payment-radio-dot {
  border-color: var(--primary); border-width: 5px;
}
.pw-payment-card input[type="radio"]:checked ~ .pw-payment-radio-dot {
  border-color: var(--primary); border-width: 5px;
}
.pw-payment-hint {
  margin-top: 1rem;
  padding: .85rem 1rem;
  border-radius: .8rem;
  border: 1px solid #eadcc7;
  background: #fff8ed;
  color: #7a6141;
  font-size: 1.15rem;
  font-weight: 600;
}
.pw-payment-hint--online {
  border-color: #cfe0ff;
  background: #f2f7ff;
  color: #2c4f86;
}
.pw-payment-hint--cod {
  border-color: #cde8d6;
  background: #eefaf2;
  color: #2f7c47;
}

/* Checkout order items */
.pw-checkout-items { border-top: 1px solid var(--border); padding-top: 14px; margin-top: 2px; }
.pw-checkout-item-row {
  display: flex; justify-content: space-between; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 1.28rem;
}
.pw-checkout-item-row:last-child { border-bottom: none; }
.pw-checkout-item-info { display: flex; flex-direction: column; gap: 2px; }
.pw-checkout-item-name { font-weight: 600; color: var(--text-dark); }
.pw-checkout-item-meta { font-size: 1.15rem; color: var(--text-muted); }
.pw-checkout-item-price { font-weight: 600; color: var(--text-dark); white-space: nowrap; }

/* Secure badge */
.pw-checkout-secure {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  font-size: 1.18rem; color: var(--text-muted); margin-top: 10px; margin-bottom: 0;
}

/* Responsive */
@media (max-width: 576px) {
  .pw-checkflow {
    gap: .5rem;
    padding: .8rem .7rem;
  }
  .pw-checkflow-label {
    font-size: 1.02rem;
  }
  .pw-checkflow-line {
    width: 1.2rem;
  }
  .pw-form-grid { grid-template-columns: 1fr; }
  .pw-checkout-section { padding: 20px 16px; }
}

/* ── Address Book (— checkout) ──────────────────────────── */
.pw-addrbook {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}
.pw-addr-card {
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  cursor: pointer;
  position: relative;
  transition: border-color .2s, box-shadow .2s, background .2s;
  background: #fafaf9;
}
.pw-addr-card:hover { border-color: var(--primary-light, #e8c9a0); }
.pw-addr-card.selected {
  border-color: var(--primary);
  background: #fdf6ef;
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb,193,39,45),.08);
}
/* Card header */
.pw-addr-card-head {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.pw-addr-card-label {
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--primary);
  background: rgba(var(--primary-rgb,193,39,45),.08);
  padding: 2px 10px;
  border-radius: 20px;
  flex: 1;
}
.pw-addr-card-del {
  background: none;
  border: none;
  cursor: pointer;
  color: #bbb;
  display: flex;
  align-items: center;
  padding: 4px;
  border-radius: 4px;
  transition: color .15s, background .15s;
}
.pw-addr-card-del:hover { color: #e53935; background: #fdecea; }
.pw-addr-card-del svg { width: 14px; height: 14px; }
/* Check icon (shown only when selected) */
.pw-addr-card-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(.6);
  transition: opacity .2s, transform .2s;
  flex-shrink: 0;
}
.pw-addr-card-check svg { width: 11px; height: 11px; stroke: #fff; }
.pw-addr-card.selected .pw-addr-card-check { opacity: 1; transform: scale(1); }
/* Card text */
.pw-addr-card-name { font-size: 1.28rem; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.pw-addr-card-line { font-size: 1.2rem; color: var(--text-muted); line-height: 1.5; }
.pw-addr-card-landmark { font-style: italic; }

/* Add new address button */
.pw-add-new-addr-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 12px 20px;
  width: 100%;
  cursor: pointer;
  font-size: 1.32rem;
  font-weight: 600;
  color: var(--primary);
  transition: border-color .2s, background .2s;
  margin-bottom: 0;
}
.pw-add-new-addr-btn svg { width: 16px; height: 16px; }
.pw-add-new-addr-btn:hover { border-color: var(--primary); background: #fdf6ef; }
.pw-add-new-addr-btn--sm { font-size: 1.3rem; padding: 8px 16px; }

/* Profile page Address Book section */
.pw-addr-book-section { margin-top: 48px; padding-top: 32px; border-top: 1.5px solid var(--border); }
.pw-addr-book-section-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
.pw-addr-book-empty { color: var(--text-muted); font-size: 1.35rem; margin: 8px 0 16px; }
.pw-addr-set-default-btn {
  font-size: 1.1rem;
  padding: 2px 10px;
  border: 1.5px solid var(--primary);
  border-radius: 20px;
  background: none;
  color: var(--primary);
  cursor: pointer;
  font-weight: 600;
  transition: background 0.18s, color 0.18s;
  line-height: 1.6;
}
.pw-addr-set-default-btn:hover { background: var(--primary); color: #fff; }
.pw-addr-card-default-badge {
  display: inline-block;
  font-size: 1.05rem;
  padding: 2px 10px;
  border-radius: 20px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  letter-spacing: .01em;
}

/* New address form panel */
.pw-new-addr-form {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 22px 18px;
  margin-top: 16px;
  background: #fafaf9;
}
.pw-new-addr-form--open { display: block !important; margin-top: 0; border: none; padding: 0; background: none; }
.pw-new-addr-form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.pw-new-addr-form-head h4 { font-size: 1.45rem; font-weight: 700; margin: 0; color: var(--text-dark); }
.pw-new-addr-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  padding: 4px;
  border-radius: 4px;
  transition: color .15s;
}
.pw-new-addr-close:hover { color: var(--text-dark); }
.pw-new-addr-close svg { width: 18px; height: 18px; }

/* Save & Use button */
.pw-save-addr-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 11px 24px;
  font-size: 1.32rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 16px;
  transition: background .2s, transform .15s;
}
.pw-save-addr-btn:hover { background: var(--primary-dark, #a31219); transform: translateY(-1px); }
.pw-save-addr-btn:disabled { opacity: .65; cursor: not-allowed; transform: none; }
.pw-save-addr-btn svg { width: 15px; height: 15px; }
.pw-save-addr-err { font-size: 1.2rem; color: #e53935; margin-top: 8px; min-height: 18px; }

/* Mobile: 1 column address cards */
@media (max-width: 575px) {
  .pw-addrbook { grid-template-columns: 1fr; }
  .pw-new-addr-form { padding: 16px 14px 12px; }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   31. ACCOUNT LAYOUT & SIDEBAR
   ═══════════════════════════════════════════════════════════════════════════════ */

.pw-account-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: start;
  padding: 40px 0 64px;
}
@media (max-width: 767px) {
  .pw-account-layout { grid-template-columns: 1fr; }
}

/* Sidebar */
.pw-account-sidebar {
  position: sticky;
  top: 90px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}

/* User Profile Mini Header */
.pw-account-user-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 18px 16px;
  background: linear-gradient(135deg, #fcf9f5 0%, #f7efe6 100%);
  border-bottom: 1px solid var(--border);
}
.pw-account-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(184,0,26,.22);
}
.pw-account-user-info {
  min-width: 0;
  flex: 1;
}
.pw-account-user-name {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 2px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pw-account-user-email {
  font-size: 1.18rem;
  color: var(--text-muted);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Account Navigation */
.pw-account-nav {
  display: flex;
  flex-direction: column;
  padding: 10px;
  gap: 4px;
}
.pw-account-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 8px;
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: all .2s ease;
  position: relative;
}
.pw-account-nav-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--bg-light);
  color: var(--text-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .2s ease;
}
.pw-account-nav-text {
  flex: 1;
  font-size: 1.34rem;
}
.pw-account-nav-chevron {
  color: var(--text-muted);
  opacity: .4;
  transition: transform .2s ease, opacity .2s ease;
}

/* Hover & Active States */
.pw-account-nav-link:hover {
  background: #fdf6ef;
  color: var(--primary);
}
.pw-account-nav-link:hover .pw-account-nav-icon {
  background: #fae6d3;
  color: var(--primary);
}
.pw-account-nav-link:hover .pw-account-nav-chevron {
  opacity: 1;
  transform: translateX(3px);
  color: var(--primary);
}

.pw-account-nav-link--active {
  background: linear-gradient(90deg, #fdf4ea 0%, #fbe8d4 100%);
  color: var(--primary);
  font-weight: 600;
}
.pw-account-nav-link--active .pw-account-nav-icon {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 6px rgba(184,0,26,.25);
}
.pw-account-nav-link--active .pw-account-nav-chevron {
  opacity: 1;
  color: var(--primary);
}

/* Divider */
.pw-account-nav-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 4px;
}

/* Danger / Sign Out */
.pw-account-nav-link--danger {
  color: #d32f2f;
}
.pw-account-nav-icon--danger {
  background: #ffebee;
  color: #d32f2f;
}
.pw-account-nav-link--danger:hover {
  background: #ffebee;
  color: #b71c1c;
}
.pw-account-nav-link--danger:hover .pw-account-nav-icon--danger {
  background: #ffcdd2;
  color: #b71c1c;
}

/* Content card */
.pw-account-content {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}
.pw-account-content-title {
  font-size: 1.72rem; font-weight: 700; color: var(--text-dark);
  margin: 0 0 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   32. ORDERS TABLE & STATUS BADGES
   ═══════════════════════════════════════════════════════════════════════════════ */

/* Scrollable wrapper on mobile */
.pw-orders-table-wrap { overflow-x: auto; }

.pw-orders-table {
  width: 100%; border-collapse: collapse;
  font-size: 1.31rem; color: var(--text-dark);
}
.pw-orders-table thead tr {
  border-bottom: 2px solid var(--border);
  background: var(--bg-light);
}
.pw-orders-table th {
  padding: 12px 14px; font-size: 1.18rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em; color: var(--text-muted);
  white-space: nowrap; text-align: left;
}
.pw-orders-table td {
  padding: 14px 14px; border-bottom: 1px solid var(--border); vertical-align: middle;
}
.pw-orders-table tbody tr:last-child td { border-bottom: none; }
.pw-orders-table tbody tr:hover { background: #fdf6ef; }
.pw-orders-date { white-space: nowrap; color: var(--text-muted); font-size: 1.22rem; }

/* Status badges */
.pw-order-status-badge {
  display: inline-block; padding: 4px 11px; border-radius: 20px;
  font-size: 1.18rem; font-weight: 600; letter-spacing: .03em; white-space: nowrap;
}
.pw-order-status-badge--placed    { background: #e3f2fd; color: #1565c0; }
.pw-order-status-badge--accepted  { background: #e8eaf6; color: #283593; }
.pw-order-status-badge--packed    { background: #f3e5f5; color: #6a1b9a; }
.pw-order-status-badge--shipped   { background: #fff3e0; color: #e65100; }
.pw-order-status-badge--delivered { background: #e8f5e9; color: #2e7d32; }
.pw-order-status-badge--cancelled { background: #ffebee; color: #c62828; }
.pw-order-status-badge--pending   { background: #fffde7; color: #f57f17; }

/* Action buttons */
.pw-orders-actions { display: flex; flex-wrap: wrap; gap: 6px; }
.pw-orders-btn {
  display: inline-block; padding: 5px 12px; border-radius: var(--radius);
  font-size: 1.18rem; font-weight: 600; text-decoration: none; cursor: pointer;
  border: 1px solid transparent; transition: opacity var(--transition);
  white-space: nowrap;
}
.pw-orders-btn:hover { opacity: .82; }
.pw-orders-btn--view   { background: var(--primary); color: #fff; border-color: var(--primary); }
.pw-orders-btn--pay    { background: #2e7d32; color: #fff; border-color: #2e7d32; }
.pw-orders-btn--cancel { background: #e53935; color: #fff; border-color: #e53935; }

/* Order detail meta row */
.pw-order-detail-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.pw-order-detail-id   { font-size: 1.72rem; font-weight: 700; color: var(--text-dark); }

/* Info cards (address + payment on order detail) */
.pw-info-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 22px 20px;
  height: 100%; box-shadow: var(--shadow-sm);
}
.pw-info-card-title {
  font-size: 1.38rem; font-weight: 700; color: var(--text-dark);
  margin: 0 0 14px; display: flex; align-items: center; gap: 8px;
}
.pw-info-card p { font-size: 1.28rem; color: var(--text-muted); margin: 0 0 4px; line-height: 1.55; }
.pw-info-card-name { font-weight: 600; color: var(--text-dark) !important; }
.pw-info-label { font-weight: 600; color: var(--text-dark); margin-right: 4px; }

/* ============================================================
   33  PRODUCT DETAIL PAGE
   ============================================================ */

/* breadcrumb reuses 14 .pw-breadcrumb */

.pw-pdp { padding: 4rem 0 6rem; }

/* gallery -------------------------------------------------- */
.pw-pdp-gallery { position: sticky; top: 9rem; }
.pw-pdp-img-main {
    position: relative;
    border-radius: 1.2rem;
    overflow: hidden;
    background: #f8f5f0;
    margin-bottom: 1.2rem;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.pw-pdp-img-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform .4s ease;
}
.pw-pdp-img-main:hover img { transform: scale(1.03); }
.pw-pdp-expand-hint {
    position: absolute;
    bottom: 1.2rem;
    right: 1.2rem;
    width: 4rem;
    height: 4rem;
    background: rgba(255,255,255,.88);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .25s ease;
    pointer-events: none;
    box-shadow: 0 2px 10px rgba(0,0,0,.1);
    color: var(--text-dark);
}
.pw-pdp-img-main:hover .pw-pdp-expand-hint { opacity: 1; }
.pw-pdp-thumbs {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
}
.pw-pdp-thumb {
    width: 8rem;
    height: 8rem;
    border-radius: .8rem;
    overflow: hidden;
    border: 2px solid #eee;
    cursor: pointer;
    transition: border-color .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f5f0;
    flex-shrink: 0;
}
.pw-pdp-thumb.active,
.pw-pdp-thumb:hover { border-color: var(--primary); }
.pw-pdp-thumb img { width: 100%; height: 100%; object-fit: contain; display: block; }

/* info panel ----------------------------------------------- */
.pw-pdp-info { padding-left: 3.2rem; }

.pw-pdp-title {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.3;
    color: #222;
    margin-bottom: 1.2rem;
    font-family: var(--font-head);
}

/* price */
.pw-pdp-price { margin-bottom: 1.6rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.pw-pdp-oldprice { font-size: 1.6rem; color: #aaa; text-decoration: line-through; line-height: 1; }
.pw-pdp-newprice { font-size: 3rem; font-weight: 700; color: var(--primary); line-height: 1; }
.pw-pdp-save-badge {
    display: inline-block;
    background: #e8f7ee;
    color: #1a7d3e;
    font-size: 1.2rem;
    font-weight: 700;
    padding: .3rem .9rem;
    border-radius: 2rem;
    letter-spacing: .04em;
}
  .pw-pdp-save-line {
    margin-top: -.8rem;
    margin-bottom: 1.1rem;
    color: #1a7d3e;
    font-size: 1.28rem;
    font-weight: 700;
  }

/* description */
.pw-pdp-desc {
    font-size: 1.45rem;
    color: #666;
    line-height: 1.75;
    margin-bottom: 2rem;
    border-bottom: 1px solid #f0ebe3;
    padding-bottom: 1.6rem;
}

/* filter rows */
.pw-pdp-filter { margin-bottom: 1.8rem; }
.pw-pdp-filter-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: #444;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: .8rem;
}

/* color dots */
.pw-pdp-colors { display: flex; gap: 1rem; flex-wrap: wrap; }
.pw-pdp-color-dot {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    border: 2px solid #e0d8cc;
    cursor: pointer;
    transition: transform .2s, border-color .2s;
    position: relative;
    display: inline-block;
}
.pw-pdp-color-dot.active,
.pw-pdp-color-dot:hover { border-color: #333; transform: scale(1.18); }
.pw-pdp-color-dot.active::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid var(--primary);
}

/* action row */
.pw-pdp-action {
    display: flex;
    gap: 1.2rem;
    align-items: stretch;
    margin-bottom: 2rem;
    flex-wrap: nowrap;
}
/* inputSpinner wraps the <input> in .input-spinner — target that wrapper as the flex child */
.pw-pdp-action .input-spinner {
    flex: 0 0 35%;
    width: 35%;
    min-width: 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}
.pw-pdp-qty-input {
    width: 100%;
    padding: 1rem;
    border: 1.5px solid #ddd;
    border-radius: .8rem;
    font-size: 1.6rem;
    text-align: center;
    font-weight: 600;
    box-sizing: border-box;
}
.pw-pdp-qty-input:focus { outline: none; border-color: var(--primary); }
.pw-pdp-atc {
    flex: 1;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2rem;
    background: var(--primary);
    color: #fff !important;
    border: none;
    border-radius: .8rem;
    font-size: 1.4rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, transform .15s;
    letter-spacing: .04em;
    text-transform: uppercase;
    white-space: nowrap;
}
.pw-pdp-atc:hover { background: #b5854d; transform: translateY(-1px); }
.pw-pdp-atc--oos { background: #ddd; color: #999 !important; cursor: not-allowed; pointer-events: none; }
.pw-pdp-atc--added { background: #27ae60; }

/* meta */
.pw-pdp-meta { font-size: 1.35rem; color: #888; }
.pw-pdp-meta a { color: var(--primary); font-weight: 600; }

/* divider */
.pw-pdp-divider { height: 1px; background: #eee; margin: 4rem 0 3.2rem; }

/* tabs ----------------------------------------------------- */
.pw-pdp-tabs { margin-bottom: 4rem; }
.pw-pdp-tabnav {
    display: flex;
    border-bottom: 2px solid #eee;
    margin-bottom: 2.4rem;
    flex-wrap: wrap;
    gap: 0;
}
.pw-pdp-tabnav-item {
    padding: 1.2rem 2.4rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #888;
    cursor: pointer;
    border: none;
    background: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color .2s, border-color .2s;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.pw-pdp-tabnav-item.active { color: var(--primary); border-bottom-color: var(--primary); }
.pw-pdp-tabpanel { display: none; font-size: 1.45rem; color: #555; line-height: 1.8; }
.pw-pdp-tabpanel.active { display: block; }
.pw-pdp-tabpanel h3 { font-size: 1.8rem; font-weight: 700; color: #333; margin-bottom: 1.2rem; }
.pw-dims-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: .6rem; }
.pw-dims-item { background: #f8f9fa; border: 1px solid #e9ecef; border-radius: 8px; padding: 1.6rem 1.2rem; text-align: center; }
.pw-dims-label { display: block; font-size: 1.2rem; color: #888; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .5rem; }
.pw-dims-value { display: block; font-size: 2rem; font-weight: 700; color: #333; }
.pw-dims-value em { font-style: normal; font-size: 1.2rem; color: #888; margin-left: .2rem; }

/* also like ------------------------------------------------ */
.pw-pdp-alsolike { padding: 4rem 0 5rem; border-top: 1px solid #eee; }
.pw-pdp-alsolike-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3.2rem;
    color: #222;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-family: var(--font-head);
}
.pw-pdp-alsolike-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.4rem;
}

/* responsive */
@media (max-width: 991px) {
    .pw-pdp-info { padding-left: 1.6rem; }
}
@media (max-width: 767px) {
    .pw-pdp-info { padding-left: 0; margin-top: 2.4rem; }
    .pw-pdp-img-main { aspect-ratio: 1 / 1; }
    .pw-pdp-thumb { width: 7rem; height: 7rem; }
    .pw-pdp-alsolike-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 479px) {
    .pw-pdp-alsolike-grid { grid-template-columns: 1fr; }
    .pw-pdp-title { font-size: 2rem; }
    .pw-pdp-newprice { font-size: 2.4rem; }
}

/* ═══════════════════════════════════════════════
   SHOP NOW — Layout, Sidebar, Filters
═══════════════════════════════════════════════ */
.pw-shop-layout {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  padding: 3.2rem 0 5rem;
}

/* ── Sidebar ── */
.pw-shop-sidebar {
  width: 260px;
  min-width: 260px;
  flex-shrink: 0;
}
.pw-shop-main {
  flex: 1;
  min-width: 0;
}

.pw-filter-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  margin-bottom: 2rem;
}
.pw-filter-title {
  font-size: 1.42rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-dark);
  margin-bottom: 1.4rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--primary);
}

/* Category list */
.pw-filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pw-filter-list li { margin-bottom: .4rem; }
.pw-filter-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .7rem 1rem;
  border-radius: 6px;
  font-size: 1.38rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: background .18s, color .18s;
  cursor: pointer;
}
.pw-filter-cat:hover  { background: var(--primary-light); color: var(--primary); }
.pw-filter-cat--active { background: var(--primary); color: var(--white) !important; font-weight: 600; }

/* Price slider */
.pw-price-slider-wrap { padding-top: .4rem; }
.pw-price-range-track {
  position: relative;
  height: 5px;
  background: #e0e0e0;
  border-radius: 3px;
  margin: 2.2rem 0 1rem;
}
.pw-price-range-fill {
  position: absolute;
  top: 0; height: 100%;
  background: var(--primary);
  border-radius: 3px;
  pointer-events: none;
}
.pw-range-input {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 5px;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  pointer-events: none;
  outline: none;
  margin: 0;
}
.pw-range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px; height: 18px;
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: 50%;
  cursor: pointer;
  pointer-events: all;
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
  transition: transform .15s;
}
.pw-range-input::-webkit-slider-thumb:hover { transform: scale(1.2); }
.pw-range-input::-moz-range-thumb {
  width: 18px; height: 18px;
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: 50%;
  cursor: pointer;
  pointer-events: all;
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
}
.pw-range-min { z-index: 3; }
.pw-range-max { z-index: 4; }
.pw-price-labels {
  font-size: 1.32rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.pw-filter-apply-btn {
  display: block;
  width: 100%;
  padding: .8rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 1.35rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .18s;
}
.pw-filter-apply-btn:hover { background: var(--primary-dark, #c0392b); }

/* ── Attribute Filters ─────────────────────────────────── */
.pw-attr-widget { margin-bottom: 0; }

.pw-attr-toggle {
  cursor: pointer; user-select: none;
  display: flex; align-items: center; justify-content: space-between;
}
.pw-attr-chevron {
  font-size: 1.4rem; transition: transform .2s; display: inline-block;
}
.pw-attr-toggle--collapsed .pw-attr-chevron { transform: rotate(-90deg); }

.pw-attr-body {
  overflow: hidden; max-height: 400px;
  transition: max-height .3s ease, opacity .2s;
  opacity: 1;
}
.pw-attr-body--collapsed { max-height: 0; opacity: 0; }

/* Checkbox list */
.pw-attr-value-list { list-style: none; padding: 0; margin: 0 0 .8rem; }
.pw-attr-value-list li { margin-bottom: 6px; }
.pw-attr-checkbox-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 1.36rem; color: var(--text-mid);
  cursor: pointer; transition: color var(--transition);
}
.pw-attr-checkbox-label:hover { color: var(--primary); }
.pw-attr-checkbox { display: none; }
.pw-attr-checkmark {
  width: 16px; height: 16px; border-radius: 4px;
  border: 1.5px solid var(--border); background: var(--white);
  flex-shrink: 0; transition: background var(--transition), border-color var(--transition);
  position: relative;
}
.pw-attr-checkbox:checked + .pw-attr-checkmark {
  background: var(--primary); border-color: var(--primary);
}
.pw-attr-checkbox:checked + .pw-attr-checkmark::after {
  content: ''; position: absolute; left: 4px; top: 1px;
  width: 5px; height: 9px; border: 2px solid #fff;
  border-top: none; border-left: none; transform: rotate(45deg);
}

/* Color swatches */
.pw-attr-color-swatches {
  display: flex; flex-wrap: wrap; gap: 8px; padding-bottom: .8rem;
}
.pw-attr-color-swatch {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .15s, border-color .15s;
  box-shadow: 0 1px 3px rgba(0,0,0,.18);
}
.pw-attr-color-swatch:hover { transform: scale(1.15); }
.pw-attr-swatch--active {
  border-color: var(--primary); transform: scale(1.15);
  box-shadow: 0 0 0 3px rgba(204,153,102,.35);
}

/* Attr value count badge */
.pw-attr-count {
  font-size: 1.15rem; color: var(--text-muted);
  font-weight: 400; margin-left: 4px; margin-right: auto;
}

/* Show more / less button */
.pw-attr-show-more {
  display: inline-flex; align-items: center; gap: 4px;
  background: none; border: none; padding: 4px 0 8px;
  font-family: var(--font-main); font-size: 1.28rem;
  color: var(--primary); cursor: pointer;
  text-decoration: underline; text-underline-offset: 2px;
  transition: color var(--transition);
}
.pw-attr-show-more:hover { color: var(--primary-dark); }
.pw-attr-show-more span {
  font-size: 1.1rem; background: var(--primary-light);
  color: var(--primary-dark); padding: 1px 5px;
  border-radius: 10px; font-weight: 600;
}

/* Clear all button */
.pw-filter-clear-btn {
  width: 100%; padding: 9px 14px; margin-top: .8rem;
  background: transparent; border: 1.5px solid #e0e0e0;
  border-radius: var(--radius); cursor: pointer;
  font-family: var(--font-main); font-size: 1.31rem;
  color: #888; transition: border-color var(--transition), color var(--transition);
}
.pw-filter-clear-btn:hover { border-color: #e53935; color: #e53935; }

/* Mobile filter toggle */
.pw-mobile-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: .7rem 1.4rem;
  font-size: 1.35rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 1.4rem;
  color: var(--text-dark);
  transition: border-color .18s;
}
.pw-mobile-filter-btn:hover { border-color: var(--primary); color: var(--primary); }

/* Mobile sidebar overlay */
.pw-sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 1100;
}
.pw-overlay--active { display: block; }
.pw-sidebar-close {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  padding: .5rem 0 1.2rem;
  color: var(--text-dark);
}

/* Discount badge */
.pw-discount-badge {
  background: #e53935 !important;
  color: #fff !important;
  font-size: 1.15rem;
  font-weight: 700;
}

/* Loading spinner */
.pw-spinner {
  width: 40px; height: 40px;
  border: 4px solid #f0f0f0;
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: pw-spin .7s linear infinite;
  margin: 0 auto;
}
@keyframes pw-spin { to { transform: rotate(360deg); } }

/* Responsive: collapse sidebar on mobile */
@media (max-width: 991px) {
  .pw-shop-layout { display: block; padding: 2rem 0 4rem; }
  .pw-shop-sidebar {
    position: fixed;
    top: 0; left: 0;
    width: 280px;
    height: 100vh;
    overflow-y: auto;
    background: var(--white);
    z-index: 1200;
    padding: 2rem 1.8rem;
    transform: translateX(-100%);
    transition: transform .28s cubic-bezier(.4,0,.2,1);
    box-shadow: 4px 0 24px rgba(0,0,0,.12);
  }
  .pw-shop-sidebar.pw-sidebar--open { transform: translateX(0); }
}
@media (min-width: 992px) {
  .pw-shop-sidebar { display: block !important; transform: none !important; position: static !important; }
  .pw-mobile-filter-btn { display: none !important; }
  .pw-sidebar-close { display: none !important; }
  .pw-sidebar-overlay { display: none !important; }
}

/* ══════════════════════════════════════════════════════════════
   34. COMPREHENSIVE MOBILE RESPONSIVENESS
══════════════════════════════════════════════════════════════ */

/* ── Tablet (≤991px) ─────────────────────────────────────── */
@media (max-width: 991px) {

  /* Container safe padding */
  .container, .container-fluid { padding-left: 16px; padding-right: 16px; }

  /* Header */
  .pw-header-inner { gap: 10px; }
  .pw-logo img { height: 60px; }

  /* Cart panel — shift left so it doesn't clip on the right */
  .pw-cart-panel { right: -8px; width: 310px; }

  /* Home sections */
  .pw-home-section { padding: 52px 0; }
  .pw-home-section.pw-cat-section { padding: 44px 0; }
  .pw-section-head { margin-bottom: 32px; }
  .pw-section-head h2 { font-size: 2.4rem; }

  /* CTA strip */
  .pw-cta-inner { gap: 16px; }
  .pw-cta-inner h3 { font-size: 1.8rem; }

  /* Features strip */
  .pw-features-strip { padding: 20px 0; }

  /* Promo banner */
  .pw-promo-banner-strip { padding: 36px 0; }
  .pw-promo-banner-text h3 { font-size: 1.9rem; }

  /* Footer */
  .pw-footer { padding-top: 40px; }
  .pw-footer-grid { gap: 28px; }

  /* Page-header title (Molla legacy) */
  .page-header h1.page-title { font-size: 2.4rem; }

  /* Product detail */
  .pw-pdp { padding: 2.4rem 0 4rem; }
  .pw-pdp-gallery { position: static; }
  .pw-pdp-title { font-size: 2.2rem; }

  /* Checkout / cart full-width on mobile col */
  .pw-order-summary--sticky { position: static; top: auto; }
}

/* ── Mobile (≤767px) ─────────────────────────────────────── */
@media (max-width: 767px) {

  /* Base font reduction */
  html { font-size: 9.5px; }

  /* Header */
  .pw-header-inner { height: 70px; gap: 8px; }
  .pw-logo img { height: 60px; }
  .pw-logo-text { font-size: 18px; }
  .pw-action-btn { width: 36px; height: 36px; }
  .pw-action-btn svg { width: 18px; height: 18px; }

  /* Cart panel — full width below header on very small screens */
  .pw-cart-panel {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 16px 16px 0 0;
    border-bottom: none;
    max-height: 80vh;
    transform: translateY(100%);
  }
  .pw-cart-wrap .pw-cart-panel.pw-cp-open {
    transform: translateY(0);
  }

  /* Account panel — right-align but ensure no overflow */
  .pw-account-panel { right: 0; min-width: 180px; }

  /* Promo bar */
  .pw-promo { font-size: 11px; height: 32px; }
  .pw-promo-close { right: 6px; }
  .pw-promo-close svg { width: 12px; height: 12px; }

  /* Home sections */
  .pw-home-section { padding: 40px 0; }
  .pw-home-section.pw-cat-section { padding: 36px 0; }
  .pw-section-head { margin-bottom: 24px; }
  .pw-section-head h2 { font-size: 2rem; }
  .pw-section-head p { font-size: 1.38rem; }

  /* Category grid */
  .pw-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* Product cards — 2 per row */
  .pw-product-grid .col-6,
  .pw-product-grid .col-sm-4,
  .pw-product-grid .col-md-3 { width: 50%; flex: 0 0 50%; max-width: 50%; }
  .pw-product-body { padding: 1.2rem 1.2rem; }
  .pw-product-title { font-size: 1.3rem; }
  .pw-product-price { font-size: 1.38rem; }

  /* Hero section padding */
  .pw-hero-caption { padding: 0 5%; max-width: 85%; }
  .pw-hero-caption__heading { font-size: 1.6rem; }
  .pw-hero-caption__text { font-size: 1.15rem; margin-bottom: 1rem; }
  .pw-hero-caption__btn { padding: .55rem 1.4rem; font-size: .85rem; }

  /* Features strip — 2 columns */
  .pw-features-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pw-feature-item strong { font-size: 1.28rem; }
  .pw-feature-item span { font-size: 1.1rem; }

  /* Trust strip */
  .pw-trust-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* Page title (Molla legacy + ours) */
  .pw-page-title { padding: 24px 0 18px; }
  .pw-page-title h1 { font-size: 2.1rem; }
  .page-header h1.page-title { font-size: 2rem; }
  .page-header { padding: 24px 0 !important; }

  /* Product detail page */
  .pw-pdp { padding: 2rem 0 3.2rem; }
  .pw-pdp-img-main { aspect-ratio: 3 / 4; }
  .pw-pdp-thumb { width: 6.4rem; height: 6.4rem; }
  .pw-pdp-title { font-size: 1.9rem; }
  .pw-pdp-newprice { font-size: 2.4rem; }
  .pw-pdp-info { padding-left: 0; margin-top: 2rem; }
  .pw-pdp-tabnav-item { padding: 1rem 1.4rem; font-size: 1.2rem; }
  .pw-dims-grid { grid-template-columns: repeat(2, 1fr); }
  .pw-pdp-alsolike-grid { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }

  /* Cart page */
  .pw-cart-item { gap: 14px; }
  .pw-cart-item-img { width: 90px; height: 110px; }
  .pw-cart-item-title { font-size: 1.3rem; }
  .pw-order-summary { padding: 18px; }

  /* Checkout */
  .pw-checkout-section { padding: 16px 14px; }
  .pw-form-grid { grid-template-columns: 1fr; }

  /* Footer — mobile beautified */
  .pw-footer { padding-top: 28px; }
  .pw-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  /* Brand — full width, centered, compact */
  .pw-footer-col.pw-footer-brand {
    grid-column: 1 / -1;
    text-align: center;
    padding: 24px 20px 20px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    display: flex; flex-direction: column; align-items: center;
  }
  .pw-footer-brand .pw-footer-logo { margin-bottom: 12px; }
  .pw-footer-brand .pw-footer-logo-img { height: 90px; padding: 8px 14px; }
  .pw-footer-brand .pw-footer-desc { font-size: 1.25rem; max-width: 280px; margin-bottom: 12px; }
  .pw-footer-brand .pw-footer-socials { justify-content: center; margin-top: 6px; }
  .pw-footer-brand .pw-footer-wa-btn { font-size: 1.25rem; padding: 8px 16px; margin-top: 12px; }

  /* Quick Links + Customer Service — 2-col side by side */
  .pw-footer-col:nth-child(2) {
    padding: 20px 16px 20px 20px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    border-right: 1px solid rgba(255,255,255,.06);
  }
  .pw-footer-col:nth-child(3) {
    padding: 20px 20px 20px 16px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  /* Get In Touch — full width, horizontal contact items */
  .pw-footer-col:last-child {
    grid-column: 1 / -1;
    padding: 20px 20px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .pw-footer-col:last-child .pw-footer-contact-list {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px;
  }
  .pw-footer-col:last-child .pw-footer-contact-list li:first-child {
    grid-column: 1 / -1;
  }
  .pw-footer-heading {
    font-size: 1.18rem; margin-bottom: 10px; padding-bottom: 8px;
  }
  .pw-footer-links li { margin-bottom: 6px; }
  .pw-footer-links a { font-size: 1.26rem; }
  .pw-footer-contact-list li { font-size: 1.22rem; margin-bottom: 8px; }
  .pw-footer-bottom-inner {
    padding: 14px 0; font-size: 1.15rem;
    flex-direction: column; text-align: center; gap: 4px;
  }

  /* Trust strip — 2x2 compact */
  .pw-trust { padding: 14px 0; }
  .pw-trust-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .pw-trust-item {
    padding: 10px 8px; font-size: 1.18rem;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .pw-trust-item:nth-child(2n) { border-right: none; }
  .pw-trust-item:nth-child(n+3) { border-bottom: none; }

  /* Account layout */
  .pw-account-layout { padding: 24px 0 40px; gap: 16px; }
  .pw-account-content { padding: 20px 16px; }
  .pw-account-sidebar { position: static; }

  /* Orders table scroll */
  .pw-orders-table-wrap { -webkit-overflow-scrolling: touch; }
  .pw-orders-table th, .pw-orders-table td { padding: 10px 10px; font-size: 1.2rem; }

  /* Login / forms */
  .pw-login-link { width: 36px; height: 36px; padding: 0; border: none; }
  .pw-login-label { display: none !important; }

  /* Buttons */
  .pw-btn-lg { padding: 11px 24px; font-size: 1.4rem; }
  .pw-btn { padding: 9px 18px; font-size: 1.3rem; }

  /* CTA strip */
  .pw-cta-strip { padding: 28px 0; }
  .pw-cta-inner { flex-direction: column; text-align: center; gap: 14px; }
  .pw-cta-inner h3 { font-size: 1.7rem; margin-bottom: 4px; }
  .pw-cta-inner p { font-size: 1.25rem; }

  /* Promo banner */
  .pw-promo-banner-strip { padding: 28px 0; }
  .pw-promo-banner-inner { flex-direction: column; text-align: center; gap: 20px; }
  .pw-promo-banner-text h3 { font-size: 1.7rem; }
  .pw-promo-banner-badge { display: none; }

  /* Testimonials */
  .pw-testimonial-card { padding: 24px 18px; }

  /* About page */
  .pw-about-hero { padding: 3.2rem 0; }
  .pw-about-hero-inner { grid-template-columns: 1fr; gap: 2.4rem; }
  .pw-about-hero-img img { height: 240px; }
  .pw-about-hero-heading { font-size: 2rem; }
  .pw-about-mv-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .pw-about-reviews-grid { grid-template-columns: 1fr; }

  /* Contact */
  .pw-contact-section { padding: 3.2rem 0; }
  .pw-contact-info-grid { grid-template-columns: 1fr; }
  .pw-contact-info-grid .pw-contact-card:last-child { grid-column: auto; }
  .pw-form-row { grid-template-columns: 1fr; }

  /* WA float + scroll top */
  .pw-wa-float { bottom: 68px; right: 14px; width: 46px; height: 46px; }
  .pw-scroll-top { bottom: 14px; right: 14px; }
}

/* ── Small mobile (≤575px) ───────────────────────────────── */
@media (max-width: 575px) {

  html { font-size: 9px; }

  /* Header actions — tighten gap */
  .pw-header-actions { gap: 0; }
  .pw-action-btn { width: 34px; height: 34px; }
  .pw-action-btn svg { width: 17px; height: 17px; }

  /* Promo bar — single line, very compact */
  .pw-promo { font-size: 10.5px; height: 30px; }
  .pw-promo-track { padding: 0 28px; }

  /* Product cards — keep 2-col but tighten */
  .pw-product-body { padding: 1rem 1rem; }
  .pw-product-title { font-size: 1.22rem; -webkit-line-clamp: 2; }
  .pw-product-price { font-size: 1.28rem; }

  /* Cart item stacked */
  .pw-cart-item { flex-direction: column; }
  .pw-cart-item-img { width: 100%; height: 180px; border-radius: var(--radius); }
  .pw-cart-item-footer { flex-direction: column; align-items: flex-start; gap: 10px; }
  .pw-cart-item-price { text-align: left; }

  /* Summary */
  .pw-summary-total { font-size: 1.52rem; }
  .pw-coupon-row { flex-wrap: wrap; }
  .pw-coupon-input { min-width: 0; flex: 1 1 140px; }

  /* PDP */
  .pw-pdp-img-main { aspect-ratio: 3 / 4; }
  .pw-pdp-thumb { width: 5.6rem; height: 5.6rem; }
  .pw-pdp-title { font-size: 1.7rem; }
  .pw-pdp-action { gap: .8rem; }
  .pw-pdp-action .input-spinner { flex: 0 0 35%; width: 35%; }
  .pw-pdp-qty-input { width: 100%; }
  .pw-pdp-atc { min-width: 0; padding: 1rem 1.4rem; font-size: 1.3rem; white-space: nowrap; }
  .pw-pdp-tabnav { gap: 0; }
  .pw-pdp-tabnav-item { padding: .9rem 1rem; font-size: 1.15rem; }
  .pw-pdp-alsolike-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  /* Section headings */
  .pw-section-head h2 { font-size: 1.8rem; }
  .pw-section-head { margin-bottom: 18px; }

  /* Hero */
  .pw-hero-caption { max-width: 95%; padding: 0 4%; }
  .pw-hero-caption__heading { font-size: 1.4rem; }
  .pw-hero-caption__text { display: none; } /* hide sub-text on very small to avoid clutter */

  /* Features — 1 col */
  .pw-features-grid { grid-template-columns: 1fr 1fr; }

  /* Category grid — 2 col */
  .pw-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .pw-cat-name { font-size: 1.25rem; padding: 10px 6px; }

  /* Home sections */
  .pw-home-section { padding: 28px 0; }
  .pw-home-section.pw-cat-section { padding: 28px 0; }

  /* Checkout nav steps */
  .pw-checkout-section-title { font-size: 1.45rem; gap: 8px; }
  .pw-checkout-step { width: 26px; height: 26px; font-size: 1.2rem; }

  /* Footer */
  .pw-footer-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .pw-footer-col.pw-footer-brand { grid-column: 1 / -1; }
  .pw-footer-col:last-child { grid-column: 1 / -1; }
  .pw-footer { padding-top: 26px; }

  /* Account & orders */
  .pw-account-layout { padding: 18px 0 30px; }
  .pw-account-content { padding: 16px 12px; }
  .pw-account-content-title { font-size: 1.5rem; }
  .pw-orders-btn { font-size: 1.1rem; padding: 4px 8px; }

  /* Toolbar (product listing) */
  .pw-toolbar { flex-direction: column; align-items: flex-start; padding: 12px 14px; gap: 8px; }
  .pw-toolbar-sort { width: 100%; }
  .pw-sort-select { flex: 1; width: 100%; }

  /* Sub-cat pills */
  .pw-sub-cats { gap: 6px; }
  .pw-sub-cat-pill { padding: 5px 12px; font-size: 1.2rem; }

  /* Page title */
  .pw-page-title h1 { font-size: 1.85rem; }
  .page-header h1.page-title { font-size: 1.75rem; }

  /* Pagination */
  .pw-pagination-wrap .pagination .page-link { padding: 6px 10px; font-size: 1.2rem; }
}

/* ── Extra small (≤390px) ────────────────────────────────── */
@media (max-width: 390px) {

  html { font-size: 8.5px; }

  .pw-header-inner { height: 60px; }
  .pw-logo img { height: 45px; }
  .pw-action-btn { width: 30px; height: 30px; }
  .pw-action-btn svg { width: 16px; height: 16px; }
  .pw-header-actions { gap: 0; }
  .pw-hamburger { width: 34px; height: 34px; }

  /* 2-col product grid stays but tighter */
  .pw-product-grid .col-6 { padding-left: 5px; padding-right: 5px; }
  .row { margin-left: -5px; margin-right: -5px; }
  .row > [class*='col-'] { padding-left: 5px; padding-right: 5px; }

  /* PDP action stays in a row on mobile too */
  .pw-pdp-action { flex-direction: row; flex-wrap: nowrap; }
  .pw-pdp-atc { min-width: 0; white-space: nowrap; font-size: 1.2rem; padding: .9rem 1rem; }
  .pw-pdp-action .input-spinner { flex: 0 0 35%; width: 35%; }
  .pw-pdp-qty-input { width: 100%; }

  /* Cart panel */
  .pw-cart-panel { max-height: 85vh; }

  /* Section heading */
  .pw-section-head h2 { font-size: 1.6rem; }

  /* Footer bottom */
  .pw-footer-bottom-inner { gap: 6px; font-size: 1.1rem; }

  /* WA + scroll */
  .pw-wa-float { width: 42px; height: 42px; bottom: 62px; right: 10px; }
  .pw-checkout-alert {
    margin-bottom: 1.4rem;
    border-radius: .9rem;
    border: 1px solid #edd6b8;
    background: #fff7ea;
    color: #7b5f3f;
    padding: .9rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .8rem;
    font-size: 1.2rem;
    font-weight: 600;
  }
  .pw-checkout-alert--warn {
    border-color: #f1cf98;
    background: #fff6e6;
    color: #80591c;
  }
  .pw-checkout-alert--ok {
    border-color: #b7e1c2;
    background: #edf8f1;
    color: #286640;
  }
  .pw-checkout-alert-btn {
    border: 1px solid currentColor;
    color: inherit;
    background: transparent;
    border-radius: 999px;
    font-size: 1.1rem;
    font-weight: 700;
    padding: .35rem .9rem;
    white-space: nowrap;
  }

  .pw-checkout-eta {
    margin-top: 1rem;
    border: 1px dashed #dfcaad;
    border-radius: .8rem;
    background: #fffaf2;
    padding: .8rem .95rem;
  }
  .pw-checkout-eta-label {
    display: block;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #8a7050;
    font-weight: 700;
  }
  .pw-checkout-eta-value {
    display: block;
    margin-top: .3rem;
    font-size: 1.18rem;
    color: #4f3f2c;
    font-weight: 600;
  }

  .pw-checkout-processing {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .42);
    z-index: 13000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.4rem;
  }
  .pw-checkout-processing-card {
    width: min(440px, 94vw);
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 18px 48px rgba(0,0,0,.22);
    padding: 1.4rem 1.2rem;
    text-align: center;
  }
  .pw-checkout-spinner {
    width: 3.2rem;
    height: 3.2rem;
    border: 3px solid #eadbc7;
    border-top-color: var(--primary);
    border-radius: 50%;
    margin: 0 auto .9rem;
    animation: pwSpin .8s linear infinite;
  }
  .pw-checkout-processing-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #2a2a2a;
  }
  .pw-checkout-processing-text {
    margin-top: .35rem;
    font-size: 1.15rem;
    color: #666;
  }

  @keyframes pwSpin {
    to { transform: rotate(360deg); }
  }

  @media (max-width: 576px) {
    .pw-checkout-alert {
      flex-direction: column;
      align-items: flex-start;
    }
  }
  .pw-scroll-top { width: 36px; height: 36px; bottom: 10px; right: 10px; }
}

/* ── Touch / hover cleanup ───────────────────────────────── */
@media (hover: none) {
  /* On touch devices, always show product actions overlay (no hover) */
  .pw-product-actions { opacity: 1; background: linear-gradient(transparent, rgba(0,0,0,.32)); }
  /* Disable Ken Burns on low-end devices */
  .owl-item.active .pw-hero-slide { animation: none; }
}

/* ══════════════════════════════════════════════════════════════
   35. AUTH — LOGIN / REGISTER
══════════════════════════════════════════════════════════════ */

.pw-auth-section {
  padding: 56px 0 72px;
  background: var(--light-bg, #f8f7f5);
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
}

.pw-auth-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 40px rgba(0,0,0,.08);
  max-width: 560px;
  margin: 0 auto;
  overflow: hidden;
}

/* ── Tab switcher ── */
.pw-auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  background: #f3f2f0;
}
.pw-auth-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 15px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-muted, #888);
  letter-spacing: .02em;
  transition: color .2s;
  position: relative;
  z-index: 1;
}
.pw-auth-tab svg { width: 16px; height: 16px; }
.pw-auth-tab.active { color: var(--primary); }
.pw-auth-tab-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 3px;
  background: var(--primary);
  border-radius: 3px 3px 0 0;
  transition: transform .28s cubic-bezier(.4,0,.2,1);
  z-index: 0;
}

/* ── Pane ── */
.pw-auth-pane {
  display: none;
  padding: 32px 36px 36px;
}
.pw-auth-pane.active { display: block; }

.pw-auth-pane-head { margin-bottom: 24px; }
.pw-auth-pane-head h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 4px;
}
.pw-auth-pane-head p {
  font-size: 1.35rem;
  color: var(--text-muted, #888);
  margin: 0;
}

/* ── Fields ── */
.pw-field-group {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pw-field-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.pw-field-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
}
.pw-field-label svg { width: 13px; height: 13px; opacity: .55; flex-shrink: 0; }
.pw-field {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1.5px solid var(--border, #e5e5e5);
  border-radius: 8px;
  font-size: 1.35rem;
  color: var(--text-dark);
  background: #fafafa;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.pw-field:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb, 193,39,45),.1);
  background: var(--white);
}
.pw-field-pw-wrap { position: relative; }
.pw-field-pw-wrap .pw-field { padding-right: 40px; }
.pw-pw-toggle {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted, #999);
}
.pw-pw-toggle svg { width: 16px; height: 16px; opacity: .45; }
.pw-field-err {
  font-size: 1.15rem;
  color: #e53935;
  min-height: 16px;
}

/* ── Auth alert message ── */
.pw-auth-alert {
  display: block;
  font-size: 1.3rem;
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 16px;
  background: #fff3f3;
  color: #c62828;
  border-left: 3px solid #e53935;
  display: none;
}
.pw-auth-alert:not(:empty) { display: block; }

/* ── Remember / forgot row ── */
.pw-auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.pw-forgot-link {
  font-size: 1.25rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}
.pw-forgot-link:hover { text-decoration: underline; }

/* ── Custom checkbox ── */
.pw-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 1.3rem;
  color: var(--text-muted, #666);
  user-select: none;
}
.pw-checkbox-label input[type=checkbox] { position: absolute; opacity: 0; width: 0; height: 0; }
.pw-checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border, #d0d0d0);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, border-color .15s;
}
.pw-checkbox-label input:checked + .pw-checkmark {
  background: var(--primary);
  border-color: var(--primary);
}
.pw-checkbox-label input:checked + .pw-checkmark::after {
  content: '';
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px,-1px);
  display: block;
}
.pw-policy-check { margin-bottom: 20px; }
.pw-policy-check a { color: var(--primary); text-decoration: none; }
.pw-policy-check a:hover { text-decoration: underline; }

/* ── Submit button ── */
.pw-auth-btn {
  width: 100%;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 2px 12px rgba(var(--primary-rgb, 193,39,45),.25);
}
.pw-auth-btn svg { width: 16px; height: 16px; }
.pw-auth-btn:hover {
  background: var(--primary-dark, #a31219);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(var(--primary-rgb, 193,39,45),.35);
}
.pw-auth-btn:active { transform: translateY(0); }

/* ── Switch link ── */
.pw-auth-switch {
  text-align: center;
  margin: 20px 0 0;
  font-size: 1.3rem;
  color: var(--text-muted, #888);
}
.pw-auth-switch-btn {
  background: none;
  border: none;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0 2px;
  text-decoration: underline;
}

/* ── Mobile ── */
@media (max-width: 575px) {
  .pw-auth-section { padding: 32px 0 48px; align-items: flex-start; }
  .pw-auth-card { border-radius: 12px; margin: 0 8px; }
  .pw-auth-pane { padding: 24px 20px 28px; }
  .pw-auth-pane-head h2 { font-size: 1.9rem; }
  .pw-field-row-2 { grid-template-columns: 1fr; gap: 0; }
  .pw-auth-tab { font-size: 1.3rem; padding: 13px 10px; gap: 5px; }
}

/* ── Global overflow guard (always last) ────────────────── */
@media (max-width: 991px) {
  /* Neutralise Bootstrap row bleed */
  .row { margin-left: 0; margin-right: 0; }
  .row > [class*='col-'] { padding-left: 10px; padding-right: 10px; }
  /* Cap every direct section/div to viewport */
  section, .pw-features-strip, .pw-trust, .pw-hero,
  .pw-footer, .pw-promo, .pw-cta-strip, .pw-promo-banner-strip {
    max-width: 100vw;
    overflow-x: clip;
  }
  /* Ensure owl carousels don't spill */
  .owl-carousel { max-width: 100%; overflow: hidden; }
  /* Feature & trust items must not push layout wider */
  .pw-feature-item, .pw-trust-item { min-width: 0; overflow: hidden; }
  .pw-feature-item strong, .pw-feature-item span,
  .pw-trust-item span { white-space: normal; overflow-wrap: break-word; word-break: break-word; }
}

/* ══════════════════════════════════════════════════════════════
   36. ORDER CONFIRMATION PAGE
══════════════════════════════════════════════════════════════ */

/* Generic page content wrapper (replaces old .page-content) */
.pw-page-content { padding: 48px 0 72px; background: var(--light-bg, #f8f7f5); min-height: 60vh; }

.pw-confirm-main { padding: 48px 0 72px; background: var(--light-bg, #f8f7f5); min-height: 70vh; }
.pw-confirm-wrap { max-width: 720px; margin: 0 auto; padding: 0 20px; }

/* Hero */
.pw-confirm-hero { text-align: center; padding: 48px 24px 40px; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--card-shadow); margin-bottom: 24px; }
.pw-confirm-icon-wrap { margin-bottom: 20px; }
.pw-confirm-checkmark { width: 72px; height: 72px; display: inline-block; }
.pw-confirm-circle { stroke-dasharray: 166; stroke-dashoffset: 166; animation: pwCircleDraw .6s cubic-bezier(.65,.05,.35,.95) .1s forwards; }
.pw-confirm-check { stroke-dasharray: 40; stroke-dashoffset: 40; animation: pwCheckDraw .4s ease .7s forwards; }
@keyframes pwCircleDraw { to { stroke-dashoffset: 0; } }
@keyframes pwCheckDraw { to { stroke-dashoffset: 0; } }
.pw-confirm-title { font-size: 2.6rem; font-weight: 800; color: var(--text-dark); margin: 0 0 8px; }
.pw-confirm-subtitle { font-size: 1.45rem; color: var(--text-muted); margin: 0 0 20px; }
.pw-confirm-order-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fdf6ef; border: 1.5px solid var(--primary-light, #f4c28f);
  color: var(--primary); border-radius: 30px;
  padding: 7px 18px; font-size: 1.35rem; font-weight: 700;
}
.pw-confirm-eta {
  margin-top: .9rem;
  display: inline-block;
  border: 1px dashed #dfcaad;
  background: #fffaf2;
  border-radius: 999px;
  color: #6f5331;
  font-size: 1.18rem;
  font-weight: 700;
  padding: .45rem 1rem;
}

/* Cards */
.pw-confirm-card {
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow); margin-bottom: 20px;
  overflow: hidden;
}
.pw-confirm-card--sm { flex: 1; min-width: 0; }
.pw-confirm-card-head {
  display: flex; align-items: center; gap: 9px;
  font-size: 1.45rem; font-weight: 700; color: var(--text-dark);
  padding: 16px 22px; border-bottom: 1.5px solid var(--border);
  background: #fafaf9;
}

/* Items */
.pw-confirm-items { padding: 0 22px; }
.pw-confirm-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.pw-confirm-item:last-child { border-bottom: none; }
.pw-confirm-item-img { width: 64px; height: 64px; flex-shrink: 0; border-radius: 10px; overflow: hidden; background: #f4f4f2; }
.pw-confirm-item-img img { width: 100%; height: 100%; object-fit: cover; }
.pw-confirm-item-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: #ccc; }
.pw-confirm-item-info { flex: 1; min-width: 0; }
.pw-confirm-item-name { font-size: 1.4rem; font-weight: 600; color: var(--text-dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 3px; }
.pw-confirm-item-meta { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 3px; }
.pw-confirm-item-qty { font-size: 1.2rem; color: var(--text-muted); }
.pw-confirm-item-price { font-size: 1.45rem; font-weight: 700; color: var(--text-dark); white-space: nowrap; flex-shrink: 0; }

/* Totals */
.pw-confirm-totals { padding: 16px 22px; background: #fafaf9; border-top: 1.5px solid var(--border); }
.pw-confirm-total-row { display: flex; justify-content: space-between; font-size: 1.35rem; color: var(--text-muted); padding: 5px 0; }
.pw-confirm-total-discount span:last-child { color: #2e9e4f; }
.pw-confirm-total-grand { font-size: 1.55rem; font-weight: 800; color: var(--text-dark); border-top: 1.5px solid var(--border); margin-top: 8px; padding-top: 12px; }

/* Meta grid */
.pw-confirm-meta-grid { display: flex; gap: 20px; margin-bottom: 20px; }

.pw-confirm-next-steps {
  margin-bottom: 1.8rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 1.1rem 1.2rem;
}
.pw-confirm-next-title {
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .8rem;
}
.pw-confirm-next-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
}
.pw-confirm-next-item {
  border: 1px dashed #eadcc9;
  border-radius: .8rem;
  background: #fffaf4;
  padding: .75rem .8rem;
  font-size: 1.15rem;
  color: #6f614e;
  display: flex;
  gap: .55rem;
  align-items: flex-start;
}
.pw-confirm-next-dot {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.pw-confirm-timeline {
  margin-bottom: 1.8rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 1rem 1.1rem;
}
.pw-confirm-timeline-row {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  gap: .7rem;
  align-items: center;
  padding: .5rem 0;
  border-bottom: 1px dashed #efe4d3;
}
.pw-confirm-timeline-row:last-child { border-bottom: none; }
.pw-confirm-timeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
}
.pw-confirm-timeline-label {
  font-size: 1.18rem;
  color: #5e5143;
  font-weight: 600;
}
.pw-confirm-timeline-time {
  font-size: 1.12rem;
  color: #857666;
}

.pw-confirm-reco {
  margin-bottom: 1.6rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 1rem;
}
.pw-confirm-reco-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .8rem;
}
.pw-confirm-reco-item {
  text-decoration: none;
  border: 1px solid #efe2cf;
  border-radius: .8rem;
  background: #fffaf3;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pw-confirm-reco-img {
  display: block;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #f5ede2;
}
.pw-confirm-reco-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pw-confirm-reco-title {
  padding: .6rem .65rem .2rem;
  font-size: 1.1rem;
  line-height: 1.35;
  color: #4d4338;
  font-weight: 600;
}
.pw-confirm-reco-price {
  padding: 0 .65rem .65rem;
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 700;
}

.pw-order-reco {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem;
}

/* Address */
.pw-confirm-addr { padding: 16px 22px; }
.pw-confirm-addr-name { font-size: 1.45rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.pw-confirm-addr-line { display: flex; align-items: flex-start; gap: 6px; font-size: 1.3rem; color: var(--text-muted); line-height: 1.7; }
.pw-confirm-addr-line svg { flex-shrink: 0; margin-top: 4px; }
.pw-confirm-addr-landmark { font-style: italic; }

/* Payment */
.pw-confirm-pay-info { padding: 16px 22px; }
.pw-confirm-pay-row { display: flex; align-items: center; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--border); }
.pw-confirm-pay-row:last-child { border-bottom: none; }
.pw-confirm-pay-label { font-size: 1.2rem; color: var(--text-muted); min-width: 60px; flex-shrink: 0; }
.pw-confirm-pay-val { font-size: 1.3rem; color: var(--text-dark); font-weight: 600; }
.pw-confirm-pay-method { display: flex; align-items: center; gap: 6px; }
.pw-confirm-pay-status { display: inline-block; font-size: 1.2rem; font-weight: 700; padding: 2px 12px; border-radius: 20px; }
.pw-confirm-pay-status--paid { background: #d4f5e0; color: #1a7a3b; }
.pw-confirm-pay-status--pending { background: #fff3e0; color: #b05a00; }

/* Actions */
.pw-confirm-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }
.pw-confirm-btn-orders, .pw-confirm-btn-shop { padding: 13px 32px; font-size: 1.45rem; display: inline-flex; align-items: center; gap: 8px; }
.pw-confirm-btn-detail {
  padding: 13px 24px;
  font-size: 1.35rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #d9c7af;
  background: #fff8ef;
  color: #6b4f2a;
}

/* Mobile */
@media (max-width: 600px) {
  .pw-confirm-next-grid { grid-template-columns: 1fr; }
  .pw-confirm-reco-grid { grid-template-columns: repeat(2, 1fr); }
  .pw-confirm-timeline-row { grid-template-columns: 12px 1fr; }
  .pw-confirm-timeline-time { grid-column: 2 / 3; }
  .pw-confirm-meta-grid { flex-direction: column; }
  .pw-confirm-hero { padding: 34px 18px 28px; }
  .pw-confirm-title { font-size: 2rem; }
  .pw-confirm-item-img { width: 50px; height: 50px; }
  .pw-confirm-btn-orders, .pw-confirm-btn-shop { width: 100%; justify-content: center; }
  .pw-confirm-btn-detail { width: 100%; justify-content: center; }
  .pw-confirm-actions { flex-direction: column; }
}

/* ── Phase 4: Orders & Post-purchase UX ───────────────────────────── */
.pw-orders-toolbar {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: .9rem;
  margin-bottom: 1.2rem;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 220px auto;
  gap: .8rem;
  align-items: center;
}
.pw-orders-toolbar-meta {
  justify-self: end;
  font-size: 1.15rem;
  color: #7f7467;
  font-weight: 600;
}

.pw-od-progress-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 1rem;
}
.pw-od-progress {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .6rem;
}
.pw-od-progress-step {
  text-align: center;
}
.pw-od-progress-dot {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 1px solid #dcc9ad;
  background: #fffaf2;
  color: #8a7250;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.08rem;
  font-weight: 700;
}
.pw-od-progress-label {
  display: block;
  margin-top: .35rem;
  font-size: 1.08rem;
  color: #7a6b58;
  font-weight: 600;
}
.pw-od-progress-step.is-done .pw-od-progress-dot {
  border-color: #b9dfc3;
  background: #eaf8ef;
  color: #2d7a45;
}
.pw-od-progress-step.is-current .pw-od-progress-dot {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}
.pw-od-progress-note {
  margin-top: .8rem;
  font-size: 1.15rem;
  color: #6e6255;
}
.pw-od-progress-note--cancelled {
  color: #a23d3d;
  font-weight: 700;
}

.pw-od-help {
  border: 1px dashed #e1cfb7;
  border-radius: .9rem;
  background: #fffaf3;
  padding: .95rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .8rem;
}
.pw-od-help-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #5f4a30;
}
.pw-od-help-actions {
  display: flex;
  gap: .6rem;
}

@media (max-width: 767px) {
  .pw-orders-toolbar {
    grid-template-columns: 1fr;
  }
  .pw-orders-toolbar-meta {
    justify-self: start;
  }
  .pw-od-progress {
    grid-template-columns: repeat(3, 1fr);
  }
  .pw-od-help {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* --------------------------------------------------------------
   37. ERROR PAGES (404 / 500)
-------------------------------------------------------------- */

.pw-error-section { display: flex; align-items: center; justify-content: center; min-height: 70vh; padding: 48px 20px; background: var(--light-bg, #f8f7f5); }
.pw-error-wrap { text-align: center; max-width: 520px; }
.pw-error-code { font-size: clamp(5rem, 18vw, 12rem); font-weight: 900; line-height: 1; color: var(--primary); opacity: .18; letter-spacing: -.04em; margin-bottom: -20px; }
.pw-error-icon { margin-bottom: 20px; }
.pw-error-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: var(--text-dark); margin: 0 0 12px; }
.pw-error-message { font-size: 1.45rem; color: var(--text-muted); line-height: 1.7; margin: 0 0 32px; }
.pw-error-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.pw-error-actions .pw-btn { padding: 12px 28px; font-size: 1.4rem; display: inline-flex; align-items: center; gap: 7px; }
@media (max-width: 480px) {
  .pw-error-actions { flex-direction: column; }
  .pw-error-actions .pw-btn { width: 100%; justify-content: center; }
}


/* --------------------------------------------------------------
   38. BLOG & FAQ PAGES
-------------------------------------------------------------- */

/* â”€â”€ Blog List â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pw-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.pw-blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.pw-blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.pw-blog-card-img-wrap {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #f3ece3;
}
.pw-blog-card-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .45s ease;
}
.pw-blog-card:hover .pw-blog-card-img-wrap img { transform: scale(1.05); }
.pw-blog-card-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pw-blog-cat {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--primary);
  background: var(--primary-light);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.pw-blog-card-title {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.45;
  margin: 0 0 12px;
  flex: 1;
}
.pw-blog-card-title a { color: inherit; text-decoration: none; }
.pw-blog-card-title a:hover { color: var(--primary); }
.pw-blog-card-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.pw-blog-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.pw-blog-card-meta svg { flex-shrink: 0; opacity: .7; }
.pw-blog-card-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  margin-top: 14px;
  transition: gap var(--transition);
}
.pw-blog-card-read:hover { gap: 10px; color: var(--primary-dark); }
.pw-blog-empty {
  text-align: center; padding: 64px 20px;
  color: var(--text-muted); font-size: 1.5rem;
}

/* ── Ecom UX Upgrade (listing + PDP + checkout) ───────────────────── */
.pw-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-bottom: 1.4rem;
}
.pw-filter-chip {
  border: 1px solid #eadcc9;
  border-radius: 999px;
  background: #fff8ee;
  color: #7a5a35;
  font-size: 1.16rem;
  font-weight: 600;
  padding: .45rem 1rem;
  line-height: 1.2;
  cursor: pointer;
}
.pw-filter-chip--clear {
  background: transparent;
  border-color: #e3c8a2;
  color: #a8572f;
  text-decoration: none;
}
.pw-filter-chip--clear:hover {
  background: #fff1de;
  color: #8f3f1f;
}

.pw-product-badge--arrival {
  background: #103f91 !important;
  color: #fff !important;
}
.pw-product-badge--best {
  background: #ff7a00 !important;
  color: #fff !important;
}
.pw-product-meta-row {
  margin-top: .9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
}
.pw-product-stock {
  font-size: 1.12rem;
  font-weight: 700;
  padding: .2rem .65rem;
  border-radius: 999px;
}
.pw-product-stock--in {
  color: #1e7f3e;
  background: #eaf8ee;
}
.pw-product-stock--low {
  color: #9d5a00;
  background: #fff2df;
}
.pw-product-stock--out {
  color: #a43636;
  background: #fdecec;
}
.pw-product-variant-cue {
  font-size: 1.08rem;
  color: #777;
  white-space: nowrap;
}

.pw-pdp-atc--disabled {
  background: #ddd !important;
  color: #999 !important;
  cursor: not-allowed !important;
  pointer-events: none;
  transform: none !important;
}
.pw-pdp-variant-summary {
  margin-top: .6rem;
  font-size: 1.18rem;
  color: #555;
  font-weight: 600;
}
.pw-pdp-stock-note {
  margin-top: .5rem;
  font-size: 1.18rem;
  font-weight: 700;
}
.pw-pdp-stock-note--in { color: #1e7f3e; }
.pw-pdp-stock-note--low { color: #9d5a00; }
.pw-pdp-stock-note--out { color: #a43636; }
.pw-pdp-trust {
  margin: 1.4rem 0 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
}
.pw-pdp-trust-item {
  font-size: 1.12rem;
  color: #666;
  border: 1px solid #efe2d0;
  border-radius: .8rem;
  background: #fffaf2;
  text-align: center;
  padding: .8rem .6rem;
  font-weight: 600;
}

.pw-pdp-assurance {
  margin-bottom: 2rem;
  border: 1px solid #eee0cc;
  border-radius: 1rem;
  background: #fffaf3;
  overflow: hidden;
}
.pw-pdp-assurance-item {
  font-size: 1.2rem;
  color: #6b5b45;
  padding: .9rem 1.1rem;
  border-bottom: 1px dashed #efdec6;
}
.pw-pdp-assurance-item:last-child {
  border-bottom: none;
}

.pw-pdp-sticky-buy {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1090;
  background: rgba(255, 255, 255, .96);
  border-top: 1px solid #eadcc9;
  box-shadow: 0 -8px 24px rgba(0,0,0,.08);
  backdrop-filter: blur(4px);
  display: none;
}
.pw-pdp-sticky-buy-inner {
  min-height: 6.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.pw-pdp-sticky-price-wrap {
  min-width: 0;
}
.pw-pdp-sticky-label {
  font-size: 1.05rem;
  color: #7d6b53;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 700;
}
.pw-pdp-sticky-price {
  font-size: 1.8rem;
  color: var(--primary);
  font-weight: 800;
  line-height: 1.1;
}
.pw-pdp-sticky-btn {
  border: none;
  border-radius: .8rem;
  background: var(--primary);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 1rem 1.6rem;
  min-width: 13.6rem;
}
.pw-pdp-sticky-btn--disabled,
.pw-pdp-sticky-btn:disabled {
  background: #d9d9d9;
  color: #888;
}

.pw-summary-trust {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.pw-summary-trust span {
  font-size: 1.12rem;
  color: #666;
  position: relative;
  padding-left: 1.2rem;
}
.pw-summary-trust span::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--primary);
}
.pw-summary-trust--checkout {
  border-top: 1px dashed #ecd6b8;
  margin-top: .9rem;
  padding-top: .8rem;
}

@media (max-width: 575px) {
  .pw-pdp-trust { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .pw-pdp { padding-bottom: 8.4rem; }
  .pw-pdp-sticky-buy { display: block; }
}

/* â”€â”€ Blog Detail â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pw-blog-detail-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 36px;
  align-items: start;
}
.pw-blog-detail-main {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.pw-blog-detail-hero {
  width: 100%;
  aspect-ratio: 16/7;
  overflow: hidden;
  background: #f3ece3;
}
.pw-blog-detail-hero img { width: 100%; height: 100%; object-fit: cover; }
.pw-blog-detail-content { padding: 32px 36px 40px; }
.pw-blog-detail-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.35;
  margin: 0 0 16px;
}
.pw-blog-detail-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 1.28rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1.5px solid var(--border);
}
.pw-blog-detail-meta span { display: inline-flex; align-items: center; gap: 6px; }
.pw-blog-detail-body {
  font-size: 1.5rem;
  line-height: 1.8;
  color: var(--text-mid);
}
.pw-blog-detail-body img { border-radius: var(--radius); max-width: 100%; margin: 16px 0; }
.pw-blog-detail-body h2,
.pw-blog-detail-body h3,
.pw-blog-detail-body h4 { color: var(--text-dark); margin-top: 1.6em; }
.pw-blog-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  margin-bottom: 24px;
}
.pw-blog-back:hover { color: var(--primary-dark); }

/* â”€â”€ Blog Sidebar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pw-blog-sidebar-widget {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 24px;
}
.pw-blog-sidebar-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  padding: 16px 20px;
  border-bottom: 1.5px solid var(--border);
  background: #fafaf9;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.pw-blog-latest-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: background var(--transition);
}
.pw-blog-latest-item:last-child { border-bottom: none; }
.pw-blog-latest-item:hover { background: #fdf6ef; }
.pw-blog-latest-img {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #f3ece3;
}
.pw-blog-latest-img img { width: 100%; height: 100%; object-fit: cover; }
.pw-blog-latest-info { flex: 1; min-width: 0; }
.pw-blog-latest-cat { font-size: 1.05rem; color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; display: block; margin-bottom: 4px; }
.pw-blog-latest-ttl { font-size: 1.28rem; font-weight: 600; color: var(--text-dark); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* â”€â”€ FAQ â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pw-faq-list { max-width: 800px; margin: 0 auto; }
.pw-faq-item {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 12px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.pw-faq-item.pw-faq-open {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}
.pw-faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 22px;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color var(--transition), background var(--transition);
}
.pw-faq-q:hover { color: var(--primary); background: #fdf6ef; }
.pw-faq-item.pw-faq-open .pw-faq-q { color: var(--primary); background: #fdf6ef; }
.pw-faq-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
}
.pw-faq-item.pw-faq-open .pw-faq-icon { background: var(--primary); color: #fff; transform: rotate(45deg); }
.pw-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.pw-faq-a-inner {
  padding: 16px 22px 20px;
  font-size: 1.45rem;
  line-height: 1.75;
  color: var(--text-mid);
  border-top: 1px solid var(--border);
}
.pw-faq-a-inner p:last-child { margin-bottom: 0; }
.pw-faq-empty {
  text-align: center; padding: 64px 20px;
  color: var(--text-muted); font-size: 1.5rem;
}

/* â”€â”€ Responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 900px) {
  .pw-blog-detail-layout { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .pw-blog-grid { grid-template-columns: 1fr; }
  .pw-blog-detail-content { padding: 22px 20px 28px; }
  .pw-faq-q { font-size: 1.38rem; padding: 15px 16px; }
  .pw-faq-a-inner { padding: 14px 16px 18px; font-size: 1.35rem; }
}

/* ═══════════════════════════════════════════════════════════════════
   39 · Static / Policy Pages & Collaborations
   ═══════════════════════════════════════════════════════════════════ */

/* ── Static Body (CMS pages, policy pages) ────────────────────── */
.pw-static-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 32px 0 56px;
  font-size: 1.48rem;
  line-height: 1.85;
  color: var(--text-body);
}
.pw-static-body h2 {
  font-size: 2rem; font-weight: 700; color: var(--text-dark);
  margin: 0 0 16px; padding-top: 8px;
}
.pw-static-body h3 {
  font-size: 1.65rem; font-weight: 600; color: var(--text-dark);
  margin: 28px 0 10px;
}
.pw-static-body p { margin: 0 0 14px; }
.pw-static-body ul,
.pw-static-body ol {
  padding-left: 24px; margin: 0 0 16px;
}
.pw-static-body li { margin-bottom: 6px; }
.pw-static-body a { color: var(--accent); text-decoration: underline; }
.pw-static-body a:hover { opacity: 0.85; }
.pw-static-body img { max-width: 100%; height: auto; border-radius: 8px; margin: 16px 0; }

/* ── Select dropdown ───────────────────────────────────────── */
.pw-select {
  padding: 8px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 1.31rem;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  cursor: pointer;
  transition: border-color var(--transition);
}
.pw-select:focus { border-color: var(--primary); }

/* ── Form input (generic) ─────────────────────────────────── */
.pw-input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 1.38rem;
  color: var(--text-dark);
  background: var(--bg-light);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.pw-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(204,153,102,.15);
  background: var(--white);
}
.pw-input::placeholder { color: var(--text-muted); }
textarea.pw-input { resize: vertical; min-height: 100px; }

/* ── Product thumb (bulk-order cards) ─────────────────────── */
.pw-product-thumb {
  display: block; position: relative; aspect-ratio: 3/4; overflow: hidden;
}
.pw-product-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.pw-product-card:hover .pw-product-thumb img { transform: scale(1.04); }

/* ── Product info (bulk-order card body) ──────────────────── */
.pw-product-info { padding: 16px 18px; }

/* ── Price display ────────────────────────────────────────── */
.pw-price-now {
  font-size: 1.52rem; font-weight: 700; color: var(--primary);
}

/* ── Custom pagination (non-Bootstrap) ────────────────────── */
.pw-pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 4px; list-style: none; padding: 0; margin: 0;
}
.pw-pagination li a {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 36px; height: 36px; padding: 4px 12px;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-main); font-size: 1.28rem; font-weight: 500;
  color: var(--text-body); text-decoration: none;
  transition: all var(--transition);
}
.pw-pagination li a:hover {
  background: var(--primary); color: var(--white); border-color: var(--primary);
}
.pw-pagination li.active a {
  background: var(--primary); color: var(--white); border-color: var(--primary);
  pointer-events: none;
}
.pw-pagination li.disabled a {
  opacity: .45; pointer-events: none;
}

/* ── Toolbar extras ───────────────────────────────────────────── */
.pw-toolbar-count {
  font-size: 1.31rem; color: var(--text-muted);
}

/* ── Collaborations / Personalised Projects ───────────────────── */
.pw-collab-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 32px 0 56px;
}
.pw-collab-image img {
  width: 100%; border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.pw-collab-body h2 {
  font-size: 2rem; font-weight: 700; color: var(--text-dark);
  margin: 0 0 16px;
}
.pw-collab-body p {
  font-size: 1.48rem; line-height: 1.8; color: var(--text-body); margin: 0 0 14px;
}

/* ── Modal (generic reusable) ─────────────────────────────────── */
.pw-modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.45);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.pw-modal {
  background: #fff; border-radius: 12px;
  width: 100%; max-width: 520px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  overflow: hidden;
}
.pw-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; border-bottom: 1px solid var(--border);
}
.pw-modal-header h3 { font-size: 1.6rem; font-weight: 600; margin: 0; }
.pw-modal-close {
  background: none; border: none; font-size: 2.2rem;
  cursor: pointer; color: var(--text-muted); line-height: 1;
}
.pw-modal-close:hover { color: var(--text-dark); }
.pw-modal-body { padding: 24px; }

@media (max-width: 768px) {
  .pw-collab-wrap { grid-template-columns: 1fr; gap: 28px; }
  .pw-static-body { padding: 24px 0 40px; font-size: 1.4rem; }
  .pw-pagination li a { min-width: 32px; height: 32px; padding: 4px 8px; font-size: 1.18rem; }
  .pw-price-now { font-size: 1.38rem; }
  .pw-product-info { padding: 12px 14px; }
/* ── CATEGORY & SUB-CATEGORY GRID & CAROUSEL ──────────────────────────── */
.pw-cat-section, .pw-subcat-section {
  background: var(--bg-light);
  position: relative;
  padding: 64px 0;
}
.pw-subcat-section {
  background: var(--white);
}

.pw-cat-grid {
  display: grid;
  grid-template-columns: repeat(var(--pw-cat-cols, 4), 1fr);
  gap: 20px;
}
.pw-cat-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.pw-cat-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.pw-cat-grid--cols-4 { grid-template-columns: repeat(4, 1fr); }
.pw-cat-grid--cols-5 { grid-template-columns: repeat(5, 1fr); }
.pw-cat-grid--cols-6 { grid-template-columns: repeat(6, 1fr); }
.pw-cat-grid--cols-8 { grid-template-columns: repeat(8, 1fr); }

.pw-cat-card {
  display: block;
  text-decoration: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.pw-cat-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(204,153,102,0.4);
}
.pw-cat-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-light);
}
.pw-cat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.pw-cat-card:hover .pw-cat-img-wrap img {
  transform: scale(1.05);
}
.pw-cat-name {
  display: block;
  text-align: center;
  padding: 13px 8px;
  font-size: 1.36rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color var(--transition);
}
.pw-cat-card:hover .pw-cat-name {
  color: var(--primary);
}

.pw-subcat-card-body {
  padding: 10px 8px 14px;
  text-align: center;
}
.pw-subcat-card .pw-cat-name {
  padding: 0;
  margin-bottom: 2px;
}
.pw-subcat-parent {
  display: block;
  font-size: 1.15rem;
  color: var(--text-muted);
  font-weight: 500;
}
.pw-cat-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

/* Category & Sub-Category Carousel */
.pw-cat-carousel {
  position: relative;
}
.pw-cat-carousel .owl-nav {
  position: absolute;
  top: -55px;
  right: 0;
  display: flex;
  gap: 8px;
}
.pw-cat-carousel .owl-nav button {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: var(--white) !important;
  border: 1px solid var(--border) !important;
  color: var(--text-dark) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all .2s ease !important;
  box-shadow: var(--shadow-sm) !important;
  font-size: 18px !important;
}
.pw-cat-carousel .owl-nav button:hover {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #fff !important;
}

@media (max-width: 1199px) {
  .pw-cat-grid--cols-6, .pw-cat-grid--cols-8 { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 991px) {
  .pw-cat-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .pw-cat-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
  .pw-cat-carousel .owl-nav { top: -48px; }
}
@media (max-width: 575px)  {
  .pw-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pw-cat-name { font-size: 1.22rem; padding: 10px 4px; }
  .pw-cat-section, .pw-subcat-section { padding: 40px 0; }
}

