/* ============================================================

   PORTABLE POWER STATION UK — MASTER STYLES

   Site: portable-powerstation.co.uk

   Version: 1.0 | April 2026

   Prefix: .pps-* for all custom classes

   Fonts: Barlow Condensed (headings) + Mulish (body)

   ============================================================ */



/* ============================================================

   1. GOOGLE FONTS

   ============================================================ */

/* @import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800&family=Mulish:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap'); */

@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


/* =========================
   Barlow Condensed
========================= */

@font-face {
    font-family: 'Barlow Condensed';
    src: url('../fonts/BarlowCondensed-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow Condensed';
    src: url('../fonts/BarlowCondensed-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow Condensed';
    src: url('../fonts/BarlowCondensed-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow Condensed';
    src: url('../fonts/BarlowCondensed-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow Condensed';
    src: url('../fonts/BarlowCondensed-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* ============================================================

   2. CSS CUSTOM PROPERTIES

   ============================================================ */

:root {

  --pps-primary-dark:    #1a1a2e;

  --pps-primary-accent:  #e94560;

  --pps-secondary-dark:  #0f3460;

  --pps-accent-hover:    #c73652;

  --pps-light-bg:        #f8f9fa;

  --pps-white:           #ffffff;

  --pps-text-dark:       #212529;

  --pps-text-grey:       #6c757d;

  --pps-text-light:      #adb5bd;

  --pps-border:          #dee2e6;

  --pps-border-light:    #e9ecef;

  --pps-success:         #2d8a4e;

  --pps-success-bg:      #e8f5ed;

  --pps-warning-bg:      #fff8e1;

  --pps-danger:          #c0392b;

  --pps-font-display:    'Barlow Condensed', sans-serif;

  --pps-font-body:       'Mulish', sans-serif;

  --pps-section-pad:     80px;

  --pps-section-pad-sm:  50px;

  --pps-card-pad:        24px;

  --pps-card-radius:     12px;

  --pps-btn-radius:      8px;

  --pps-shadow-sm:       0 2px 8px rgba(0,0,0,0.08);

  --pps-shadow-md:       0 4px 20px rgba(0,0,0,0.12);

  --pps-shadow-lg:       0 8px 40px rgba(0,0,0,0.16);

  --pps-shadow-card:     0 2px 12px rgba(26,26,46,0.10);

  --pps-shadow-hover:    0 8px 32px rgba(26,26,46,0.18);

  --pps-transition:      all 0.25s ease;

  --pps-transition-fast: all 0.15s ease;

  --pps-header-row1:     68px;

  --pps-header-row2:     50px;

  --pps-header-total:    118px;

}



/* ============================================================

   3. BASE RESET

   ============================================================ */

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

html { scroll-behavior: smooth; }



body.pps-body {

  font-family: var(--pps-font-body);

  font-size: 1rem;

  line-height: 1.7;

  color: var(--pps-text-dark);

  background: var(--pps-white);

  -webkit-font-smoothing: antialiased;

}



img { max-width: 100%; height: auto; display: block; }



a { color: var(--pps-primary-accent); text-decoration: none; transition: var(--pps-transition-fast); }

a:hover { color: var(--pps-accent-hover); text-decoration: underline; }



/* ============================================================

   4. TYPOGRAPHY

   ============================================================ */

body.pps-body h1,

body.pps-body h2,

body.pps-body h3 {

  font-family: var(--pps-font-display);

  font-weight: 700;

  line-height: 1.15;

  color: var(--pps-primary-dark);

  letter-spacing: 0.01em;

}



body.pps-body h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; }

body.pps-body h2 { font-size: clamp(1.6rem, 4vw, 2.25rem); }

body.pps-body h3 { font-size: clamp(1.2rem, 3vw, 1.55rem); }

body.pps-body h4 { font-size: 1.1rem; font-weight: 700; }

body.pps-body h5 { font-size: 0.95rem; font-weight: 700; }



body.pps-body p { margin-bottom: 1rem; }

body.pps-body p:last-child { margin-bottom: 0; }

body.pps-body ul, body.pps-body ol { padding-left: 1.25rem; margin-bottom: 1rem; }

body.pps-body li { margin-bottom: 0.35rem; }



.pps-section-title {

  font-family: var(--pps-font-display);

  font-size: clamp(1.6rem, 4vw, 2.25rem);

  font-weight: 700;

  color: var(--pps-primary-dark);

  margin-bottom: 0.4rem;

}



.pps-section-subtitle {

  font-size: 1rem;

  color: var(--pps-text-grey);

  margin-bottom: 2.5rem;

}



.pps-lead {

  font-size: 1.1rem;

  color: var(--pps-text-grey);

  line-height: 1.65;

}



/* ============================================================

   5. HEADER — TWO-ROW STICKY

   ============================================================ */

.pps-header { position: sticky; top: 0; z-index: 1030; width: 100%; }



/* Row 1 */

.pps-header-row1 {

  background: var(--pps-secondary-dark);

  height: var(--pps-header-row1);

  display: flex;

  align-items: center;

  border-bottom: 1px solid rgba(255,255,255,0.08);

}



.pps-logo {

  display: flex;

  align-items: center;

  gap: 10px;

  text-decoration: none;

}



.pps-logo:hover { text-decoration: none; }



.pps-logo-mark {

  width: 40px;

  height: 40px;

  background: var(--pps-primary-accent);

  border-radius: 8px;

  display: flex;

  align-items: center;

  justify-content: center;

  font-family: var(--pps-font-display);

  font-size: 1rem;

  font-weight: 800;

  color: var(--pps-white);

  flex-shrink: 0;

}



.pps-logo-text {

  font-family: var(--pps-font-display);

  font-size: 1.2rem;

  font-weight: 700;

  color: var(--pps-white);

  line-height: 1.1;

  letter-spacing: 0.02em;

}



.pps-logo-text span {

  display: block;

  font-size: 0.65rem;

  font-weight: 500;

  color: rgba(255,255,255,0.55);

  letter-spacing: 0.1em;

  text-transform: uppercase;

}



.pps-search-form { display: flex; width: 320px; }



.pps-search-input {

  flex: 1;

  height: 40px;

  padding: 0 14px;

  font-family: var(--pps-font-body);

  font-size: 0.875rem;

  border: 2px solid rgba(255,255,255,0.15);

  border-right: none;

  border-radius: var(--pps-btn-radius) 0 0 var(--pps-btn-radius);

  background: rgba(255,255,255,0.1);

  color: var(--pps-white);

  outline: none;

  transition: var(--pps-transition);

}



.pps-search-input::placeholder { color: rgba(255,255,255,0.45); }

.pps-search-input:focus { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.4); }



.pps-search-btn {

  height: 40px;

  padding: 0 16px;

  background: var(--pps-primary-accent);

  color: var(--pps-white);

  border: none;

  border-radius: 0 var(--pps-btn-radius) var(--pps-btn-radius) 0;

  cursor: pointer;

  font-size: 0.95rem;

  transition: var(--pps-transition);

}



.pps-search-btn:hover { background: var(--pps-accent-hover); }



/* Row 2 */

.pps-header-row2 {

  background: var(--pps-primary-dark);

  height: var(--pps-header-row2);

  border-bottom: 2px solid var(--pps-primary-accent);

}



.pps-nav {

  display: flex;

  align-items: center;

  height: 100%;

  list-style: none;

  margin: 0;

  padding: 0;

}



.pps-nav > li { position: relative; height: 100%; display: flex; align-items: center; }



.pps-nav > li > a {

  display: flex;

  align-items: center;

  gap: 4px;

  height: 100%;

  padding: 0 16px;

  font-size: 0.8125rem;

  font-weight: 700;

  color: rgba(255,255,255,0.85);

  text-decoration: none;

  text-transform: uppercase;

  letter-spacing: 0.06em;

  transition: var(--pps-transition-fast);

  white-space: nowrap;

}



.pps-nav > li > a:hover { color: var(--pps-white); background: rgba(255,255,255,0.08); text-decoration: none; }



.pps-nav > li > a.pps-nav-tools {

  color: var(--pps-white);

  background: rgba(233,69,96,0.2);

  border-left: 1px solid rgba(233,69,96,0.3);

}



.pps-nav > li > a.pps-nav-tools:hover { background: var(--pps-primary-accent); }



.pps-nav-caret { font-size: 0.6rem; transition: transform 0.2s ease; opacity: 0.7; }

.pps-nav > li:hover .pps-nav-caret { transform: rotate(180deg); opacity: 1; }



/* Dropdown */

.pps-dropdown {

  position: absolute;

  top: 100%;

  left: 0;

  min-width: 210px;

  background: var(--pps-white);

  border-top: 3px solid var(--pps-primary-accent);

  border-radius: 0 0 var(--pps-card-radius) var(--pps-card-radius);

  box-shadow: var(--pps-shadow-lg);

  list-style: none;

  padding: 8px 0;

  opacity: 0;

  visibility: hidden;

  transform: translateY(8px);

  transition: all 0.2s ease;

  z-index: 1000;

}



.pps-nav > li:hover .pps-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }



.pps-dropdown li a {

  display: block;

  padding: 9px 20px;

  font-size: 0.875rem;

  font-weight: 500;

  color: var(--pps-text-dark);

  transition: var(--pps-transition-fast);

}



.pps-dropdown li a:hover {

  background: var(--pps-light-bg);

  color: var(--pps-primary-accent);

  padding-left: 24px;

  text-decoration: none;

}



.pps-dropdown-divider { height: 1px; background: var(--pps-border-light); margin: 5px 0; }



/* Hamburger */

.pps-hamburger {

  display: none;

  flex-direction: column;

  justify-content: center;

  gap: 5px;

  width: 40px;

  height: 40px;

  background: none;

  border: none;

  cursor: pointer;

  padding: 6px;

}



.pps-hamburger span { display: block; width: 100%; height: 2px; background: var(--pps-white); border-radius: 2px; transition: var(--pps-transition); }



.pps-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }

.pps-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }

.pps-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }



/* Mobile Nav */

.pps-mobile-nav {

  position: fixed;

  top: 0;

  left: -100%;

  width: 85%;

  max-width: 320px;

  height: 100vh;

  background: var(--pps-primary-dark);

  z-index: 2000;

  transition: left 0.3s ease;

  overflow-y: auto;

  padding: 70px 0 40px;

  box-shadow: 4px 0 30px rgba(0,0,0,0.4);

}



.pps-mobile-nav.open { left: 0; }



.pps-mobile-overlay {

  position: fixed;

  inset: 0;

  background: rgba(0,0,0,0.55);

  z-index: 1999;

  display: none;

}



.pps-mobile-overlay.open { display: block; }



.pps-mobile-nav-close {

  position: absolute;

  top: 16px;

  right: 16px;

  background: none;

  border: none;

  color: var(--pps-white);

  font-size: 1.5rem;

  cursor: pointer;

  padding: 8px;

  line-height: 1;

}



.pps-mobile-nav ul { list-style: none; padding: 0; margin: 0; }



.pps-mobile-nav ul li a {

  display: block;

  padding: 13px 24px;

  font-size: 0.9375rem;

  font-weight: 600;

  color: rgba(255,255,255,0.82);

  border-bottom: 1px solid rgba(255,255,255,0.06);

  transition: var(--pps-transition-fast);

  text-decoration: none;

}



.pps-mobile-nav ul li a:hover {

  background: rgba(255,255,255,0.08);

  color: var(--pps-white);

}



.pps-mobile-nav .sub-menu,

.pps-mobile-nav .pps-dropdown {

  position: static;

  opacity: 1;

  visibility: visible;

  transform: none;

  box-shadow: none;

  border: none;

  background: rgba(0,0,0,0.15);

  min-width: auto;

  padding: 0 0 0 15px;

  display: none;

  border-radius: 0;

}



.pps-mobile-nav .menu-item-has-children.expanded > .sub-menu,

.pps-mobile-nav .menu-item-has-children.expanded > .pps-dropdown {

  display: block;

}



.pps-mobile-nav .menu-item-has-children > a .pps-nav-caret {

  float: right;

  margin-top: 0px;

  padding: 5px 10px;

  margin-right: -10px;

  transition: transform 0.3s ease;

}



.pps-mobile-nav .menu-item-has-children.expanded > a .pps-nav-caret {

  transform: rotate(180deg);

}



.pps-mobile-nav ul li.pps-mobile-section {

  padding: 12px 24px 4px;

  font-size: 0.65rem;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 0.12em;

  color: rgba(255,255,255,0.3);

  border-bottom: none;

}



/* ============================================================

   6. BREADCRUMB

   ============================================================ */

.pps-breadcrumb {

  background: var(--pps-light-bg);

  border-bottom: 1px solid var(--pps-border-light);

  padding: 10px 0;

}



.pps-breadcrumb ol {

  list-style: none;

  padding: 0;

  margin: 0;

  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 6px;

  font-size: 0.8125rem;

}



.pps-breadcrumb li { display: flex; align-items: center; gap: 6px; }

.pps-breadcrumb li::after { content: '›'; color: var(--pps-text-light); }

.pps-breadcrumb li:last-child::after { display: none; }

.pps-breadcrumb a { color: var(--pps-text-grey); }

.pps-breadcrumb a:hover { color: var(--pps-primary-accent); text-decoration: none; }

.pps-breadcrumb li:last-child span { color: var(--pps-text-dark); font-weight: 600; }



/* ============================================================

   7. BUTTONS

   ============================================================ */

.pps-btn {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  padding: 12px 24px;

  font-family: var(--pps-font-body);

  font-size: 0.9375rem;

  font-weight: 700;

  border-radius: var(--pps-btn-radius);

  border: 2px solid transparent;

  cursor: pointer;

  transition: var(--pps-transition);

  text-decoration: none;

  white-space: nowrap;

  line-height: 1;

}



.pps-btn:hover { text-decoration: none; }



.pps-btn-primary { background: var(--pps-primary-accent); color: var(--pps-white); border-color: var(--pps-primary-accent); }

.pps-btn-primary:hover { background: var(--pps-accent-hover); border-color: var(--pps-accent-hover); color: var(--pps-white); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(233,69,96,0.35); }



.pps-btn-outline { background: transparent; color: var(--pps-white); border-color: rgba(255,255,255,0.6); }

.pps-btn-outline:hover { background: var(--pps-white); color: var(--pps-primary-dark); border-color: var(--pps-white); }



.pps-btn-outline-dark { background: transparent; color: var(--pps-primary-dark); border-color: var(--pps-primary-dark); }

.pps-btn-outline-dark:hover { background: var(--pps-primary-dark); color: var(--pps-white); }



.pps-btn-sm { padding: 8px 18px; font-size: 0.8125rem; }

.pps-btn-lg { padding: 15px 32px; font-size: 1.0625rem; }

.pps-btn-xl { padding: 18px 40px; font-size: 1.125rem; }

.pps-btn-block { width: 100%; justify-content: center; }



.pps-btn-amazon { background: #ff9900; color: var(--pps-primary-dark); border-color: #ff9900; font-weight: 700; }

.pps-btn-amazon:hover { background: #e68a00; border-color: #e68a00; color: var(--pps-primary-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(255,153,0,0.35); }



/* ============================================================

   8. AFFILIATE DISCLOSURE

   ============================================================ */

.pps-disclosure {

  background: var(--pps-warning-bg);

  border-bottom: 1px solid #ffe082;

  padding: 10px 0;

}



.pps-disclosure-inner {

  display: flex;

  align-items: center;

  gap: 10px;

  font-size: 0.8125rem;

  color: var(--pps-text-dark);

}



.pps-disclosure-icon {

  width: 20px;

  height: 20px;

  background: #f0b429;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  color: var(--pps-white);

  font-size: 0.7rem;

  font-weight: 700;

  flex-shrink: 0;

}



.pps-disclosure a { color: #b87a00; font-weight: 600; }



/* ============================================================

   9. CATEGORY BADGES (TEXT ONLY — NO EMOJI)

   ============================================================ */

.pps-badge {

  display: inline-block;

  padding: 4px 11px;

  font-size: 0.65rem;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 0.1em;

  border-radius: 4px;

  white-space: nowrap;

  color: #fff;

}



.pps-badge-overall  { background: #1a6b3c; }

.pps-badge-camping  { background: #0d5c8f; }

.pps-badge-budget   { background: #7b3fa0; }

.pps-badge-solar    { background: #d4680a; }

.pps-badge-backup   { background: #2c5f8a; }

.pps-badge-compact  { background: #5a6e1f; }

.pps-badge-offgrid  { background: #7a4012; }

.pps-badge-midrange { background: #546e7a; }

.pps-badge-large    { background: #37474f; }



/* ============================================================

   10. STAR RATINGS

   ============================================================ */

.pps-stars { display: inline-flex; align-items: center; gap: 4px; }

.pps-star-icons { color: #f5a623; letter-spacing: -1px; font-size: 0.9rem; }

.pps-star-score { font-weight: 700; font-size: 0.9rem; color: var(--pps-text-dark); margin-left: 3px; }



/* ============================================================

   11. PRODUCT CARDS — COMPACT (Review grid)

   ============================================================ */

.pps-product-card {

  background: var(--pps-white);

  border-radius: var(--pps-card-radius);

  box-shadow: var(--pps-shadow-card);

  overflow: hidden;

  transition: var(--pps-transition);

  position: relative;

  display: flex;

  flex-direction: column;

  height: 100%;

}



.pps-product-card:hover { box-shadow: var(--pps-shadow-hover); transform: translateY(-4px); }



.pps-product-card-badge { position: absolute; top: 10px; left: 10px; z-index: 2; }



.pps-product-card-img-wrap {

  width: 100%;

  height: 190px;

  background: linear-gradient(135deg, var(--pps-light-bg) 0%, #e2e8f0 100%);

  display: flex;

  align-items: center;

  justify-content: center;

  overflow: hidden;

}



.pps-product-card-img { width: 100%; height: 190px; object-fit: cover; }



.pps-img-placeholder-text {

  font-size: 0.7rem;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.08em;

  color: var(--pps-text-light);

  text-align: center;

  padding: 10px;

}



.pps-product-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 8px; }



.pps-product-card-name {

  font-family: var(--pps-font-display);

  font-size: 1.05rem;

  font-weight: 700;

  color: var(--pps-primary-dark);

  line-height: 1.2;

  margin: 0;

}



.pps-product-card-stats {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 5px;

}



.pps-stat { display: flex; flex-direction: column; gap: 1px; }

.pps-stat-label { font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--pps-text-light); }

.pps-stat-value { font-size: 0.8125rem; font-weight: 700; color: var(--pps-text-dark); }



.pps-product-card-price {

  font-family: var(--pps-font-display);

  font-size: 1.1rem;

  font-weight: 700;

  color: var(--pps-primary-accent);

  margin-top: auto;

}



/* ============================================================

   12. FEATURED CARDS (Top 3 Picks — larger)

   ============================================================ */

.pps-featured-card {

  background: var(--pps-white);

  border-radius: var(--pps-card-radius);

  box-shadow: var(--pps-shadow-card);

  overflow: hidden;

  transition: var(--pps-transition);

  display: flex;

  flex-direction: column;

  height: 100%;

  position: relative;

}



.pps-featured-card:hover { box-shadow: var(--pps-shadow-hover); transform: translateY(-4px); }



.pps-featured-card-img-wrap {

  width: 100%;

  height: 230px;

  background: linear-gradient(135deg, #e8edf2 0%, #d1dce8 100%);

  display: flex;

  align-items: center;

  justify-content: center;

  overflow: hidden;

  position: relative;

}



.pps-featured-card-img { width: 100%; height: 230px; object-fit: cover; }



.pps-featured-card-badge { position: absolute; top: 14px; left: 14px; z-index: 2; }



.pps-featured-card-body { padding: var(--pps-card-pad); flex: 1; display: flex; flex-direction: column; gap: 10px; }



.pps-featured-card-name {

  font-family: var(--pps-font-display);

  font-size: 1.3rem;

  font-weight: 700;

  color: var(--pps-primary-dark);

  line-height: 1.15;

  margin: 0;

}



.pps-featured-card-spec-row {

  display: flex;

  flex-wrap: wrap;

  gap: 10px;

}



.pps-featured-card-spec {

  font-size: 0.8125rem;

  color: var(--pps-text-grey);

}



.pps-featured-card-spec strong { color: var(--pps-text-dark); font-weight: 700; }



.pps-featured-card-points {

  list-style: none;

  padding: 0;

  margin: 0;

  display: flex;

  flex-direction: column;

  gap: 4px;

}



.pps-featured-card-points li {

  font-size: 0.875rem;

  color: var(--pps-text-grey);

  display: flex;

  align-items: flex-start;

  gap: 7px;

  margin: 0;

}



.pps-featured-card-points li::before { content: '✓'; color: var(--pps-success); font-weight: 700; flex-shrink: 0; }



.pps-featured-card-price {

  font-family: var(--pps-font-display);

  font-size: 1.45rem;

  font-weight: 700;

  color: var(--pps-primary-accent);

  margin-top: auto;

}



.pps-featured-card-footer {

  padding: 16px var(--pps-card-pad);

  border-top: 1px solid var(--pps-border-light);

  display: flex;

  gap: 10px;

}



/* ============================================================

   13. SPECS BOX (floating card)

   ============================================================ */

.pps-specs-box {

  background: var(--pps-white);

  border: 1px solid var(--pps-border);

  border-radius: var(--pps-card-radius);

  overflow: hidden;

  box-shadow: var(--pps-shadow-sm);

}



.pps-specs-box-header {

  background: var(--pps-primary-dark);

  color: var(--pps-white);

  padding: 11px 16px;

  font-size: 0.8125rem;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.08em;

}



.pps-specs-table { width: 100%; border-collapse: collapse; }

.pps-specs-table tr:nth-child(even) td { background: var(--pps-light-bg); }

.pps-specs-table td { padding: 8px 14px; font-size: 0.8125rem; border-bottom: 1px solid var(--pps-border-light); vertical-align: top; }

.pps-specs-table tr:last-child td { border-bottom: none; }

.pps-specs-table .spec-label { font-weight: 700; color: var(--pps-text-grey); width: 44%; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.04em; }

.pps-specs-table .spec-value { font-weight: 600; color: var(--pps-text-dark); }

.pps-specs-table .spec-price .spec-value { color: var(--pps-primary-accent); font-weight: 700; font-size: 0.9375rem; }



/* ============================================================

   14. IMAGE CAROUSEL

   ============================================================ */

.pps-carousel { border-radius: var(--pps-card-radius) var(--pps-card-radius) 0 0; overflow: hidden; background: var(--pps-light-bg); }



.pps-carousel-main-wrap {

  width: 100%;

  height: 300px;

  background: linear-gradient(135deg, #e8edf2 0%, #c8d8e8 100%);

  display: flex;

  align-items: center;

  justify-content: center;

  overflow: hidden;

}



.pps-carousel-main { width: 100%; height: 300px; object-fit: cover; cursor: zoom-in; display: block; }



.pps-carousel-placeholder-text {

  font-size: 0.7rem;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.1em;

  color: var(--pps-text-light);

}



.pps-carousel-thumbs {

  display: flex;

  gap: 6px;

  padding: 8px;

  background: var(--pps-light-bg);

  border-top: 1px solid var(--pps-border-light);

  overflow-x: auto;

}



.pps-carousel-thumb-placeholder {

  width: 66px;

  height: 50px;

  border-radius: 6px;

  background: #d1dce8;

  flex-shrink: 0;

  border: 2px solid transparent;

  cursor: pointer;

  transition: var(--pps-transition-fast);

}



.pps-carousel-thumb-placeholder:hover,

.pps-carousel-thumb-placeholder.active { border-color: var(--pps-primary-accent); }



/* ============================================================

   15. PROS / CONS

   ============================================================ */

.pps-pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 1.5rem 0; }



.pps-pros { background: var(--pps-success-bg); border: 1px solid rgba(45,138,78,0.2); border-radius: var(--pps-card-radius); padding: 16px; }

.pps-cons { background: #fef2f2; border: 1px solid rgba(192,57,43,0.2); border-radius: var(--pps-card-radius); padding: 16px; }



.pps-pros-header, .pps-cons-header { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }

.pps-pros-header { color: var(--pps-success); }

.pps-cons-header { color: var(--pps-danger); }



.pps-pros ul, .pps-cons ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }

.pps-pros li, .pps-cons li { font-size: 0.875rem; display: flex; align-items: flex-start; gap: 7px; margin: 0; line-height: 1.4; }

.pps-pros li::before { content: '✓'; color: var(--pps-success); font-weight: 700; flex-shrink: 0; }

.pps-cons li::before { content: '✗'; color: var(--pps-danger); font-weight: 700; flex-shrink: 0; }



/* ============================================================

   16. WHO THIS IS FOR / NOT FOR

   ============================================================ */

.pps-who-for { padding: 16px 18px; border-radius: var(--pps-card-radius); margin-bottom: 10px; }

.pps-who-for-yes { background: var(--pps-success-bg); border-left: 4px solid var(--pps-success); }

.pps-who-for-no  { background: #fef2f2; border-left: 4px solid var(--pps-danger); }

.pps-who-for h5 { font-size: 0.8125rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 9px; }

.pps-who-for-yes h5 { color: var(--pps-success); }

.pps-who-for-no h5  { color: var(--pps-danger); }

.pps-who-for ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 5px; }

.pps-who-for li { font-size: 0.875rem; display: flex; align-items: flex-start; gap: 7px; margin: 0; }

.pps-who-for-yes li::before { content: '✓'; color: var(--pps-success); font-weight: 700; flex-shrink: 0; }

.pps-who-for-no li::before  { content: '✗'; color: var(--pps-danger); font-weight: 700; flex-shrink: 0; }



/* ============================================================

   17. VERDICT BOX

   ============================================================ */

.pps-verdict {

  background: linear-gradient(135deg, var(--pps-primary-dark) 0%, var(--pps-secondary-dark) 100%);

  border-radius: var(--pps-card-radius);

  padding: 22px;

  color: var(--pps-white);

  margin: 1.5rem 0;

}



.pps-verdict-label { font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em; color: var(--pps-primary-accent); margin-bottom: 8px; display: block; }

.pps-verdict p { color: rgba(255,255,255,0.85); font-size: 0.9375rem; line-height: 1.7; margin: 0; }



/* ============================================================

   18. COMPARISON TABLE (SORTABLE)

   ============================================================ */

.pps-comparison-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--pps-card-radius); box-shadow: var(--pps-shadow-card); }



.pps-comparison-table { width: 100%; min-width: 680px; border-collapse: collapse; font-size: 0.875rem; background: var(--pps-white); }



.pps-comparison-table thead th {

  background: var(--pps-primary-dark);

  color: var(--pps-white);

  padding: 12px 14px;

  font-size: 0.75rem;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.07em;

  text-align: left;

  white-space: nowrap;

  cursor: pointer;

  user-select: none;

}



.pps-comparison-table thead th:hover { background: var(--pps-secondary-dark); }

.pps-comparison-table thead th.sortable::after { content: ' ↕'; opacity: 0.45; font-size: 0.65rem; }

.pps-comparison-table thead th.sort-asc::after  { content: ' ↑'; opacity: 1; color: var(--pps-primary-accent); }

.pps-comparison-table thead th.sort-desc::after { content: ' ↓'; opacity: 1; color: var(--pps-primary-accent); }



.pps-comparison-table tbody tr { border-bottom: 1px solid var(--pps-border-light); transition: var(--pps-transition-fast); }

.pps-comparison-table tbody tr:hover { background: #f0f4f8; }

.pps-comparison-table tbody tr.pps-row-top { background: #fffaf0; }



.pps-comparison-table td { padding: 11px 14px; vertical-align: middle; color: var(--pps-text-dark); }

.pps-comparison-table td:first-child { font-weight: 700; white-space: nowrap; }



.pps-sort-controls { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 12px; }

.pps-sort-label { font-size: 0.8125rem; font-weight: 700; color: var(--pps-text-grey); }



.pps-sort-btn {

  padding: 5px 14px;

  font-size: 0.8125rem;

  font-weight: 600;

  border: 1.5px solid var(--pps-border);

  border-radius: 20px;

  background: var(--pps-white);

  color: var(--pps-text-grey);

  cursor: pointer;

  transition: var(--pps-transition-fast);

}



.pps-sort-btn:hover, .pps-sort-btn.active { border-color: var(--pps-primary-accent); color: var(--pps-primary-accent); background: rgba(233,69,96,0.05); }



/* ============================================================

   19. FAQ ACCORDION

   ============================================================ */

.pps-faq { display: flex; flex-direction: column; gap: 10px; }



.pps-faq-item { border: 1px solid var(--pps-border); border-radius: var(--pps-card-radius); overflow: hidden; transition: var(--pps-transition); }

.pps-faq-item.open { border-color: var(--pps-primary-accent); }



.pps-faq-question {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 14px;

  padding: 15px 18px;

  cursor: pointer;

  background: var(--pps-white);

  user-select: none;

  transition: var(--pps-transition-fast);

}



.pps-faq-question:hover { background: var(--pps-light-bg); }

.pps-faq-item.open .pps-faq-question { background: var(--pps-primary-dark); }



.pps-faq-q-text { font-weight: 600; font-size: 0.9375rem; color: var(--pps-text-dark); line-height: 1.4; }

.pps-faq-item.open .pps-faq-q-text { color: var(--pps-white); }



.pps-faq-icon {

  width: 24px;

  height: 24px;

  border-radius: 50%;

  background: var(--pps-light-bg);

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 1.1rem;

  font-weight: 300;

  color: var(--pps-primary-accent);

  flex-shrink: 0;

  transition: var(--pps-transition);

  line-height: 1;

}



.pps-faq-item.open .pps-faq-icon { background: var(--pps-primary-accent); color: var(--pps-white); transform: rotate(45deg); }



.pps-faq-answer { display: none; padding: 16px 18px; font-size: 0.9375rem; color: var(--pps-text-dark); line-height: 1.7; background: var(--pps-light-bg); border-top: 1px solid var(--pps-border-light); }

.pps-faq-item.open .pps-faq-answer { display: block; }



/* ============================================================

   20. STICKY TOC SIDEBAR (Right)

   ============================================================ */

.pps-toc-sidebar {

  position: sticky;

  top: calc(var(--pps-header-total) + 20px);

  max-height: calc(100vh - var(--pps-header-total) - 40px);

  overflow-y: auto;

  background: var(--pps-white);

  border: 1px solid var(--pps-border);

  border-radius: var(--pps-card-radius);

  padding: 16px;

}



.pps-toc-title { font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: var(--pps-text-light); margin-bottom: 10px; padding-bottom: 8px; border-bottom: 1px solid var(--pps-border-light); }



.pps-toc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }



.pps-toc-list li a {

  display: block;

  padding: 5px 9px;

  font-size: 0.8rem;

  font-weight: 500;

  color: var(--pps-text-grey);

  border-radius: 5px;

  transition: var(--pps-transition-fast);

  text-decoration: none;

  border-left: 2px solid transparent;

  line-height: 1.35;

}



.pps-toc-list li a:hover,

.pps-toc-list li a.active { color: var(--pps-primary-accent); background: rgba(233,69,96,0.06); border-left-color: var(--pps-primary-accent); text-decoration: none; }



.pps-toc-divider { height: 1px; background: var(--pps-border-light); margin: 7px 0; }

.pps-toc-section-label { font-size: 0.6rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--pps-text-light); padding: 3px 9px 1px; }



.pps-back-top { display: block; text-align: center; padding: 8px; margin-top: 8px; font-size: 0.8rem; font-weight: 600; color: var(--pps-text-grey); border-top: 1px solid var(--pps-border-light); text-decoration: none; }

.pps-back-top:hover { color: var(--pps-primary-accent); text-decoration: none; }



/* ============================================================

   21. USE-CASE CARDS (4-column)

   ============================================================ */

.pps-usecase-card {

  background: var(--pps-white);

  border-radius: var(--pps-card-radius);

  overflow: hidden;

  box-shadow: var(--pps-shadow-card);

  transition: var(--pps-transition);

  text-decoration: none;

  display: block;

  height: 100%;

}



.pps-usecase-card:hover { box-shadow: var(--pps-shadow-hover); transform: translateY(-4px); text-decoration: none; }



.pps-usecase-img-wrap {

  width: 100%;

  height: 180px;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 0.7rem;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.1em;

}



.pps-usecase-camping  .pps-usecase-img-wrap { background: linear-gradient(135deg, #c8e6c9, #a5d6a7); color: #2e7d32; }

.pps-usecase-backup   .pps-usecase-img-wrap { background: linear-gradient(135deg, #bbdefb, #90caf9); color: #1565c0; }

.pps-usecase-campervan .pps-usecase-img-wrap { background: linear-gradient(135deg, #ffe0b2, #ffcc80); color: #e65100; }

.pps-usecase-solar    .pps-usecase-img-wrap { background: linear-gradient(135deg, #fff9c4, #fff176); color: #f57f17; }



.pps-usecase-card-body { padding: 18px; }

.pps-usecase-card-title { font-family: var(--pps-font-display); font-size: 1.15rem; font-weight: 700; color: var(--pps-primary-dark); margin-bottom: 5px; }

.pps-usecase-card-desc { font-size: 0.875rem; color: var(--pps-text-grey); margin-bottom: 12px; line-height: 1.5; }

.pps-usecase-card-link { font-size: 0.875rem; font-weight: 700; color: var(--pps-primary-accent); display: inline-flex; align-items: center; gap: 5px; }



/* ============================================================

   22. BRAND CARDS

   ============================================================ */

.pps-brand-card {

  background: var(--pps-white);

  border: 1px solid var(--pps-border);

  border-radius: var(--pps-card-radius);

  padding: 24px 18px;

  text-align: center;

  transition: var(--pps-transition);

  text-decoration: none;

  display: block;

  height: 100%;

}



.pps-brand-card:hover { border-color: var(--pps-primary-accent); box-shadow: var(--pps-shadow-md); transform: translateY(-3px); text-decoration: none; }



.pps-brand-logo-placeholder {

  width: 140px;

  height: 60px;

  margin: 0 auto 12px;

  background: var(--pps-light-bg);

  border-radius: 8px;

  display: flex;

  align-items: center;

  justify-content: center;

  font-family: var(--pps-font-display);

  font-size: 1.3rem;

  font-weight: 800;

  color: var(--pps-text-grey);

  letter-spacing: 0.04em;

}



.pps-brand-name { font-family: var(--pps-font-display); font-size: 1.1rem; font-weight: 700; color: var(--pps-primary-dark); margin-bottom: 4px; }

.pps-brand-tagline { font-size: 0.8rem; color: var(--pps-text-grey); margin-bottom: 10px; line-height: 1.4; }

.pps-brand-model-count { font-size: 0.7rem; font-weight: 700; color: var(--pps-text-light); text-transform: uppercase; letter-spacing: 0.07em; }



/* ============================================================

   23. TOOLS CTA BANNER

   ============================================================ */

.pps-tools-cta {

  background: linear-gradient(135deg, var(--pps-secondary-dark) 0%, var(--pps-primary-dark) 100%);

  padding: var(--pps-section-pad) 0;

  position: relative;

  overflow: hidden;

}



.pps-tools-cta::before {

  content: '';

  position: absolute;

  top: -40%;

  right: -5%;

  width: 450px;

  height: 450px;

  background: radial-gradient(circle, rgba(233,69,96,0.1) 0%, transparent 70%);

  pointer-events: none;

}



.pps-tool-card {

  background: rgba(255,255,255,0.07);

  border: 1px solid rgba(255,255,255,0.14);

  border-radius: var(--pps-card-radius);

  padding: 30px 26px;

  text-align: center;

  transition: var(--pps-transition);

}



.pps-tool-card:hover { background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.28); transform: translateY(-3px); }



.pps-tool-icon {

  width: 54px;

  height: 54px;

  background: rgba(233,69,96,0.22);

  border-radius: 14px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin: 0 auto 14px;

  font-size: 1.4rem;

}



.pps-tool-card h3 { font-family: var(--pps-font-display); font-size: 1.25rem; font-weight: 700; color: var(--pps-white); margin-bottom: 9px; }

.pps-tool-card p { font-size: 0.875rem; color: rgba(255,255,255,0.68); margin-bottom: 18px; }



/* ============================================================

   24. METHODOLOGY CARDS

   ============================================================ */

.pps-methodology { background: var(--pps-light-bg); padding: var(--pps-section-pad) 0; }



.pps-method-card { text-align: center; padding: 20px 14px; }



.pps-method-icon {

  width: 60px;

  height: 60px;

  background: var(--pps-white);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  margin: 0 auto 14px;

  box-shadow: var(--pps-shadow-sm);

  font-size: 1.5rem;

}



.pps-method-card h4 { font-family: var(--pps-font-display); font-size: 1.05rem; font-weight: 700; color: var(--pps-primary-dark); margin-bottom: 7px; }

.pps-method-card p { font-size: 0.875rem; color: var(--pps-text-grey); line-height: 1.6; }



/* ============================================================

   25. AUTHOR BOX

   ============================================================ */

.pps-author-box { background: var(--pps-white); border: 1px solid var(--pps-border); border-radius: var(--pps-card-radius); padding: 22px; display: flex; gap: 18px; align-items: flex-start; }



.pps-author-avatar-placeholder {

  width: 72px;

  height: 72px;

  border-radius: 50%;

  background: linear-gradient(135deg, var(--pps-secondary-dark), var(--pps-primary-accent));

  display: flex;

  align-items: center;

  justify-content: center;

  font-family: var(--pps-font-display);

  font-size: 1.6rem;

  font-weight: 700;

  color: var(--pps-white);

  flex-shrink: 0;

}



.pps-author-info { flex: 1; }

.pps-author-name { font-family: var(--pps-font-display); font-size: 1.1rem; font-weight: 700; color: var(--pps-primary-dark); margin-bottom: 2px; }

.pps-author-role { font-size: 0.75rem; font-weight: 700; color: var(--pps-primary-accent); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }

.pps-author-bio { font-size: 0.875rem; color: var(--pps-text-grey); line-height: 1.6; margin: 0; }



/* ============================================================

   26. CALLOUT BOXES

   ============================================================ */

.pps-quick-summary {

  background: var(--pps-light-bg);

  border-left: 4px solid var(--pps-primary-accent);

  border-radius: 0 var(--pps-card-radius) var(--pps-card-radius) 0;

  padding: 14px 18px;

  margin: 1rem 0;

}



.pps-quick-summary-label { font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: var(--pps-primary-accent); margin-bottom: 5px; }

.pps-quick-summary p { font-size: 0.9375rem; color: var(--pps-text-dark); margin: 0; line-height: 1.6; }



.pps-top-pick-box {

  background: rgba(233,69,96,0.05);

  border: 1.5px solid rgba(233,69,96,0.3);

  border-radius: var(--pps-card-radius);

  padding: 16px 18px;

  margin: 1.25rem 0;

}



.pps-top-pick-label {

  font-size: 0.65rem;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 0.12em;

  color: var(--pps-primary-accent);

  margin-bottom: 7px;

  display: flex;

  align-items: center;

  gap: 7px;

}



.pps-top-pick-label::before { content: ''; width: 7px; height: 7px; background: var(--pps-primary-accent); border-radius: 50%; }

.pps-top-pick-box p { margin: 0; font-size: 0.9375rem; line-height: 1.6; }



/* ============================================================

   27. FILTER BAR

   ============================================================ */

.pps-filter-bar { background: var(--pps-primary-dark); padding: 12px 0; }



.pps-filter-inner { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; }



.pps-filter-label { font-size: 0.7rem; font-weight: 700; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.08em; margin-right: 3px; }



.pps-filter-pill {

  padding: 5px 13px;

  font-size: 0.8rem;

  font-weight: 600;

  border: 1.5px solid rgba(255,255,255,0.18);

  border-radius: 20px;

  background: transparent;

  color: rgba(255,255,255,0.7);

  cursor: pointer;

  transition: var(--pps-transition-fast);

  white-space: nowrap;

}



.pps-filter-pill:hover, .pps-filter-pill.active { background: var(--pps-primary-accent); border-color: var(--pps-primary-accent); color: var(--pps-white); }



/* ============================================================

   28. NEWSLETTER

   ============================================================ */

.pps-newsletter { background: var(--pps-primary-dark); padding: 56px 0; }



.pps-newsletter-form { display: flex; gap: 0; max-width: 480px; margin: 0 auto; }



.pps-newsletter-input {

  flex: 1;

  height: 48px;

  padding: 0 16px;

  font-family: var(--pps-font-body);

  font-size: 0.9375rem;

  border: 2px solid rgba(255,255,255,0.18);

  border-right: none;

  border-radius: var(--pps-btn-radius) 0 0 var(--pps-btn-radius);

  background: rgba(255,255,255,0.07);

  color: var(--pps-white);

  outline: none;

  transition: var(--pps-transition);

}



.pps-newsletter-input::placeholder { color: rgba(255,255,255,0.38); }

.pps-newsletter-input:focus { background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.38); }



.pps-newsletter-btn {

  height: 48px;

  padding: 0 22px;

  background: var(--pps-primary-accent);

  color: var(--pps-white);

  font-family: var(--pps-font-body);

  font-weight: 700;

  font-size: 0.9375rem;

  border: none;

  border-radius: 0 var(--pps-btn-radius) var(--pps-btn-radius) 0;

  cursor: pointer;

  transition: var(--pps-transition);

  white-space: nowrap;

}



.pps-newsletter-btn:hover { background: var(--pps-accent-hover); }

.pps-newsletter-trust { text-align: center; margin-top: 11px; font-size: 0.8rem; color: rgba(255,255,255,0.38); }



/* ============================================================

   29. FOOTER — 6-COLUMN

   ============================================================ */

.pps-footer { background: var(--pps-secondary-dark); padding: 56px 0 0; }



.pps-footer-col-title { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: var(--pps-white); margin-bottom: 16px; padding-bottom: 9px; border-bottom: 2px solid var(--pps-primary-accent); display: inline-block; }



.pps-footer-logo-mark { width: 42px; height: 42px; background: var(--pps-primary-accent); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-family: var(--pps-font-display); font-size: 1rem; font-weight: 800; color: var(--pps-white); margin-bottom: 12px; }



.pps-footer-desc { font-size: 0.875rem; color: rgba(255,255,255,0.58); line-height: 1.7; margin-bottom: 10px; }

.pps-footer-updated { font-size: 0.7rem; font-weight: 700; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.07em; }



.pps-footer-nav { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 7px; }

.pps-footer-nav li a { font-size: 0.875rem; color: rgba(255,255,255,0.62); transition: var(--pps-transition-fast); text-decoration: none; display: block; }

.pps-footer-nav li a:hover { color: var(--pps-white); padding-left: 4px; text-decoration: none; }



.pps-footer-bottom { background: rgba(0,0,0,0.22); padding: 16px 0; margin-top: 48px; }



.pps-footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.8rem; color: rgba(255,255,255,0.38); }

.pps-footer-bottom a { color: rgba(255,255,255,0.45); }

.pps-footer-bottom a:hover { color: var(--pps-white); text-decoration: none; }



/* ============================================================

   30. HERO

   ============================================================ */

.pps-hero {

  position: relative;

  min-height: 560px;

  display: flex;

  align-items: center;

  overflow: hidden;

  background: var(--pps-primary-dark);

}



.pps-hero-bg {

  position: absolute;

  inset: 0;

  background: linear-gradient(135deg, var(--pps-primary-dark) 0%, var(--pps-secondary-dark) 55%, #1b3a6b 100%);

}



.pps-hero-pattern {

  position: absolute;

  inset: 0;

  opacity: 0.04;

  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.8) 1px, transparent 0);

  background-size: 32px 32px;

}



.pps-hero-glow {

  position: absolute;

  top: -20%;

  right: 5%;

  width: 600px;

  height: 600px;

  background: radial-gradient(circle, rgba(233,69,96,0.18) 0%, transparent 65%);

  pointer-events: none;

}



.pps-hero-content { position: relative; z-index: 2; padding: 90px 0; }



.pps-hero h1 { color: var(--pps-white); font-size: clamp(2.2rem, 5.5vw, 3.5rem); font-weight: 800; line-height: 1.08; margin-bottom: 18px; }

.pps-hero h1 span { color: var(--pps-primary-accent); }



.pps-hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.75); margin-bottom: 34px; max-width: 520px; line-height: 1.65; }



.pps-hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }



.pps-hero-trust { display: flex; flex-wrap: wrap; gap: 18px; }



.pps-hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; font-weight: 600; color: rgba(255,255,255,0.72); }

.pps-hero-trust-item::before { content: '✓'; width: 19px; height: 19px; background: rgba(45,138,78,0.28); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; color: #6ee89a; font-weight: 700; flex-shrink: 0; }



/* ============================================================

   31. SECTIONS & UTILITIES

   ============================================================ */

.pps-section { padding: var(--pps-section-pad) 0; }

.pps-section-sm { padding: var(--pps-section-pad-sm) 0; }

.pps-section-light { background: var(--pps-light-bg); }

.pps-section-header { margin-bottom: 40px; }

.pps-section-header.text-center { text-align: center; }



.pps-divider { height: 1px; background: var(--pps-border-light); margin: 2rem 0; }



.pps-table-guide { width: 100%; border-collapse: collapse; font-size: 0.875rem; margin: 1rem 0; }

.pps-table-guide th { background: var(--pps-primary-dark); color: var(--pps-white); padding: 10px 14px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; text-align: left; }

.pps-table-guide td { padding: 10px 14px; border-bottom: 1px solid var(--pps-border-light); vertical-align: top; }

.pps-table-guide tr:nth-child(even) td { background: var(--pps-light-bg); }

.pps-table-guide tr:last-child td { border-bottom: none; }



.pps-retailer-links { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; margin-top: 8px; }

.pps-retailer-link { font-size: 0.8rem; font-weight: 600; color: var(--pps-text-grey); border: 1px solid var(--pps-border); padding: 4px 11px; border-radius: 20px; transition: var(--pps-transition-fast); }

.pps-retailer-link:hover { border-color: var(--pps-primary-accent); color: var(--pps-primary-accent); text-decoration: none; }



.pps-updated { display: inline-flex; align-items: center; gap: 6px; font-size: 0.8rem; font-weight: 600; color: var(--pps-text-grey); padding: 4px 11px; background: var(--pps-light-bg); border-radius: 20px; border: 1px solid var(--pps-border); }

.pps-count-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 0.8rem; font-weight: 600; color: var(--pps-success); padding: 4px 11px; background: var(--pps-success-bg); border-radius: 20px; }



/* Review page layout */

.pps-review-layout { display: grid; grid-template-columns: 1fr 300px; gap: 36px; align-items: start; }

.pps-review-main { min-width: 0; }

.pps-review-product-layout { display: grid; grid-template-columns: 1fr 260px; gap: 24px; margin-bottom: 1.75rem; }

.pps-product-section { padding-top: 2.5rem; border-top: 2px solid var(--pps-border-light); margin-top: 2.5rem; }

.pps-product-rank { font-family: var(--pps-font-display); font-size: 2.2rem; font-weight: 800; color: var(--pps-primary-accent); opacity: 0.22; line-height: 1; margin-bottom: -6px; }



/* ============================================================

   32. RESPONSIVE

   ============================================================ */

@media (max-width: 991px) {

  :root { --pps-section-pad: 56px; --pps-section-pad-sm: 36px; }

  .pps-review-layout { grid-template-columns: 1fr; }

  .pps-review-product-layout { grid-template-columns: 1fr; }

  .pps-toc-sidebar { display: none; }

  .pps-pros-cons { grid-template-columns: 1fr; }

}



@media (max-width: 767px) {

  :root { --pps-section-pad: 44px; --pps-section-pad-sm: 28px; --pps-card-pad: 18px; }

  .pps-header-row1 { height: 60px; }

  .pps-logo-text span { display: none; }

  .pps-search-form { width: auto; flex: 1; max-width: 180px; }

  .pps-nav { display: none; }

  .pps-hamburger { display: flex; }

  .pps-hero { min-height: auto; }

  .pps-hero-content { padding: 60px 24px; }

  .pps-hero-ctas { flex-direction: column; }

  .pps-hero-ctas .pps-btn { width: 100%; justify-content: center; }

  .pps-featured-card-footer { flex-direction: column; }

  .pps-newsletter-form { flex-direction: column; }

  .pps-newsletter-input { border-right: 2px solid rgba(255,255,255,0.18); border-radius: var(--pps-btn-radius); }

  .pps-newsletter-btn { border-radius: var(--pps-btn-radius); }

  .pps-author-box { flex-direction: column; align-items: center; text-align: center; }

  .pps-filter-inner { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; -webkit-overflow-scrolling: touch; }

  .pps-filter-label { display: none; }

  .pps-footer { padding: 40px 0 0; }

}



/* ============================================================

   33. ACCESSIBILITY

   ============================================================ */

:focus-visible { outline: 3px solid var(--pps-primary-accent); outline-offset: 2px; }



.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }



.pps-skip-link { position: absolute; top: -100%; left: 50%; transform: translateX(-50%); background: var(--pps-primary-accent); color: var(--pps-white); padding: 10px 20px; border-radius: 0 0 8px 8px; font-weight: 700; transition: top 0.2s; z-index: 9999; }

.pps-skip-link:focus { top: 0; }



@media print {

  .pps-header, .pps-footer, .pps-newsletter, .pps-tools-cta, .pps-toc-sidebar { display: none !important; }

  body.pps-body { font-size: 12pt; }

  a { color: inherit; text-decoration: none; }

}



/* ============================================================

   34. AUTHOR PAGE

   ============================================================ */

.author-hero { background: linear-gradient(135deg, var(--pps-primary-dark) 0%, var(--pps-secondary-dark) 100%); padding: 56px 0 48px }

.author-avatar-wrap { width: 110px; height: 110px; border-radius: 50%; background: var(--pps-primary-accent); display: flex; align-items: center; justify-content: center; font-size: 2.2rem; font-weight: 700; color: var(--pps-white); border: 4px solid rgba(255, 255, 255, .2); flex-shrink: 0 }

.author-name { font-size: 1.9rem; font-weight: 700; color: var(--pps-white); margin-bottom: 4px }

.author-role { font-size: .95rem; color: rgba(255, 255, 255, .75); margin-bottom: 12px }

.author-hero-bio { font-size: .9375rem; color: rgba(255, 255, 255, .85); line-height: 1.7; max-width: 640px }

.author-badge { display: inline-block; background: rgba(233, 69, 96, .2); border: 1px solid rgba(233, 69, 96, .4); color: #f9a8b8; font-size: .75rem; font-weight: 600; padding: 4px 12px; border-radius: 20px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .06em }

.author-main { padding: 56px 0 64px }

.author-section-card { background: var(--pps-white); border: 1px solid var(--pps-border-light); border-radius: 10px; padding: 28px 30px; margin-bottom: 24px }

.section-icon-title { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 2px solid var(--pps-light-bg) }

.section-icon { width: 40px; height: 40px; border-radius: 8px; background: var(--pps-secondary-dark); display: flex; align-items: center; justify-content: center; color: var(--pps-white); font-size: 1rem; flex-shrink: 0 }

.section-title { font-size: 1.05rem; font-weight: 700; color: var(--pps-primary-dark); margin: 0 }

.expertise-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px }

.expertise-item { display: flex; align-items: flex-start; gap: 10px; padding: 14px 16px; background: var(--pps-light-bg); border-radius: 8px; border-left: 3px solid var(--pps-primary-accent) }

.expertise-item i { color: var(--pps-primary-accent); font-size: .9rem; margin-top: 2px; flex-shrink: 0 }

.expertise-item span { font-size: .875rem; font-weight: 500; color: var(--pps-text-dark); line-height: 1.4 }

.approach-list { list-style: none; padding: 0; margin: 0 }

.approach-list li { display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--pps-light-bg); font-size: .9rem; color: var(--pps-text-dark); line-height: 1.6 }

.approach-list li:last-child { border-bottom: none }

.approach-list li i { color: var(--pps-primary-accent); font-size: .85rem; margin-top: 3px; flex-shrink: 0 }

.skills-wrap { display: flex; flex-wrap: wrap; gap: 10px }

.skill-tag { background: var(--pps-light-bg); border: 1px solid var(--pps-border-light); border-radius: 6px; padding: 7px 14px; font-size: .8125rem; font-weight: 500; color: var(--pps-secondary-dark) }

.intl-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px }

.intl-item { background: var(--pps-light-bg); border-radius: 8px; padding: 14px 16px; font-size: .875rem; color: var(--pps-text-dark); line-height: 1.5; display: flex; align-items: flex-start; gap: 10px }

.intl-item i { color: var(--pps-secondary-dark); margin-top: 2px; flex-shrink: 0 }

.edu-card { display: flex; align-items: flex-start; gap: 18px; padding: 20px; background: var(--pps-light-bg); border-radius: 10px }

.edu-icon { width: 48px; height: 48px; border-radius: 10px; background: var(--pps-secondary-dark); display: flex; align-items: center; justify-content: center; color: var(--pps-white); font-size: 1.2rem; flex-shrink: 0 }

.edu-degree { font-size: 1rem; font-weight: 600; color: var(--pps-primary-dark); margin-bottom: 3px }

.edu-institution { font-size: .875rem; color: var(--pps-secondary-dark); font-weight: 500; margin-bottom: 8px }

.edu-details { font-size: .8125rem; color: var(--pps-text-grey); line-height: 1.6; margin: 0 }

.lang-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--pps-light-bg); border-radius: 8px; padding: 10px 16px; font-size: .875rem }

.lang-name { font-weight: 600; color: var(--pps-text-dark) }

.lang-level { color: var(--pps-text-grey); font-size: .8125rem }

.editorial-callout { background: rgba(15, 52, 96, .06); border-left: 4px solid var(--pps-secondary-dark); border-radius: 0 8px 8px 0; padding: 20px 24px; margin-top: 8px }

.editorial-callout p { font-size: .9rem; color: var(--pps-text-dark); line-height: 1.7; margin: 0 0 10px }

.editorial-callout p:last-child { margin: 0 }

.editorial-support-list { list-style: none; padding: 0; margin: 12px 0 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 8px }

.editorial-support-list li { display: flex; align-items: center; gap: 8px; font-size: .875rem; color: var(--pps-text-dark) }

.editorial-support-list li i { color: var(--pps-secondary-dark); font-size: .8rem }

.transparency-box { background: #fff9e6; border: 1px solid #fcd34d; border-radius: 8px; padding: 18px 22px; font-size: .875rem; color: #78350f; line-height: 1.6 }

.transparency-box i { color: #d97706; margin-right: 6px }

.author-sidebar { position: sticky; top: 24px }

.sidebar-card { background: var(--pps-white); border: 1px solid var(--pps-border-light); border-radius: 10px; padding: 22px 24px; margin-bottom: 20px }

.sidebar-card-title { font-size: .875rem; font-weight: 700; color: var(--pps-primary-dark); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--pps-light-bg) }

.sidebar-stat { display: flex; align-items: center; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--pps-light-bg); font-size: .875rem }

.sidebar-stat:last-child { border-bottom: none }

.sidebar-stat i { color: var(--pps-secondary-dark); width: 16px; text-align: center; flex-shrink: 0 }

.sidebar-stat .label { color: var(--pps-text-grey) }

.sidebar-stat .value { color: var(--pps-text-dark); font-weight: 500 }



@media(max-width:767.98px) {

  .author-hero { padding: 36px 0 32px }

  .author-name { font-size: 1.5rem }

  .author-section-card { padding: 20px 18px }

  .expertise-grid { grid-template-columns: 1fr }

  .intl-grid { grid-template-columns: 1fr }

}

.explor-the-site-main .cta-btn {

    display: block;

    text-align: center;

    padding: 12px 20px;

    border-radius: 8px;

    font-size: .875rem;

    font-weight: 600;

    text-decoration: none;

    transition: opacity .2s;

    margin-bottom: 10px;

}

.explor-the-site-main .cta-primary {

    background: var(--pps-primary-accent);

    color: var(--pps-white);

}

.explor-the-site-main .cta-secondary {

    background: var(--pps-secondary-dark);

    color: var(--pps-white);

}

.explor-the-site-main .cta-outline {

    background: transparent;

    color: var(--pps-secondary-dark);

    border: 1px solid var(--pps-secondary-dark);

}

.explor-the-site-main .cta-outline:hover {

    background: var(--pps-secondary-dark);

    color: var(--pps-white);

    opacity: 1;

}

.pps-usecase-img-wrap>img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}

/* ============================================================

   END — portable-powerstation.co.uk master-styles.css v1.0

   ============================================================ */

section.pps-section .pps-featured-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

  /* FAQ */

  .faq-section {
    margin-top: 2rem;
  }

  .faq-item {
    border: 1px solid var(--border-light);
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
  }

  .faq-question {
    background: var(--light-bg);
    padding: 14px 18px;
    font-weight: 600;
    font-size: .9375rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-dark);
  }

  .faq-question:hover {
    background: #e9ecef;
  }

  .faq-answer {
    padding: 14px 18px;
    font-size: .9rem;
    line-height: 1.75;
    display: none;
    border-top: 1px solid var(--border-light);
    color: var(--text-dark);
  }

  .faq-answer.open {
    display: block;
  }

  .faq-chevron {
    transition: transform .2s;
    color: var(--primary-accent);
  }

  .faq-chevron.open {
    transform: rotate(180deg);
  }