/* =========================================================
   Purple Wine — The Online Boutique
   Brand palette derived from logo/thank-you-card artwork
========================================================= */

:root{
  --pw-purple-dark:   #3a1152;
  --pw-purple:         #5c1f77;
  --pw-purple-mid:      #6f2a8c;
  --pw-purple-light:   #9c5bb8;
  --pw-gold:           #b8892f;
  --pw-gold-light:     #d4af5f;
  --pw-cream:          #fdfaf3;
  --pw-cream-dark:     #f5ecd8;
  --pw-white:          #ffffff;
  --pw-text:           #2c1638;
  --pw-text-light:     #756882;
  --radius:            14px;
  --shadow:            0 10px 34px rgba(58,17,82,0.10);
}

*{box-sizing:border-box;margin:0;padding:0;}

body{
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  color: var(--pw-text);
  background: var(--pw-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,.font-serif{
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.01em;
}

.font-script{
  font-family: 'Dancing Script', cursive;
}

.font-eyebrow{
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
}

a{ text-decoration:none; color:inherit; }
ul{ list-style:none; }
img{ max-width:100%; display:block; }

.pw-icon{ width: 22px; height: 22px; flex-shrink:0; }
.pw-icon-sm{ width: 17px; height: 17px; }
.pw-icon-md{ width: 28px; height: 28px; }
.pw-icon-lg{ width: 40px; height: 40px; }
.pw-icon-xl{ width: 56px; height: 56px; }

.container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor:pointer;
  border: 2px solid transparent;
  transition: all .25s ease;
}
.btn-primary{
  background: linear-gradient(135deg, var(--pw-purple) 0%, var(--pw-purple-mid) 100%);
  color: var(--pw-white);
  box-shadow: 0 8px 20px rgba(92,31,119,0.3);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 12px 24px rgba(92,31,119,0.4); }
.btn-gold{
  background: linear-gradient(135deg, var(--pw-gold) 0%, var(--pw-gold-light) 100%);
  color: var(--pw-purple-dark);
}
.btn-gold:hover{ transform: translateY(-2px); }
.btn-outline{
  background: transparent;
  border-color: var(--pw-purple);
  color: var(--pw-purple);
}
.btn-outline:hover{ background: var(--pw-purple); color:#fff; }
.btn-block{ width:100%; }
.btn-sm{ padding: 8px 18px; font-size: 13px; }

/* ---------- Top bar & Header ---------- */
.pw-topbar{
  background: var(--pw-purple-dark);
  color: var(--pw-cream);
  font-size: 13px;
  padding: 6px 0;
  text-align:center;
  letter-spacing:.5px;
}

.pw-header{
  background: var(--pw-cream);
  border-bottom: 1px solid rgba(92,31,119,0.15);
  position: sticky;
  top:0;
  z-index: 100;
}
.pw-header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 24px;
  padding: 10px 0;
}
.pw-logo{
  display:flex;
  align-items:center;
  flex-shrink:0;
}
.pw-logo-img{
  height: 58px;
  width: auto;
  max-width: none;
  object-fit: contain;
  display:block;
}
/* Legacy text-logo classes kept for any views that still reference them */
.pw-logo-text .brand{
  font-family:'Dancing Script', cursive;
  font-size:30px;
  color: var(--pw-purple);
  line-height:1;
}
.pw-logo-text .tagline{
  font-size:10px;
  letter-spacing:2px;
  text-transform:uppercase;
  color: var(--pw-gold);
  font-weight:600;
}

.pw-nav{ display:flex; gap:30px; }
.pw-nav a{
  font-size:14.5px;
  font-weight:500;
  color: var(--pw-text);
  position:relative;
  padding: 4px 0;
}
.pw-nav a:hover, .pw-nav a.active{ color: var(--pw-purple); }
.pw-nav a.active::after{
  content:'';
  position:absolute; left:0; right:0; bottom:-4px;
  height:2px; background: var(--pw-gold);
}

.pw-header-actions{ display:flex; align-items:center; gap:22px; }
.pw-icon-link{ position:relative; color: var(--pw-purple); display:flex; align-items:center; }
.pw-icon-link .pw-icon{ width:23px; height:23px; }
.pw-cart-count{
  position:absolute; top:-9px; right:-11px;
  background: var(--pw-gold);
  color: var(--pw-white);
  font-size:10.5px; font-weight:600;
  width:18px;height:18px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-family:'Jost',sans-serif;
}
.pw-search-form{ display:flex; align-items:center; }
.pw-search-form input{
  border:1px solid rgba(92,31,119,0.22);
  border-right:none;
  border-radius: 50px 0 0 50px;
  padding: 9px 16px;
  font-size:13.5px;
  font-family:'Jost',sans-serif;
  outline:none;
  width: 170px;
  background: var(--pw-white);
}
.pw-search-form button{
  border:1px solid var(--pw-purple);
  background:var(--pw-purple);
  color:#fff;
  border-radius: 0 50px 50px 0;
  padding: 0 15px;
  cursor:pointer;
  display:flex; align-items:center;
}
.pw-search-form button .pw-icon{ width:16px; height:16px; }

.pw-mobile-toggle{ display:none; align-items:center; justify-content:center; color:var(--pw-purple); background:none; border:none; cursor:pointer; }
.pw-mobile-toggle .pw-icon{ width:24px; height:24px; }

/* ---------- Hero: framed slider ---------- */
.pw-hero{
  position:relative;
  padding: 0 0 0;
  background: var(--pw-cream);
}
.pw-hero-frame{
  position:relative;
  width: 100%;
  margin: 0;
  padding: 56px 0 48px;
  border-top: 1px solid rgba(184,137,47,0.35);
  border-bottom: 1px solid rgba(184,137,47,0.35);
  background:
    radial-gradient(circle at 92% 12%, rgba(184,137,47,0.10), transparent 40%),
    radial-gradient(circle at 4% 92%, rgba(92,31,119,0.08), transparent 42%),
    linear-gradient(180deg, #fffefb 0%, var(--pw-cream) 100%);
  overflow:hidden;
}
.pw-hero-frame::before{
  /* inner hairline so the top/bottom border reads as a deliberate double frame */
  content:'';
  position:absolute; left:0; right:0; top: 10px; bottom: 10px;
  border-top: 1px solid rgba(184,137,47,0.22);
  border-bottom: 1px solid rgba(184,137,47,0.22);
  pointer-events:none;
}
.pw-corner{
  position:absolute;
  width: 72px; height: 64px;
  color: var(--pw-gold);
  opacity: 0.5;
  z-index:1;
}
.pw-corner .pw-icon{ width:100%; height:100%; }
.pw-corner-tl{ top:16px; left:20px; }
.pw-corner-tr{ top:16px; right:20px; transform: scaleX(-1); }
.pw-corner-bl{ bottom:16px; left:20px; transform: scaleY(-1); }
.pw-corner-br{ bottom:16px; right:20px; transform: scale(-1,-1); }

.pw-hero-slider{ position:relative; z-index:2; min-height: 380px; }
.pw-slide{
  position:absolute; inset:0;
  opacity:0; visibility:hidden;
  transition: opacity .7s ease;
}
.pw-slide.active{ opacity:1; visibility:visible; position:relative; }

.pw-hero-inner{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  align-items:center;
}
.pw-hero-eyebrow{
  display:inline-block;
  color: var(--pw-gold);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size:21px;
  letter-spacing:.5px;
  margin-bottom:12px;
}
.pw-hero h1{
  font-size: 46px;
  font-weight: 600;
  color: var(--pw-purple-dark);
  line-height:1.18;
  margin-bottom: 16px;
}
.pw-hero h1 span{
  font-family:'Dancing Script', cursive;
  font-weight: 700;
  color: var(--pw-purple);
  font-size: 1.15em;
}
.pw-hero p{
  color: var(--pw-text-light);
  font-size:15.5px;
  max-width: 440px;
  margin-bottom: 28px;
}
.pw-hero-actions{ display:flex; gap:16px; flex-wrap:wrap; }

.pw-hero-art{
  position:relative;
  background: linear-gradient(160deg, var(--pw-purple) 0%, var(--pw-purple-dark) 100%);
  border-radius: 26px 26px 26px 90px;
  min-height: 320px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 16px 36px rgba(58,17,82,0.22);
  overflow:hidden;
}
.pw-hero-art::before{
  content:'';
  position:absolute; inset:0;
  background: radial-gradient(circle at 28% 22%, rgba(212,175,95,0.28), transparent 55%);
}
.pw-hero-art::after{
  content:'';
  position:absolute; inset:12px;
  border: 1px solid rgba(212,175,95,0.35);
  border-radius: 22px 22px 22px 78px;
  pointer-events:none;
}
.pw-hero-art-icon{ position:relative; z-index:1; color: var(--pw-gold-light); opacity:0.92; filter: drop-shadow(0 10px 18px rgba(0,0,0,.25)); }
.pw-hero-art-icon .pw-icon{ width:118px; height:118px; }

/* slider controls */
.pw-slide-nav{
  position:relative;
  z-index:3;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 22px;
  margin-top: 36px;
}
.pw-slide-arrow{
  width:38px; height:38px;
  border-radius:50%;
  border: 1.5px solid rgba(92,31,119,0.3);
  background: var(--pw-white);
  color: var(--pw-purple);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  transition: background .2s ease, color .2s ease;
}
.pw-slide-arrow:hover{ background: var(--pw-purple); color:#fff; }
.pw-slide-arrow .pw-icon{ width:17px; height:17px; }
.pw-slide-dots{ display:flex; gap:9px; }
.pw-slide-dot{
  width:9px; height:9px; border-radius:50%;
  background: rgba(92,31,119,0.25);
  border:none; cursor:pointer; padding:0;
  transition: background .2s ease, transform .2s ease;
}
.pw-slide-dot.active{ background: var(--pw-gold); transform: scale(1.25); }

@keyframes pw-fade-up{
  from{ opacity:0; transform: translateY(14px); }
  to{ opacity:1; transform: translateY(0); }
}
.pw-slide.active .pw-hero-inner > div:first-child > *{
  animation: pw-fade-up .7s ease both;
}
.pw-slide.active .pw-hero-inner > div:first-child > *:nth-child(2){ animation-delay: .08s; }
.pw-slide.active .pw-hero-inner > div:first-child > *:nth-child(3){ animation-delay: .16s; }
.pw-slide.active .pw-hero-inner > div:first-child > *:nth-child(4){ animation-delay: .24s; }
@media (prefers-reduced-motion: reduce){
  .pw-slide.active .pw-hero-inner > div:first-child > *{ animation: none; }
  .pw-slide{ transition: none; }
}

/* ---------- Badge / trust strip ---------- */
.pw-trust-strip{
  background: var(--pw-purple-dark);
  padding: 40px 0;
}
.pw-trust-grid{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  text-align:center;
  color: var(--pw-cream);
}
.pw-trust-grid > div{ border-right: 1px solid rgba(255,255,255,0.12); padding: 0 14px;}
.pw-trust-grid > div:last-child{ border-right:none; }
.pw-trust-icon{ color: var(--pw-gold-light); margin-bottom:12px; display:flex; justify-content:center; }
.pw-trust-grid h4{ font-family:'Playfair Display',serif; font-size:15px; font-weight:600; letter-spacing:.3px; }

/* ---------- Section headings ---------- */
.pw-section{ padding: 70px 0; }
.pw-section-head{ text-align:center; margin-bottom: 44px; }
.pw-section-head .eyebrow{
  display:inline-block;
  color: var(--pw-gold);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size:20px;
  letter-spacing:.4px;
}
.pw-section-head h2{
  font-size: 38px;
  font-weight: 600;
  color: var(--pw-purple-dark);
  margin-top:6px;
}
.pw-section-head p{ color: var(--pw-text-light); max-width:520px; margin: 12px auto 0; font-size:15.5px; }
.pw-divider{
  width:90px; height:2px; margin: 16px auto 0;
  background: linear-gradient(90deg, transparent, var(--pw-gold), transparent);
}

/* ---------- Category cards ---------- */
.pw-categories-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pw-cat-card{
  background: var(--pw-white);
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align:center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(201,162,39,0.15);
  transition: transform .25s ease;
}
.pw-cat-card:hover{ transform: translateY(-6px); }
.pw-cat-icon{
  width:78px;height:78px;
  border-radius:50%;
  margin: 0 auto 18px;
  background: linear-gradient(150deg, var(--pw-cream-dark), var(--pw-cream));
  display:flex;align-items:center;justify-content:center;
  border: 1.5px solid var(--pw-gold-light);
  color: var(--pw-purple);
}
.pw-cat-card h3{ font-size:19px; font-weight:600; color: var(--pw-purple-dark); margin-bottom:6px; }
.pw-cat-card p{ font-size:13.5px; color: var(--pw-text-light); margin-bottom: 16px; }

/* ---------- Product grid / cards ---------- */
.pw-product-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.pw-product-card{
  background: var(--pw-white);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 6px 18px rgba(58,17,82,0.08);
  border: 1px solid rgba(92,31,119,0.08);
  transition: box-shadow .2s ease, transform .2s ease;
  position:relative;
}
.pw-product-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow); }
.pw-product-thumb{
  position:relative;
  aspect-ratio: 3/4;
  background: var(--pw-cream-dark);
  overflow:hidden;
}
.pw-product-thumb img{ width:100%; height:100%; object-fit:cover; }
.pw-badge-featured{
  position:absolute; top:12px; left:12px;
  background: var(--pw-gold);
  color: var(--pw-purple-dark);
  font-size:11px; font-weight:700;
  padding: 4px 10px; border-radius: 50px;
}
.pw-product-body{ padding: 16px 18px 20px; }
.pw-product-cat{ font-family:'Cormorant Garamond',serif; font-style:italic; font-size:14px; color: var(--pw-gold); font-weight:600; }
.pw-product-body h3{ font-size:17px; font-weight:600; margin: 5px 0 8px; color: var(--pw-text); font-family:'Playfair Display',serif; }
.pw-product-body h3 a{ color:inherit; }
.pw-price{ display:flex; align-items:baseline; gap:8px; margin-bottom: 12px; }
.pw-price .now{ font-size:17px; font-weight:700; color: var(--pw-purple); }
.pw-price .old{ font-size:13px; color: var(--pw-text-light); text-decoration: line-through; }

/* ---------- Forms ---------- */
.pw-form-group{ margin-bottom: 18px; }
.pw-form-group label{ display:block; font-size:13.5px; font-weight:600; margin-bottom:6px; color: var(--pw-text); }
.pw-form-group input[type=text],
.pw-form-group input[type=email],
.pw-form-group input[type=tel],
.pw-form-group input[type=number],
.pw-form-group input[type=password],
.pw-form-group select,
.pw-form-group textarea{
  width:100%;
  padding: 11px 14px;
  border: 1.5px solid rgba(92,31,119,0.2);
  border-radius: 8px;
  font-size:14px;
  font-family: inherit;
  outline:none;
  background: var(--pw-white);
  color: var(--pw-text);
}
.pw-form-group input:focus, .pw-form-group select:focus, .pw-form-group textarea:focus{
  border-color: var(--pw-purple);
  box-shadow: 0 0 0 3px rgba(92,31,119,0.12);
}
.pw-form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.pw-swatch-group{ display:flex; gap:8px; flex-wrap:wrap; }
.pw-swatch-group label{
  border:1.5px solid rgba(92,31,119,0.25);
  padding: 7px 16px;
  border-radius:50px;
  font-size:13px;
  cursor:pointer;
  font-weight: normal;
  margin-bottom:0;
}
.pw-swatch-group input{ display:none; }
.pw-swatch-group input:checked + span, .pw-swatch-group label:has(input:checked){
  background: var(--pw-purple); color:#fff; border-color: var(--pw-purple);
}

/* ---------- Cart ---------- */
.pw-cart-table{ width:100%; border-collapse: collapse; background:#fff; border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow); }
.pw-cart-table th{ background: var(--pw-purple-dark); color:#fff; text-align:left; padding: 14px 16px; font-size:13px; text-transform:uppercase; letter-spacing:.5px; }
.pw-cart-table td{ padding: 16px; border-bottom: 1px solid rgba(92,31,119,0.08); vertical-align: middle; }
.pw-cart-product{ display:flex; align-items:center; gap:14px; }
.pw-cart-product img{ width:64px; height:80px; object-fit:cover; border-radius:8px; }
.pw-qty-input{ width:60px; padding:6px; border:1px solid rgba(92,31,119,.25); border-radius:6px; text-align:center; }
.pw-cart-summary{ background: var(--pw-cream-dark); border-radius: var(--radius); padding: 24px; }
.pw-cart-summary .row{ display:flex; justify-content:space-between; margin-bottom:10px; font-size:14px; }
.pw-cart-summary .total{ font-size:18px; font-weight:700; color: var(--pw-purple); border-top:1px dashed rgba(92,31,119,.3); padding-top:12px; margin-top:6px; }

/* ---------- Footer ---------- */
.pw-footer{
  background: var(--pw-purple-dark);
  color: rgba(253,246,232,0.85);
  padding-top: 60px;
}
.pw-footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.pw-footer h4{ color:#fff; font-size:15px; margin-bottom:18px; letter-spacing:.5px; }
.pw-footer ul li{ margin-bottom:10px; font-size:14px; }
.pw-footer ul li a:hover{ color: var(--pw-gold-light); }
.pw-footer-brand .brand{ font-family:'Dancing Script', cursive; font-size:28px; color: var(--pw-gold-light); }
.pw-footer-brand p{ font-size:13.5px; margin-top:10px; line-height:1.7; }
.pw-footer-bottom{ text-align:center; padding: 20px 0; font-size:13px; letter-spacing:.5px; }
.pw-social{ display:flex; gap:12px; margin-top:14px; }
.pw-social a{ width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,0.25); display:flex; align-items:center; justify-content:center; color: var(--pw-cream); }
.pw-social a .pw-icon{ width:17px; height:17px; }
.pw-social a:hover{ background: var(--pw-gold); border-color: var(--pw-gold); color: var(--pw-purple-dark); }

/* ---------- WhatsApp floating button ---------- */
.pw-whatsapp-float{
  position: fixed; bottom: 26px; right: 26px; z-index: 200;
  width: 56px; height:56px; border-radius:50%;
  background: #25D366; color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  animation: pw-pulse 2.2s infinite;
}
.pw-whatsapp-float .pw-icon{ width:26px; height:26px; }
@keyframes pw-pulse{
  0%{ box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70%{ box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Alerts ---------- */
.pw-alert{ padding: 14px 18px; border-radius: 10px; font-size:14px; margin-bottom: 20px; }
.pw-alert-success{ background: #e8f7ee; color:#1e7e42; border:1px solid #b7e6c6; }
.pw-alert-error{ background: #fdeeee; color:#a0293e; border:1px solid #f3c2c9; }

/* ---------- Pagination ---------- */
.pw-pagination{ display:flex; gap:8px; justify-content:center; margin-top: 30px; }
.pw-pagination li a, .pw-pagination li span{
  display:flex; align-items:center; justify-content:center;
  width:38px;height:38px;border-radius:8px;
  background:#fff; border:1px solid rgba(92,31,119,.2); font-size:13px;
}
.pw-pagination li.active span{ background: var(--pw-purple); color:#fff; border-color: var(--pw-purple); }

/* ---------- Admin panel ---------- */
.pw-admin-body{ background:#f4f1f8; font-family:'Poppins',sans-serif; }
.pw-admin-shell{ display:flex; min-height:100vh; }
.pw-admin-sidebar{
  width: 250px; background: var(--pw-purple-dark); color:#fff; flex-shrink:0;
  padding: 24px 0;
}
.pw-admin-sidebar .brand{ font-family:'Dancing Script',cursive; font-size:26px; text-align:center; color: var(--pw-gold-light); margin-bottom: 30px; display:block; }
.pw-admin-sidebar ul li a{
  display:flex; align-items:center; gap:12px;
  padding: 12px 26px; font-size:14px; color: rgba(255,255,255,0.75);
}
.pw-admin-sidebar ul li a:hover, .pw-admin-sidebar ul li a.active{ background: rgba(255,255,255,0.08); color:#fff; border-right: 3px solid var(--pw-gold); }
.pw-admin-main{ flex:1; padding: 28px 34px; }
.pw-admin-topbar{ display:flex; justify-content:space-between; align-items:center; margin-bottom: 26px; }
.pw-admin-topbar h1{ font-size:22px; color: var(--pw-purple-dark); font-family:'Playfair Display',serif; }
.pw-card{ background:#fff; border-radius: 12px; box-shadow: 0 4px 14px rgba(58,17,82,0.06); padding: 24px; margin-bottom: 24px; }
.pw-stat-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 28px; }
.pw-stat-card{ background:#fff; border-radius:12px; padding:22px; box-shadow: 0 4px 14px rgba(58,17,82,0.06); border-left: 4px solid var(--pw-purple); }
.pw-stat-card h3{ font-size: 28px; color: var(--pw-purple-dark); }
.pw-stat-card p{ font-size:13px; color: var(--pw-text-light); margin-top:4px; }
.pw-table{ width:100%; border-collapse:collapse; }
.pw-table th{ text-align:left; font-size:12px; text-transform:uppercase; letter-spacing:.5px; color: var(--pw-text-light); padding: 10px 12px; border-bottom: 2px solid #eee; }
.pw-table td{ padding: 12px; border-bottom:1px solid #f0edf3; font-size:14px; }
.pw-table img{ width:44px;height:56px;object-fit:cover;border-radius:6px; }
.pw-status-pill{ font-size:11px; padding:4px 10px; border-radius:50px; font-weight:600; text-transform:capitalize; }
.pw-status-pending{ background:#fff4d6; color:#8a6d00; }
.pw-status-contacted{ background:#dceeff; color:#0a5b9e; }
.pw-status-confirmed{ background:#e0f7e9; color:#0f8a3e; }
.pw-status-cancelled{ background:#fde3e3; color:#a0293e; }

/* ---------- Responsive ---------- */
@media (max-width: 992px){
  .pw-hero-inner{ grid-template-columns: 1fr; }
  .pw-hero-frame{ padding: 40px 0 36px; }
  .pw-hero-art{ min-height: 240px; order:-1; }
  .pw-corner{ width:50px; height:44px; }
  .pw-categories-grid, .pw-product-grid{ grid-template-columns: repeat(2,1fr); }
  .pw-footer-grid{ grid-template-columns: 1fr 1fr; }
  .pw-trust-grid{ grid-template-columns: repeat(2,1fr); gap:20px; }
  .pw-trust-grid > div{ border-right:none; }
}
@media (max-width: 768px){
  .pw-nav, .pw-search-form{ display:none; }
  .pw-mobile-toggle{ display:flex; }
  .pw-hero-frame{ padding: 30px 0 28px; }
  .pw-hero h1{ font-size: 30px; }
  .pw-hero-slider{ min-height: 460px; }
  .pw-corner{ width:36px; height:32px; opacity:.4; }
  .pw-form-row{ grid-template-columns: 1fr; }
  .pw-admin-sidebar{ display:none; }
  .pw-logo-img{ height: 46px; }
}