/*
 * GariPK - Complete PakWheels Clone CSS Design System
 */

:root {
  --pw-navy: #0b2341;
  --pw-navy-dark: #07172b;
  --pw-navy-light: #163761;
  --pw-blue: #0066cc;
  --pw-blue-hover: #0052a3;
  --pw-blue-light: #e8f4fc;
  --pw-red: #b73439;
  --pw-red-hover: #9e272b;
  --pw-green: #008a00;
  --pw-green-hover: #007000;
  --pw-green-light: #eaf8ea;
  --pw-yellow: #ffb000;
  --pw-bg: #f2f3f7;
  --pw-card-bg: #ffffff;
  --pw-border: #e6e9ee;
  --pw-text-main: #232931;
  --pw-text-muted: #666e7a;
  --pw-text-light: #9aa1ab;
  --pw-shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --pw-shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --pw-radius: 6px;
  --pw-font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Base Styles */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--pw-font);
  background-color: var(--pw-bg);
  color: var(--pw-text-main);
  line-height: 1.5;
  font-size: 14px;
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--pw-blue); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: inherit; }

/* Utilities */
.pw-container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.d-flex { display: flex; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.nomargin { margin: 0 !important; }

/* 1. Top Mini Bar */
.pw-top-bar {
  background-color: var(--pw-navy-dark);
  color: #a0b2c6;
  font-size: 12px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pw-top-link { color: #a0b2c6; }
.pw-top-link:hover { color: #ffffff; }
.pw-top-link i { margin-right: 4px; }
.pw-top-sep { margin: 0 10px; color: rgba(255,255,255,0.2); }
.pw-lang-toggle { font-weight: 600; color: #ffffff; }

/* 2. Main Header */
.pw-main-header {
  background-color: var(--pw-navy);
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.pw-brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 10px 0;
}
.pw-main-logo-img {
  height: 44px;
  width: auto;
  max-width: 175px;
  object-fit: contain;
  display: block;
  transition: transform 0.2s ease;
}
.pw-brand-logo:hover .pw-main-logo-img {
  transform: scale(1.03);
}
.pw-logo-wheel {
  font-size: 26px;
  color: var(--pw-red);
  display: flex;
  align-items: center;
}
.pw-logo-text {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #ffffff;
}
.pw-logo-highlight {
  color: var(--pw-red);
}

/* Nav Menu */
.pw-navbar { display: flex; }
.pw-nav-list { display: flex; }
.pw-nav-item { position: relative; }
.pw-nav-link {
  display: flex;
  align-items: center;
  padding: 22px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #d1dbe6;
  white-space: nowrap;
}
.pw-nav-link:hover,
.pw-nav-item:hover > .pw-nav-link {
  color: #ffffff;
}
.pw-arrow { font-size: 10px; margin-left: 5px; opacity: 0.7; transition: transform 0.2s; }
.pw-nav-item:hover .pw-arrow { transform: rotate(180deg); }
.pw-nav-badge {
  background: var(--pw-red);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 3px;
  margin-left: 5px;
}

/* Mega Dropdowns */
.pw-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  color: var(--pw-text-main);
  border-radius: 0 0 var(--pw-radius) var(--pw-radius);
  box-shadow: var(--pw-shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 1100;
}
.pw-nav-item:hover .pw-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.pw-mega-menu {
  width: 780px;
  padding: 24px;
}
.pw-mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pw-mega-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--pw-navy);
  margin-bottom: 12px;
  font-weight: 700;
  border-bottom: 2px solid var(--pw-red);
  padding-bottom: 4px;
  display: inline-block;
}
.pw-mega-col ul li { margin-bottom: 8px; }
.pw-mega-col ul li a {
  font-size: 13px;
  color: #4a5568;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pw-mega-col ul li a:hover {
  color: var(--pw-red);
  padding-left: 3px;
}
.pw-two-col-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}
.pw-simple-dropdown {
  min-width: 220px;
  padding: 12px 0;
}
.pw-simple-dropdown ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  color: #4a5568;
  font-size: 13px;
}
.pw-simple-dropdown ul li a:hover {
  background: #f7fafc;
  color: var(--pw-red);
}

/* Header Right Buttons */
.pw-post-ad-dropdown { position: relative; }
.pw-btn-post-ad {
  background: var(--pw-red);
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: var(--pw-radius);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
}
.pw-btn-post-ad:hover {
  background: var(--pw-red-hover);
  color: #ffffff;
}
.pw-post-ad-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border-radius: var(--pw-radius);
  box-shadow: var(--pw-shadow-md);
  width: 170px;
  padding: 8px 0;
  margin-top: 6px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  z-index: 1100;
}
.pw-post-ad-dropdown:hover .pw-post-ad-menu {
  opacity: 1;
  visibility: visible;
}
.pw-post-ad-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  font-size: 13px;
  color: var(--pw-text-main);
}
.pw-post-ad-menu a:hover {
  background: #f4f6f8;
  color: var(--pw-red);
}

/* Mobile Toggle */
.pw-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  gap: 5px;
  margin-left: 12px;
}
.pw-mobile-toggle span {
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
}

/* Mobile Drawer */
.pw-mobile-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: #ffffff;
  z-index: 2000;
  transition: right 0.3s ease;
  box-shadow: -2px 0 10px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
}
.pw-mobile-drawer.open { right: 0; }
.pw-drawer-header {
  background: var(--pw-navy);
  color: #fff;
  padding: 16px;
}
.pw-drawer-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}
.pw-drawer-body { padding: 20px; overflow-y: auto; }
.pw-btn-post-ad-mobile {
  display: block;
  text-align: center;
  background: var(--pw-red);
  color: #fff;
  padding: 12px;
  border-radius: var(--pw-radius);
  font-weight: 600;
  margin-bottom: 20px;
}
.pw-drawer-list li { border-bottom: 1px solid #f0f0f0; }
.pw-drawer-list li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  font-size: 15px;
  color: var(--pw-text-main);
  font-weight: 500;
}
.pw-drawer-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1999;
}
.pw-drawer-backdrop.open { display: block; }

/* 3. Hero Section */
.pw-hero-section {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1600&auto=format&fit=crop&q=80');
  background-size: cover;
  background-position: center;
  padding: 70px 0 80px 0;
  color: #ffffff;
}
.pw-hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(11,35,65,0.85) 0%, rgba(11,35,65,0.75) 100%);
}
.pw-hero-content {
  position: relative;
  z-index: 10;
}
.pw-hero-title {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.pw-hero-subtitle {
  font-size: 17px;
  opacity: 0.9;
  margin-bottom: 35px;
}

/* Horizontal Search Widget */
.pw-search-widget {
  max-width: 960px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: var(--pw-radius);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  padding: 6px;
}
.pw-search-form {
  display: flex;
  align-items: center;
  width: 100%;
}
.pw-search-col {
  position: relative;
  padding: 8px 12px;
  border-right: 1px solid #e2e8f0;
}
.pw-col-keyword { flex: 2.2; }
.pw-col-city { flex: 1.4; }
.pw-col-price { flex: 1.6; }
.pw-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 14px;
}
.pw-search-col input,
.pw-search-col select {
  width: 100%;
  border: none;
  outline: none;
  font-size: 14px;
  padding-left: 24px;
  background: transparent;
  color: var(--pw-text-main);
  height: 38px;
}
.pw-price-select-wrap {
  cursor: pointer;
  padding-left: 24px;
}
.pw-price-label {
  font-size: 13px;
  color: #64748b;
  display: block;
  line-height: 18px;
}
.pw-price-dropdown-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  box-shadow: var(--pw-shadow-md);
  border-radius: var(--pw-radius);
  padding: 12px;
  width: 250px;
  z-index: 1200;
  margin-top: 10px;
}
.pw-col-price:hover .pw-price-dropdown-panel { display: block; }
.pw-price-inputs input {
  border: 1px solid #cbd5e1 !important;
  border-radius: 4px;
  padding: 6px 8px !important;
  font-size: 13px;
  text-align: center;
}
.pw-price-to { margin: 0 8px; color: #94a3b8; }
.pw-btn-hero-search {
  background: var(--pw-green);
  color: #ffffff;
  border: none;
  width: 60px;
  height: 48px;
  border-radius: var(--pw-radius);
  cursor: pointer;
  font-size: 18px;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pw-btn-hero-search:hover { background: var(--pw-green-hover); }
.pw-hero-footer-link { margin-top: 20px; }
.pw-hero-footer-link a {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  background: rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(4px);
}
.pw-hero-footer-link a:hover { background: rgba(255,255,255,0.25); color: #fff; }

/* 4. Section General */
.pw-section { padding: 45px 0; }
.pw-section-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--pw-navy);
}
.pw-section-sub {
  font-size: 14px;
  color: var(--pw-text-muted);
  margin-top: 4px;
}
.pw-link-all {
  color: var(--pw-blue);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.pw-link-all:hover { text-decoration: underline; }

/* Sell Promo Grid */
.pw-sell-promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.pw-promo-card {
  background: #ffffff;
  border-radius: var(--pw-radius);
  padding: 30px;
  border: 1px solid var(--pw-border);
  box-shadow: var(--pw-shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
}
.pw-promo-badge-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #eaf8ea;
  color: var(--pw-green);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}
.pw-badge-blue {
  background: var(--pw-blue-light);
  color: var(--pw-blue);
}
.pw-promo-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--pw-navy);
  margin-bottom: 15px;
}
.pw-promo-bullets {
  margin-bottom: 25px;
  flex-grow: 1;
}
.pw-promo-bullets li {
  font-size: 14px;
  color: #4a5568;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pw-promo-bullets li i { color: var(--pw-green); }
.pw-btn-promo {
  padding: 12px 24px;
  border-radius: var(--pw-radius);
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.pw-btn-red { background: var(--pw-red); color: #fff; }
.pw-btn-red:hover { background: var(--pw-red-hover); color: #fff; }
.pw-btn-blue { background: var(--pw-blue); color: #fff; }
.pw-btn-blue:hover { background: var(--pw-blue-hover); color: #fff; }

/* 5. Browse Used Cars Tabs */
.pw-tabs-wrapper {
  background: #ffffff;
  border-radius: var(--pw-radius);
  border: 1px solid var(--pw-border);
  padding: 20px;
  margin-top: 15px;
}
.pw-tabs-header {
  border-bottom: 1px solid var(--pw-border);
  gap: 10px;
}
.pw-tab-btn {
  background: none;
  border: none;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--pw-text-muted);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
}
.pw-tab-btn:hover { color: var(--pw-navy); }
.pw-tab-btn.active {
  color: var(--pw-red);
  border-bottom-color: var(--pw-red);
}
.pw-tabs-content { padding-top: 25px; }
.pw-tab-pane { display: none; }
.pw-tab-pane.active { display: block; }
.pw-grid-icons {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 15px;
}
.pw-icon-card {
  text-align: center;
  padding: 15px 10px;
  border: 1px solid var(--pw-border);
  border-radius: var(--pw-radius);
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pw-icon-card:hover {
  border-color: var(--pw-red);
  box-shadow: var(--pw-shadow-sm);
  transform: translateY(-2px);
}
.pw-icon-img { margin-bottom: 10px; }
.pw-icon-title { font-size: 13px; font-weight: 600; color: var(--pw-navy); }

.pw-grid-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pw-pill-card {
  background: #f8fafc;
  border: 1px solid var(--pw-border);
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--pw-text-main);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pw-pill-card:hover {
  background: #ffffff;
  border-color: var(--pw-red);
  color: var(--pw-red);
}

/* ==========================================================================
   Homepage Category Carousel & Brand Badges (PakWheels Style)
   ========================================================================== */
.pw-carousel-container {
  position: relative;
  width: 100%;
  padding: 0 45px;
  box-sizing: border-box;
}
.pw-carousel-viewport {
  overflow: hidden;
  width: 100%;
  border-radius: 8px;
}
.pw-carousel-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
  will-change: transform;
}
.pw-carousel-slide {
  flex: 0 0 100%;
  min-width: 100%;
  box-sizing: border-box;
}
.pw-category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.pw-category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 16px 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  min-height: 108px;
  box-sizing: border-box;
}
.pw-category-card:hover {
  border-color: #002f6c;
  box-shadow: 0 4px 14px rgba(0, 47, 108, 0.12);
  transform: translateY(-3px);
}
.pw-category-card:hover .pw-category-name {
  color: #b91c1c;
}
.pw-category-icon {
  width: 100%;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.pw-category-icon img {
  max-width: 68px;
  max-height: 48px;
  object-fit: contain;
  transition: transform 0.25s ease;
}
.pw-category-card:hover .pw-category-icon img {
  transform: scale(1.08);
}
.pw-category-name {
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  text-align: center;
  line-height: 1.25;
  transition: color 0.2s ease;
}
.pw-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #1e293b;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  z-index: 5;
  transition: all 0.2s ease;
  padding: 0;
}
.pw-slider-nav:hover:not(:disabled) {
  background: #002f6c;
  border-color: #002f6c;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 47, 108, 0.25);
}
.pw-slider-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
.pw-slider-nav.pw-prev {
  left: 0;
}
.pw-slider-nav.pw-next {
  right: 0;
}
.pw-slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.pw-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-block;
}
.pw-slider-dot:hover {
  background: #94a3b8;
}
.pw-slider-dot.active {
  background: #002f6c;
  width: 24px;
  border-radius: 10px;
}

/* New Cars by Make (Circular Badges Grid) */
.pw-brands-section {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 40px 0;
  margin: 35px 0;
}
.pw-brands-circle-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px 16px;
  margin-top: 25px;
}
.pw-brand-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.pw-brand-circle-badge {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  transition: all 0.25s ease;
  box-sizing: border-box;
}
.pw-brand-circle-badge img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.25s ease;
}
.pw-brand-circle-name {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  text-align: center;
  transition: color 0.2s ease;
}
.pw-brand-circle-item:hover .pw-brand-circle-badge {
  transform: translateY(-4px);
  border-color: #002f6c;
  box-shadow: 0 8px 20px rgba(0, 47, 108, 0.16);
}
.pw-brand-circle-item:hover .pw-brand-circle-badge img {
  transform: scale(1.08);
}
.pw-brand-circle-item:hover .pw-brand-circle-name {
  color: #002f6c;
}

@media (max-width: 991px) {
  .pw-category-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .pw-brands-circle-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 767px) {
  .pw-carousel-container {
    padding: 0 34px;
  }
  .pw-category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .pw-brands-circle-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .pw-brand-circle-badge {
    width: 76px;
    height: 76px;
    padding: 10px;
  }
  .pw-brand-circle-name {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .pw-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pw-brand-circle-badge {
    width: 68px;
    height: 68px;
    padding: 8px;
  }
  .pw-brand-circle-name {
    font-size: 12px;
  }
}

/* 6. Car Cards Grid (Vertical) */
.pw-cars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.pw-car-card {
  background: #ffffff;
  border-radius: var(--pw-radius);
  border: 1px solid var(--pw-border);
  overflow: hidden;
  box-shadow: var(--pw-shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.pw-car-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--pw-shadow-md);
}
.pw-card-img-wrap {
  position: relative;
  width: 100%;
  height: 190px;
  overflow: hidden;
  background: #e2e8f0;
}
.pw-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.pw-car-card:hover .pw-card-img-wrap img {
  transform: scale(1.04);
}
.pw-badge-featured {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--pw-red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 3px;
  letter-spacing: 0.5px;
}
.pw-badge-inspected {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(11, 35, 65, 0.9);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  backdrop-filter: blur(2px);
}
.pw-badge-inspected i { color: var(--pw-green); }
.pw-card-body { padding: 15px; }
.pw-car-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--pw-navy);
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pw-card-price {
  font-size: 17px;
  font-weight: 800;
  color: var(--pw-green);
  margin-bottom: 6px;
}
.pw-card-city {
  font-size: 13px;
  color: var(--pw-text-muted);
  margin-bottom: 8px;
}
.pw-card-meta {
  font-size: 12px;
  color: var(--pw-text-light);
  border-top: 1px solid #f1f5f9;
  padding-top: 8px;
}

/* Horizontal Car Card (Search Results Layout) */
.pw-car-card-h {
  background: #ffffff;
  border-radius: var(--pw-radius);
  border: 1px solid var(--pw-border);
  padding: 16px;
  margin-bottom: 18px;
  display: flex;
  gap: 20px;
  box-shadow: var(--pw-shadow-sm);
  transition: box-shadow 0.2s;
}
.pw-car-card-h:hover { box-shadow: var(--pw-shadow-md); }
.pw-card-h-img {
  position: relative;
  width: 250px;
  height: 170px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  background: #e2e8f0;
}
.pw-card-h-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pw-card-h-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pw-card-h-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.pw-card-h-header .pw-car-title {
  font-size: 18px;
  margin-bottom: 4px;
}
.pw-price-main {
  font-size: 20px;
  font-weight: 800;
  color: var(--pw-green);
}
.pw-specs-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0;
  font-size: 13px;
  color: #4a5568;
}
.pw-spec-sep { color: #cbd5e1; }
.pw-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f1f5f9;
  padding-top: 12px;
}
.pw-card-updated { font-size: 12px; color: var(--pw-text-light); }
.pw-card-actions { display: flex; gap: 8px; }
.pw-btn-call-reveal {
  background: #ffffff;
  border: 1px solid var(--pw-blue);
  color: var(--pw-blue);
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.pw-btn-call-reveal:hover { background: var(--pw-blue-light); }
.pw-btn-wa {
  background: #25d366;
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.pw-btn-wa:hover { background: #1eb957; color: #fff; }

/* 7. Offerings / Services Section */
.pw-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 25px;
}
.pw-service-card {
  background: #ffffff;
  border-radius: var(--pw-radius);
  border: 1px solid var(--pw-border);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.2s;
}
.pw-service-card:hover {
  box-shadow: var(--pw-shadow-md);
  border-color: var(--pw-blue);
  transform: translateY(-2px);
}
.pw-service-icon {
  width: 48px;
  height: 48px;
  background: var(--pw-blue-light);
  color: var(--pw-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.pw-service-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--pw-navy);
  margin-bottom: 4px;
}
.pw-service-info p {
  font-size: 13px;
  color: var(--pw-text-muted);
  line-height: 1.4;
}

/* 8. Stats Section */
.pw-stats-section {
  background: var(--pw-navy);
  color: #ffffff;
  padding: 40px 0;
}
.pw-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pw-stat-number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}
.pw-stat-label {
  font-size: 14px;
  color: #a0b2c6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* 9. Breadcrumbs */
.pw-breadcrumb-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--pw-border);
  padding: 10px 0;
  font-size: 12px;
}
.pw-breadcrumb { gap: 8px; color: var(--pw-text-muted); }
.pw-breadcrumb a:hover { color: var(--pw-red); }
.pw-breadcrumb .active { color: var(--pw-navy); font-weight: 600; }

/* 10. Archive / Search Results Layout */
.pw-archive-wrapper { padding: 30px 0 60px 0; }
.pw-archive-layout { gap: 25px; }
.pw-filter-sidebar {
  width: 280px;
  flex-shrink: 0;
  background: #ffffff;
  border-radius: var(--pw-radius);
  border: 1px solid var(--pw-border);
  padding: 20px;
  align-self: flex-start;
}
.pw-filter-header {
  border-bottom: 1px solid var(--pw-border);
  padding-bottom: 12px;
  margin-bottom: 18px;
}
.pw-filter-heading { font-size: 16px; font-weight: 700; color: var(--pw-navy); }
.pw-btn-reset {
  background: none;
  border: none;
  color: var(--pw-blue);
  font-size: 13px;
  cursor: pointer;
}
.pw-btn-reset:hover { text-decoration: underline; }
.pw-filter-group { margin-bottom: 20px; }
.pw-filter-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--pw-navy);
  margin-bottom: 8px;
}
.pw-filter-select,
.pw-input-with-icon input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--pw-border);
  border-radius: 4px;
  font-size: 13px;
  outline: none;
  background: #fff;
}
.pw-input-with-icon { position: relative; }
.pw-input-with-icon i {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
}
.pw-input-with-icon input { padding-left: 30px; }
.pw-price-range-inputs,
.pw-year-inputs { gap: 8px; }
.pw-price-range-inputs input,
.pw-year-inputs input {
  width: 50%;
  padding: 8px;
  border: 1px solid var(--pw-border);
  border-radius: 4px;
  font-size: 13px;
  text-align: center;
}
.pw-price-quick-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.pw-quick-price-btn {
  background: #f1f5f9;
  border: none;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
  color: #475569;
}
.pw-quick-price-btn:hover { background: #e2e8f0; }
.pw-radio-options {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pw-radio-label {
  font-size: 13px;
  color: #475569;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pw-btn-apply-filters {
  width: 100%;
  background: var(--pw-navy);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}
.pw-btn-apply-filters:hover { background: var(--pw-navy-light); }

/* Main Listings Area */
.pw-listings-main { flex-grow: 1; }
.pw-results-header {
  background: #ffffff;
  padding: 15px 20px;
  border-radius: var(--pw-radius);
  border: 1px solid var(--pw-border);
  margin-bottom: 20px;
}
.pw-results-h1 { font-size: 18px; font-weight: 700; color: var(--pw-navy); }
.pw-results-count { font-size: 13px; color: var(--pw-text-muted); }
.pw-sort-wrap label { font-size: 13px; color: var(--pw-text-muted); margin-right: 8px; }
.pw-sort-select {
  padding: 6px 10px;
  border: 1px solid var(--pw-border);
  border-radius: 4px;
  font-size: 13px;
  background: #fff;
}
.pw-active-tags {
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.pw-tag-pill {
  background: #e2e8f0;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pw-tag-pill i { cursor: pointer; color: #64748b; }
.pw-tag-pill i:hover { color: var(--pw-red); }

/* Pagination */
.pw-pagination-wrap { text-align: center; margin-top: 30px; }
.pw-pagination { display: inline-flex; gap: 6px; }
.pw-page-btn {
  background: #ffffff;
  border: 1px solid var(--pw-border);
  width: 38px;
  height: 38px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pw-page-btn:hover { border-color: var(--pw-blue); color: var(--pw-blue); }
.pw-page-btn.pw-page-active {
  background: var(--pw-blue);
  color: #ffffff;
  border-color: var(--pw-blue);
}
.pw-no-results {
  background: #ffffff;
  padding: 60px 20px;
  text-align: center;
  border-radius: var(--pw-radius);
  border: 1px solid var(--pw-border);
}
.pw-no-results i { color: #94a3b8; margin-bottom: 15px; }
.pw-no-results h3 { font-size: 20px; color: var(--pw-navy); margin-bottom: 8px; }
.pw-no-results p { color: var(--pw-text-muted); font-size: 14px; }
.pw-loader {
  background: #ffffff;
  padding: 40px;
  text-align: center;
  border-radius: var(--pw-radius);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--pw-blue);
}

/* 11. Single Car Detail Page */
.pw-single-car-wrapper { padding: 25px 0 60px 0; }
.pw-single-header {
  background: #ffffff;
  border-radius: var(--pw-radius);
  border: 1px solid var(--pw-border);
  padding: 20px 25px;
  margin-bottom: 20px;
}
.pw-single-car-title { font-size: 24px; font-weight: 800; color: var(--pw-navy); margin-bottom: 6px; }
.pw-single-meta-row { font-size: 13px; color: var(--pw-text-muted); gap: 10px; }
.pw-single-price { font-size: 26px; font-weight: 800; color: var(--pw-green); }
.pw-single-price-sub { font-size: 13px; color: var(--pw-text-muted); }
.pw-single-layout { gap: 25px; }
.pw-single-main { flex: 1; }
.pw-single-sidebar { width: 340px; flex-shrink: 0; }

/* Image Gallery */
.pw-gallery-container {
  background: #ffffff;
  border-radius: var(--pw-radius);
  border: 1px solid var(--pw-border);
  padding: 16px;
  margin-bottom: 20px;
}
.pw-gallery-main-view {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 4px;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pw-gallery-main-view img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.pw-gallery-counter {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
}
.pw-gallery-thumbs {
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.pw-gallery-thumb-item {
  width: 90px;
  height: 65px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  flex-shrink: 0;
  opacity: 0.7;
  transition: all 0.2s;
}
.pw-gallery-thumb-item:hover,
.pw-gallery-thumb-item.active {
  border-color: var(--pw-red);
  opacity: 1;
}
.pw-gallery-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Quick Specs Grid */
.pw-quick-specs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.pw-quick-spec {
  background: #ffffff;
  border: 1px solid var(--pw-border);
  border-radius: var(--pw-radius);
  padding: 14px;
  text-align: center;
}
.pw-spec-label {
  display: block;
  font-size: 12px;
  color: var(--pw-text-muted);
  margin-bottom: 4px;
}
.pw-spec-val {
  font-size: 15px;
  font-weight: 700;
  color: var(--pw-navy);
}

/* Detail Box */
.pw-detail-box {
  background: #ffffff;
  border-radius: var(--pw-radius);
  border: 1px solid var(--pw-border);
  padding: 24px;
  margin-bottom: 20px;
}
.pw-box-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--pw-navy);
  margin-bottom: 16px;
  border-bottom: 1px solid var(--pw-border);
  padding-bottom: 10px;
}
.pw-specs-table-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pw-table-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 12px;
  background: #f8fafc;
  border-radius: 4px;
}
.pw-spec-t-label { color: var(--pw-text-muted); font-size: 13px; }
.pw-spec-t-val { font-weight: 600; color: var(--pw-navy); font-size: 13px; }

/* Inspection Card */
.pw-inspection-box {
  background: #fbfdfb;
  border-color: #c7e6c7;
}
.pw-insp-icon {
  font-size: 32px;
  color: var(--pw-green);
  margin-right: 15px;
}
.pw-insp-badge-large {
  background: var(--pw-green);
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
}
.pw-insp-rating { font-size: 24px; font-weight: 800; }
.pw-insp-out { font-size: 14px; opacity: 0.8; }
.pw-insp-breakdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}
.pw-bar {
  background: #e2e8f0;
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 6px;
}
.pw-bar-fill {
  background: var(--pw-green);
  height: 100%;
}

/* Features Grid */
.pw-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.pw-feature-pill {
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pw-feature-active {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}
.pw-feature-inactive {
  background: #f8fafc;
  color: #94a3b8;
  border: 1px solid #e2e8f0;
}
.pw-check-icon { margin-left: auto; color: #16a34a; }

/* Safety Guidelines */
.pw-safety-guidelines-box {
  background: #fff8f8;
  border: 1px solid #fed7d7;
  border-radius: var(--pw-radius);
  padding: 18px;
}
.pw-safety-guidelines-box h4 {
  font-size: 15px;
  font-weight: 700;
  color: #9b1c1c;
  margin-bottom: 8px;
}
.pw-safety-guidelines-box ul li {
  font-size: 13px;
  color: #742a2a;
  margin-bottom: 6px;
  list-style-type: disc;
  margin-left: 20px;
}

/* Sidebar Contact Card */
.pw-seller-contact-card {
  background: #ffffff;
  border-radius: var(--pw-radius);
  border: 1px solid var(--pw-border);
  padding: 22px;
  margin-bottom: 20px;
}
.pw-seller-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--pw-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-right: 14px;
}
.pw-seller-name { font-size: 16px; font-weight: 700; color: var(--pw-navy); }
.pw-seller-badge { font-size: 12px; color: var(--pw-green); font-weight: 600; }
.pw-seller-actions { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.pw-btn-call-large {
  background: var(--pw-blue);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.pw-btn-call-large:hover { background: var(--pw-blue-hover); }
.pw-btn-wa-large {
  background: #25d366;
  color: #fff;
  padding: 14px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.pw-btn-wa-large:hover { background: #1eb957; color: #fff; }
.pw-sidebar-promo-card {
  background: #ffffff;
  border-radius: var(--pw-radius);
  border: 1px solid var(--pw-border);
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
}
.pw-promo-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fde8e8;
  color: var(--pw-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 10px;
}
.pw-sidebar-promo-card h4 { font-size: 16px; font-weight: 700; color: var(--pw-navy); margin-bottom: 6px; }
.pw-sidebar-promo-card p { font-size: 13px; color: var(--pw-text-muted); margin-bottom: 14px; }
.pw-btn-promo-outline {
  display: inline-block;
  border: 1px solid var(--pw-navy);
  color: var(--pw-navy);
  padding: 8px 18px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 13px;
}
.pw-btn-promo-outline:hover { background: var(--pw-navy); color: #fff; }

/* 12. Post an Ad Form Styles */
.pw-post-ad-wrapper { padding: 40px 0 70px 0; }
.pw-post-title { font-size: 28px; font-weight: 800; color: var(--pw-navy); margin-bottom: 6px; }
.pw-post-category-tabs-wrap {
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  width: 100%;
}
.pw-post-category-tabs {
  display: inline-flex;
  background: #e2e8f0;
  padding: 4px;
  border-radius: 30px;
  gap: 4px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.08);
  max-width: 100%;
}
.pw-post-category-tab {
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  background: transparent;
  color: #475569;
}
.pw-post-category-tab:hover {
  background: #cbd5e1;
  color: #002f6c;
}
.pw-post-category-tab.active {
  background: #002f6c;
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 47, 108, 0.3);
}
.pw-post-card {
  background: #ffffff;
  border-radius: var(--pw-radius);
  border: 1px solid var(--pw-border);
  padding: 35px;
  box-shadow: var(--pw-shadow-sm);
}
.pw-form-section {
  border-bottom: 1px solid var(--pw-border);
  padding-bottom: 25px;
  margin-bottom: 25px;
}
.pw-form-section:last-child { border-bottom: none; }
.pw-form-section-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--pw-navy);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pw-form-section-title i { color: var(--pw-red); }
.pw-form-row { margin-bottom: 18px; }
.pw-form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pw-form-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pw-form-group { display: flex; flex-direction: column; }
.pw-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--pw-navy);
  margin-bottom: 6px;
}
.pw-required { color: var(--pw-red); }
.pw-form-input,
.pw-form-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--pw-border);
  border-radius: 4px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.pw-form-input:focus,
.pw-form-textarea:focus { border-color: var(--pw-blue); }
.pw-price-hint { font-size: 12px; color: var(--pw-green); font-weight: 600; margin-top: 4px; }
.pw-features-checklist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.pw-feature-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  cursor: pointer;
}
.pw-file-dropzone {
  border: 2px dashed #cbd5e1;
  border-radius: 8px;
  padding: 35px 20px;
  text-align: center;
  background: #f8fafc;
  cursor: pointer;
  position: relative;
  transition: background 0.2s;
}
.pw-file-dropzone:hover { background: #f1f5f9; }
.pw-file-input {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0;
  cursor: pointer;
}
.pw-dropzone-text { margin-top: 12px; font-size: 15px; color: var(--pw-navy); }
.pw-dropzone-hint { font-size: 12px; color: var(--pw-text-muted); margin-top: 4px; }
.pw-photo-previews {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 15px;
}
.pw-preview-chip {
  position: relative;
  width: 90px;
  height: 65px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--pw-border);
}
.pw-preview-chip img { width: 100%; height: 100%; object-fit: cover; }
.pw-btn-submit-ad {
  background: var(--pw-red);
  color: #fff;
  border: none;
  padding: 16px 45px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--pw-radius);
  cursor: pointer;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pw-btn-submit-ad:hover { background: var(--pw-red-hover); }
.pw-alert-msg {
  margin-top: 15px;
  padding: 12px 18px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
}
.pw-alert-success { background: #dcfce7; color: #166534; }
.pw-alert-error { background: #fee2e2; color: #991b1b; }

/* 13. Car Inspection Service Page */
.pw-inspection-hero {
  background: linear-gradient(135deg, #0b2341 0%, #163761 100%);
  color: #ffffff;
  padding: 60px 0;
}
.pw-hero-badge {
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 15px;
}
.pw-inspection-title { font-size: 34px; font-weight: 800; margin-bottom: 10px; }
.pw-inspection-subtitle { font-size: 16px; opacity: 0.9; max-width: 700px; margin: 0 auto; }
.pw-insp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.pw-insp-card {
  background: #ffffff;
  border: 1px solid var(--pw-border);
  border-radius: var(--pw-radius);
  padding: 25px;
}
.pw-insp-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: #eaf8ea;
  color: var(--pw-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}
.pw-insp-card h3 { font-size: 16px; font-weight: 700; color: var(--pw-navy); margin-bottom: 8px; }
.pw-insp-card p { font-size: 13px; color: var(--pw-text-muted); line-height: 1.5; }
.pw-booking-card {
  background: #ffffff;
  border-radius: var(--pw-radius);
  border: 1px solid var(--pw-border);
  padding: 35px;
  box-shadow: var(--pw-shadow-sm);
}

/* 14. Footer */
.pw-main-footer {
  background-color: var(--pw-navy);
  color: #cbd5e1;
  padding: 50px 0 20px 0;
  border-top: 3px solid var(--pw-red);
}
.pw-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.3fr;
  gap: 30px;
  margin-bottom: 40px;
}
.pw-footer-title {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pw-footer-links li { margin-bottom: 10px; }
.pw-footer-links li a {
  color: #94a3b8;
  font-size: 13px;
}
.pw-footer-links li a:hover {
  color: #ffffff;
  padding-left: 4px;
}
.pw-footer-desc { font-size: 13px; color: #94a3b8; margin-bottom: 15px; line-height: 1.5; }
.pw-footer-btn-sell {
  background: var(--pw-red);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--pw-radius);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pw-footer-btn-sell:hover { background: var(--pw-red-hover); color: #fff; }
.pw-newsletter-form { margin-top: 10px; }
.pw-newsletter-input-group {
  display: flex;
  background: #ffffff;
  border-radius: var(--pw-radius);
  overflow: hidden;
}
.pw-newsletter-input-group input {
  flex-grow: 1;
  border: none;
  outline: none;
  padding: 10px 14px;
  font-size: 13px;
}
.pw-newsletter-input-group button {
  background: var(--pw-green);
  color: #fff;
  border: none;
  padding: 0 16px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
}
.pw-newsletter-input-group button:hover { background: var(--pw-green-hover); }
.pw-footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.pw-footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background 0.2s;
}
.pw-footer-socials a:hover { background: var(--pw-red); }
.pw-footer-app-box {
  background: rgba(255,255,255,0.05);
  border-radius: var(--pw-radius);
  padding: 18px 25px;
  margin-bottom: 30px;
}
.pw-app-heading {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}
.pw-app-sub { font-size: 13px; color: #94a3b8; }
.pw-badge-btn {
  background: rgba(255,255,255,0.1);
  color: #fff;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  margin-left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pw-badge-btn:hover { background: rgba(255,255,255,0.2); color: #fff; }
.pw-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  font-size: 12px;
  color: #64748b;
}
.pw-footer-legal a { color: #94a3b8; }
.pw-footer-legal a:hover { color: #fff; }

/* 15. Mobile App Header & Bottom Navigation (Matches User Screenshot) */
.pw-mobile-app-header {
  display: none;
  background-color: var(--pw-navy);
  color: #ffffff;
  padding: 18px 15px 22px 15px;
}
.pw-mobile-logo-box {
  margin-bottom: 10px;
}
.pw-mobile-logo-link {
  display: inline-block;
  text-decoration: none;
}
.pw-mobile-logo-img {
  height: 40px;
  width: auto;
  max-width: 170px;
  margin: 0 auto;
  object-fit: contain;
  display: block;
}
.pw-mobile-brand-title {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #ffffff;
  margin-top: -2px;
}
.pw-mobile-brand-title span {
  color: var(--pw-red);
}
.pw-mobile-header-heading {
  color: #ffffff;
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.2px;
}
.pw-mobile-pill-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 14px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.pw-mobile-pill-tabs::-webkit-scrollbar { display: none; }
.pw-mobile-pill {
  border-radius: 20px;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.2s;
}
.pw-mobile-pill.active {
  background: #ffffff;
  color: var(--pw-navy);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.pw-mobile-pill:not(.active) {
  background: rgba(255,255,255,0.14);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.22);
}
.pw-mobile-search-input-wrap {
  background: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 11px 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
  gap: 12px;
}
.pw-mobile-search-input-wrap i {
  color: #64748b;
  font-size: 15px;
}
.pw-mobile-search-input-wrap input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 15px;
  color: var(--pw-text-main);
  background: transparent;
}
.pw-mobile-search-input-wrap input::placeholder {
  color: #64748b;
  font-weight: 400;
}

/* Mobile Extras: Promo Banner & Recent Searches */
.pw-mobile-extras-section {
  padding: 20px 0 10px 0;
}
.pw-mobile-promo-banner {
  background: linear-gradient(135deg, #091a2e 0%, #163761 100%);
  border-radius: 12px;
  color: #ffffff;
  padding: 20px 24px;
  margin-bottom: 24px;
  border: 1px solid #1e3a5f;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.pw-promo-tag {
  background: #2563eb;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.pw-promo-title-main {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}
.pw-promo-price-text {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 12px;
}
.pw-btn-promo-sm {
  background: #ffffff;
  color: var(--pw-navy);
  font-weight: 700;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 4px;
  display: inline-block;
  transition: opacity 0.2s;
}
.pw-btn-promo-sm:hover { opacity: 0.9; }

.pw-recent-searches-box {
  margin-bottom: 20px;
}
.pw-recent-searches-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--pw-navy);
  margin-bottom: 10px;
}
.pw-recent-searches-pills {
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.pw-recent-searches-pills::-webkit-scrollbar { display: none; }
.pw-recent-pill {
  background: #ffffff;
  border: 1px solid var(--pw-border);
  padding: 7px 15px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: #334155;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.pw-recent-pill i { color: #64748b; font-size: 11px; }
.pw-recent-pill:hover { border-color: var(--pw-red); color: var(--pw-red); }

/* Fixed Mobile Bottom Navigation Bar (Matches User Screenshot) */
.pw-mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  z-index: 1500;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.06);
}
.pw-bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  flex: 1;
  padding: 4px 0;
}
.pw-bottom-nav-item i {
  font-size: 18px;
  margin-bottom: 2px;
}
.pw-bottom-nav-item.active {
  color: #1877f2;
}
.pw-bottom-sell-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  position: relative;
}
.pw-bottom-sell-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #1877f2;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-top: -24px;
  box-shadow: 0 4px 14px rgba(24, 119, 242, 0.45);
  border: 3px solid #ffffff;
  transition: transform 0.2s;
  text-decoration: none;
}
.pw-bottom-sell-circle:hover { transform: scale(1.06); }
.pw-bottom-sell-circle i { color: #ffffff; }
.pw-bottom-sell-label {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  margin-top: 2px;
}

/* 16. Login and Registration Page Styles */
.pw-auth-page-wrapper {
  padding: 50px 15px;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pw-auth-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid var(--pw-border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
  padding: 35px 30px;
}
.pw-auth-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin-bottom: 6px;
}
.pw-auth-logo-img {
  height: 54px;
  width: auto;
  max-width: 210px;
  margin: 0 auto;
  object-fit: contain;
  display: block;
  transition: transform 0.2s ease;
}
.pw-auth-logo:hover .pw-auth-logo-img {
  transform: scale(1.03);
}
.pw-auth-sub {
  color: var(--pw-text-muted);
  font-size: 13px;
  margin-bottom: 25px;
}
.pw-auth-tabs-nav {
  border-bottom: 2px solid #f1f5f9;
  margin-bottom: 25px;
}
.pw-auth-tab-btn {
  flex: 1;
  background: none;
  border: none;
  padding: 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--pw-text-muted);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
}
.pw-auth-tab-btn:hover { color: var(--pw-navy); }
.pw-auth-tab-btn.active {
  color: var(--pw-red);
  border-bottom-color: var(--pw-red);
}
.pw-auth-panel { display: none; }
.pw-auth-panel.active { display: block; }
.pw-forgot-link {
  font-size: 12px;
  color: var(--pw-blue);
  text-decoration: none;
}
.pw-forgot-link:hover { text-decoration: underline; }
.pw-form-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 14px;
  color: var(--pw-text-main);
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.pw-form-input:focus {
  border-color: var(--pw-red);
  box-shadow: 0 0 0 3px rgba(183, 52, 57, 0.12);
}
.pw-input-with-icon {
  position: relative;
  display: block;
  width: 100%;
}
.pw-input-with-icon .pw-field-icon,
.pw-input-with-icon > i:first-child {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 14px;
  pointer-events: none;
  z-index: 2;
}
.pw-input-with-icon .pw-form-input {
  padding-left: 36px;
}
.pw-password-wrap {
  position: relative;
}
.pw-password-wrap .pw-form-input {
  padding-right: 44px;
}
.pw-toggle-password {
  position: absolute;
  right: 6px;
  left: auto !important;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #94a3b8;
  font-size: 14px;
  z-index: 10;
  pointer-events: auto;
  border-radius: 4px;
  transition: color 0.2s, background-color 0.2s;
}
.pw-toggle-password:hover {
  color: var(--pw-navy);
  background-color: rgba(0, 0, 0, 0.04);
}
.pw-btn-auth-submit {
  width: 100%;
  background: var(--pw-red);
  color: #ffffff;
  border: none;
  padding: 13px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.pw-btn-auth-submit:hover { background: var(--pw-red-hover); }
.pw-auth-divider {
  text-align: center;
  position: relative;
  margin: 25px 0 20px 0;
}
.pw-auth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #e2e8f0;
  z-index: 1;
}
.pw-auth-divider span {
  position: relative;
  z-index: 2;
  background: #ffffff;
  padding: 0 12px;
  font-size: 11px;
  color: #94a3b8;
  font-weight: 700;
}
.pw-social-auth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.pw-btn-social {
  border: 1px solid #cbd5e1;
  background: #ffffff;
  padding: 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #334155;
  transition: all 0.2s;
}
.pw-btn-google:hover { background: #f8fafc; border-color: #94a3b8; }
.pw-btn-facebook:hover { background: #f0f6ff; border-color: #1877f2; color: #1877f2; }
.pw-auth-terms {
  font-size: 12px;
  color: var(--pw-text-muted);
  margin-bottom: 18px;
  line-height: 1.4;
}
.pw-auth-terms a { color: var(--pw-blue); text-decoration: underline; }
.pw-auth-switch {
  font-size: 13px;
  color: #475569;
  margin-top: 20px;
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
}
.pw-auth-switch a { color: var(--pw-red); }
.pw-user-avatar-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #eaf8ea;
  color: var(--pw-green);
  font-size: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

/* 17. Responsive Media Queries */
@media (max-width: 1024px) {
  .pw-navbar { display: none; }
  .pw-mobile-toggle { display: flex; }
  .pw-cars-grid { grid-template-columns: repeat(3, 1fr); }
  .pw-services-grid { grid-template-columns: 1fr 1fr; }
  .pw-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  body { padding-bottom: 70px !important; }
  .pw-top-bar { display: none; }
  .pw-main-header { display: none; }
  .pw-hero-section { display: none; } /* Replaced on mobile by pw-mobile-app-header */
  .pw-mobile-app-header { display: block; }
  .pw-mobile-bottom-nav { display: flex; }

  .pw-sell-promo-grid { grid-template-columns: 1fr; }
  .pw-cars-grid { grid-template-columns: repeat(2, 1fr); }
  .pw-services-grid { grid-template-columns: 1fr; }
  .pw-stats-grid { grid-template-columns: 1fr 1fr; }
  .pw-archive-layout { flex-direction: column; }
  .pw-filter-sidebar { width: 100%; }
  .pw-car-card-h { flex-direction: column; }
  .pw-card-h-img { width: 100%; height: 200px; }
  .pw-single-layout { flex-direction: column; }
  .pw-single-sidebar { width: 100%; }
  .pw-quick-specs-grid { grid-template-columns: repeat(3, 1fr); }
  .pw-specs-table-grid { grid-template-columns: 1fr; }
  .pw-features-grid { grid-template-columns: 1fr 1fr; }
  .pw-form-grid-2,
  .pw-form-grid-3 { grid-template-columns: 1fr; }
  .pw-features-checklist-grid { grid-template-columns: 1fr 1fr; }
  .pw-footer-grid { grid-template-columns: 1fr; }
  .pw-footer-app-box { flex-direction: column; gap: 15px; text-align: center; }
  .pw-footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

@media (max-width: 480px) {
  .pw-cars-grid { grid-template-columns: 1fr; }
  .pw-quick-specs-grid { grid-template-columns: 1fr 1fr; }
  .pw-features-grid { grid-template-columns: 1fr; }
  .pw-auth-card { padding: 25px 20px; }
}

/* 18. Floating WhatsApp Widget (Matches User Screenshot) */
.pw-floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 58px;
  height: 58px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  z-index: 1800;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.2s, box-shadow 0.2s;
  animation: pw-pulse 2.2s infinite;
}
.pw-floating-whatsapp:hover {
  transform: scale(1.1);
  background-color: #20ba5a;
  color: #ffffff;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.6);
}
.pw-floating-whatsapp-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: #1e293b;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  pointer-events: none;
}
.pw-floating-whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  border-width: 5px 0 5px 5px;
  border-style: solid;
  border-color: transparent transparent transparent #1e293b;
}
.pw-floating-whatsapp:hover .pw-floating-whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  right: 68px;
}

@keyframes pw-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  /* On mobile, Chat is already present in pw-mobile-bottom-nav. Hide floating circle to prevent overlapping CTA buttons */
  .pw-floating-whatsapp {
    display: none !important;
  }
  .pw-floating-whatsapp-tooltip { display: none !important; }
}

/* Sell Promo Switcher & Category Tabs */
.pw-promo-pill-btn:hover {
  background: rgba(0, 47, 108, 0.1) !important;
}
.pw-promo-pill-btn.active:hover {
  background: #002f6c !important;
}
.pw-post-category-tab:hover {
  color: #002f6c !important;
  background: #cbd5e1 !important;
}
.pw-post-category-tab.active:hover {
  color: #ffffff !important;
  background: #002f6c !important;
}
@media (max-width: 600px) {
  .pw-promo-pills, .pw-post-category-tabs {
    width: 100%;
    justify-content: center;
  }
  .pw-promo-pill-btn, .pw-post-category-tab {
    padding: 8px 14px !important;
    font-size: 13px !important;
  }
}

/* ==========================================================================
   19. New Cars Portal Brand Pills (No Scrollbar + Smooth Scroll)
   ========================================================================== */
.pw-new-cars-brand-pills-wrap {
  position: relative;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
}
.pw-new-cars-brand-pills {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  padding: 4px 0;
  width: 100%;
}
.pw-new-cars-brand-pills::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
.pw-brand-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.pw-brand-pill-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  transform: translateY(-1px);
}
.pw-brand-pill-btn.active {
  background: var(--pw-red);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(185, 28, 28, 0.4);
}
.pw-pills-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 47, 108, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
}
.pw-pills-arrow-btn:hover {
  background: var(--pw-red);
  transform: translateY(-50%) scale(1.08);
}
.pw-pills-arrow-prev { left: -14px; }
.pw-pills-arrow-next { right: -14px; }
@media (max-width: 768px) {
  .pw-pills-arrow-btn { display: none; }
}

/* ==========================================================================
   20. AutoStore & Spare Parts Page (Full Mobile & Desktop Responsive)
   ========================================================================== */
.pw-autostore-page {
  padding: 30px 0 70px;
  background: #f7f9fa;
}
.pw-autostore-hero {
  background: linear-gradient(135deg, #002f6c 0%, #1c2d42 100%);
  border-radius: 12px;
  padding: 35px 40px;
  color: #ffffff;
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  box-sizing: border-box;
}
.pw-autostore-hero-left {
  flex: 1;
  min-width: 280px;
  max-width: 620px;
}
.pw-autostore-hero-title {
  font-size: 30px;
  font-weight: 800;
  margin: 12px 0 10px;
  line-height: 1.25;
  color: #ffffff;
}
.pw-autostore-hero-desc {
  color: #cbd5e1;
  font-size: 15px;
  margin: 0 0 20px;
  line-height: 1.5;
}
.pw-autostore-search-box {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 8px;
  padding: 3px;
  width: 100%;
  max-width: 520px;
  box-sizing: border-box;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
.pw-autostore-search-input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  padding: 11px 14px;
  font-size: 14px;
  color: #1e293b;
  background: transparent;
}
.pw-autostore-search-btn {
  flex-shrink: 0;
  padding: 10px 20px;
  background: var(--pw-red);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
  white-space: nowrap;
}
.pw-autostore-search-btn:hover {
  background: #991b1b;
}

.pw-autostore-hero-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}
.pw-autostore-wa-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 14px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}
.pw-autostore-wa-label {
  font-size: 12px;
  color: #cbd5e1;
  margin-bottom: 4px;
}
.pw-autostore-wa-link {
  font-size: 16px;
  font-weight: 800;
  color: #25d366;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pw-autostore-sell-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--pw-red);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s;
}
.pw-autostore-sell-btn:hover {
  background: #991b1b;
}

/* Trust Grid */
.pw-autostore-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}
.pw-autostore-trust-item {
  background: #ffffff;
  padding: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #eaedf0;
}

/* Category Tabs */
.pw-autostore-tabs-wrap {
  margin-bottom: 25px;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 15px;
}
.pw-autostore-tabs-list {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 2px 0;
}
.pw-autostore-tabs-list::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
.pw-autostore-tab-item {
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

/* Japanese Brands Bar */
.pw-autostore-brands-box {
  background: #ffffff;
  border-radius: 10px;
  padding: 16px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  margin-bottom: 25px;
  border: 1px solid #e2e8f0;
}
.pw-autostore-brands-list {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 2px 0;
}
.pw-autostore-brands-list::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
.pw-autostore-brand-pill {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

/* Parts Grid */
.pw-autostore-parts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 22px;
}
.pw-part-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #eaedf0;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  width: 100%;
}
.pw-part-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
}
.pw-part-card-img {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: #f1f5f9;
}
.pw-part-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.pw-part-card:hover .pw-part-card-img img {
  transform: scale(1.05);
}
.pw-part-card-body {
  padding: 18px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.pw-part-wa-btn {
  text-align: center;
  padding: 11px 14px;
  background: #25d366;
  color: #ffffff;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s;
  box-sizing: border-box;
}
.pw-part-wa-btn:hover {
  background: #20ba5a;
  color: #ffffff;
}

/* Sourcing & Dealer Banners */
.pw-autostore-banner-sourcing {
  background: linear-gradient(135deg, #002f6c 0%, #1c2d42 100%);
  border-radius: 12px;
  padding: 30px 35px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  box-shadow: 0 4px 16px rgba(0, 47, 108, 0.2);
  margin-bottom: 25px;
  box-sizing: border-box;
}
.pw-autostore-banner-dealer {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px 35px;
  border: 1px solid #eaedf0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  box-sizing: border-box;
}

/* Mobile Responsive Adjustments for AutoStore */
@media (max-width: 991px) {
  .pw-autostore-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .pw-autostore-hero {
    padding: 22px 16px;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  .pw-autostore-hero-title {
    font-size: 22px;
    margin: 8px 0;
  }
  .pw-autostore-hero-desc {
    font-size: 13px;
    margin-bottom: 16px;
  }
  .pw-autostore-search-box {
    max-width: 100%;
  }
  .pw-autostore-search-input {
    padding: 9px 12px;
    font-size: 13px;
  }
  .pw-autostore-search-btn {
    padding: 9px 14px;
    font-size: 13px;
  }
  .pw-autostore-hero-right {
    width: 100%;
  }
  .pw-autostore-wa-card,
  .pw-autostore-sell-btn {
    width: 100%;
    box-sizing: border-box;
  }
  .pw-autostore-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 18px;
  }
  .pw-autostore-trust-item {
    padding: 10px 12px;
    gap: 10px;
  }
  .pw-autostore-trust-item i,
  .pw-autostore-trust-item span {
    font-size: 20px !important;
  }
  .pw-autostore-trust-item strong {
    font-size: 12px;
  }
  .pw-autostore-trust-item span {
    font-size: 11px;
  }
  .pw-autostore-parts-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pw-part-card-img {
    height: 160px;
  }
  .pw-part-card-body {
    padding: 15px;
  }
  .pw-autostore-banner-sourcing,
  .pw-autostore-banner-dealer {
    padding: 20px 16px;
    border-radius: 10px;
  }
  .pw-autostore-banner-sourcing a,
  .pw-autostore-banner-dealer a {
    width: 100%;
    text-align: center;
    justify-content: center;
    box-sizing: border-box;
  }
}
@media (max-width: 480px) {
  .pw-autostore-hero-title {
    font-size: 20px;
  }
  .pw-autostore-trust-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   21. Homepage Hero Banner Slider (Exact Match to User Screenshots)
   ========================================================================== */
.pw-banner-slider-section {
  position: relative;
  background: linear-gradient(135deg, #070d18 0%, #0b1526 50%, #050a12 100%);
  color: #ffffff;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.pw-banner-slider-viewport {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.pw-banner-slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
  will-change: transform;
}
.pw-banner-slide {
  flex: 0 0 100%;
  min-width: 100%;
  padding: 40px 0 55px;
  box-sizing: border-box;
  position: relative;
}
.pw-banner-slide-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 35px;
  align-items: center;
}
.pw-banner-slide-content {
  max-width: 680px;
}
.pw-banner-badge {
  background: #e50914;
  color: #ffffff;
  padding: 5px 14px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  display: inline-block;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(229, 9, 20, 0.35);
}
.pw-banner-title {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 14px;
  letter-spacing: -0.5px;
}
.pw-accent-green {
  color: #25d366;
}
.pw-banner-desc {
  font-size: 15px;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0 0 20px;
  max-width: 600px;
}
.pw-banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 18px;
}
.pw-btn-banner-red {
  background: #e50914;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(229, 9, 20, 0.4);
  transition: all 0.2s;
  box-sizing: border-box;
}
.pw-btn-banner-red:hover {
  background: #b91c1c;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 9, 20, 0.5);
}
.pw-btn-banner-green {
  background: #16a34a;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.4);
  transition: all 0.2s;
  box-sizing: border-box;
}
.pw-btn-banner-green:hover {
  background: #15803d;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.5);
}
.pw-btn-banner-outline {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  box-sizing: border-box;
}
.pw-btn-banner-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
}
.pw-banner-perks {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #94a3b8;
  align-items: center;
}
.pw-banner-perks span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pw-banner-perks span i {
  color: #22c55e;
  font-size: 11px;
}

/* Slide Right Visual Showcase Card */
.pw-banner-slide-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pw-banner-image-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #090e17;
}
.pw-banner-car-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.pw-banner-slide:hover .pw-banner-car-img {
  transform: scale(1.03);
}

/* Glassmorphic Floating Badges */
.pw-floating-badge {
  position: absolute;
  background: rgba(10, 15, 26, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  z-index: 3;
  pointer-events: none;
}
.pw-badge-top-right {
  top: 14px;
  right: 14px;
}
.pw-badge-bottom-left {
  bottom: 14px;
  left: 14px;
}
.pw-floating-badge strong {
  display: block;
  font-size: 12px;
  color: #ffffff;
  line-height: 1.2;
}
.pw-floating-badge small {
  display: block;
  font-size: 10px;
  color: #94a3b8;
  line-height: 1.2;
}

/* Slider Controls */
.pw-banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
}
.pw-banner-arrow:hover {
  background: #002f6c;
  border-color: #ffffff;
  transform: translateY(-50%) scale(1.1);
}
.pw-banner-prev {
  left: 20px;
}
.pw-banner-next {
  right: 20px;
}
.pw-banner-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}
.pw-banner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  padding: 0;
}
.pw-banner-dot:hover {
  background: rgba(255, 255, 255, 0.85);
}
.pw-banner-dot.active {
  background: #e50914;
  width: 28px;
  border-radius: 4px;
}

/* Quick Search Widget Under Banner Slider */
.pw-slider-search-bar {
  background: #002f6c;
  padding: 24px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.pw-search-category-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.pw-search-tab-btn {
  background: rgba(255, 255, 255, 0.12);
  color: #e2e8f0;
  border: none;
  padding: 7px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pw-search-tab-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}
.pw-search-tab-btn.active {
  background: #ffffff;
  color: #002f6c;
  font-weight: 700;
}
.pw-search-quick-tags {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  font-size: 12px;
  color: #cbd5e1;
  flex-wrap: wrap;
  gap: 10px;
}
.pw-quick-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.pw-quick-pill {
  color: #93c5fd;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 10px;
  border-radius: 12px;
  transition: all 0.15s;
}
.pw-quick-pill:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  text-decoration: none;
}
.pw-search-adv-link {
  color: #93c5fd;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.pw-search-adv-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* PakWheels-Style Sell Promo OR Divider */
.pw-sell-promo-grid {
  position: relative;
}
.pw-promo-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  pointer-events: none;
}
.pw-or-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  color: #64748b;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   22. Advanced Multi-Image Upload Manager (Post an Ad)
   ========================================================================== */
.pw-photo-manager {
  margin-top: 10px;
}
.pw-photo-manager-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}
.pw-photo-counter-badge {
  font-size: 13px;
  font-weight: 700;
  color: #002f6c;
  background: #e0f2fe;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pw-photo-clear-all {
  background: none;
  border: none;
  font-size: 12px;
  color: #b71c1c;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}
.pw-photo-dropzone-box {
  border: 2px dashed #94a3b8;
  border-radius: 12px;
  padding: 35px 20px;
  text-align: center;
  background: #f8fafc;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}
.pw-photo-dropzone-box:hover,
.pw-photo-dropzone-box.dragover {
  background: #f0f7ff;
  border-color: #002f6c;
}
.pw-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
  margin-top: 15px;
}
.pw-photo-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #e2e8f0;
  background: #ffffff;
  aspect-ratio: 4 / 3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.2s;
}
.pw-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pw-photo-card.is-main {
  border-color: #10b981;
}
.pw-photo-badge-main {
  position: absolute;
  bottom: 6px;
  left: 6px;
  background: rgba(16, 185, 129, 0.95);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  pointer-events: none;
}
.pw-photo-remove-btn {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(185, 28, 28, 0.9);
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 12px;
  transition: background 0.15s, transform 0.15s;
  z-index: 5;
}
.pw-photo-remove-btn:hover {
  background: #b71c1c;
  transform: scale(1.15);
}
.pw-photo-add-card {
  border: 2px dashed #002f6c;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  background: #f0f7ff;
  color: #002f6c;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  gap: 6px;
  transition: all 0.2s;
  box-sizing: border-box;
}
.pw-photo-add-card:hover {
  background: #e0f2fe;
  border-color: #b71c1c;
  color: #b71c1c;
}
.pw-photo-add-card i {
  font-size: 22px;
}

/* ==========================================================================
   23. Mobile View Polishing (Fixes for Screens <= 768px)
   ========================================================================== */
@media (max-width: 991px) {
  .pw-banner-slide-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .pw-banner-slide-visual {
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  .pw-banner-slide {
    padding: 30px 0 45px;
  }
  .pw-banner-slide-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .pw-banner-title {
    font-size: 26px;
    margin-bottom: 10px;
    line-height: 1.25;
  }
  .pw-banner-desc {
    font-size: 13px;
    margin-bottom: 16px;
  }
  .pw-banner-actions .pw-btn-banner-red,
  .pw-banner-actions .pw-btn-banner-green,
  .pw-banner-actions .pw-btn-banner-outline {
    padding: 10px 18px;
    font-size: 13px;
  }
  .pw-banner-perks {
    font-size: 11px;
    gap: 10px;
  }
  .pw-banner-image-wrap {
    max-width: 100%;
    border-radius: 12px;
  }
  .pw-floating-badge {
    padding: 5px 10px;
    border-radius: 8px;
    gap: 6px;
  }
  .pw-badge-top-right {
    top: 10px;
    right: 10px;
  }
  .pw-badge-bottom-left {
    bottom: 10px;
    left: 10px;
  }
  .pw-floating-badge strong {
    font-size: 11px;
  }
  .pw-floating-badge small {
    font-size: 9px;
  }
  .pw-banner-arrow {
    width: 34px;
    height: 34px;
  }
  .pw-banner-prev {
    left: 8px;
  }
  .pw-banner-next {
    right: 8px;
  }
  .pw-search-category-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }
  .pw-search-category-tabs::-webkit-scrollbar {
    display: none;
  }
  .pw-search-tab-btn {
    white-space: nowrap;
    font-size: 12px;
    padding: 6px 14px;
    flex-shrink: 0;
  }
  .pw-search-quick-tags {
    flex-direction: column;
    align-items: flex-start;
  }
  .pw-promo-divider {
    position: static;
    transform: none;
    margin: 10px 0;
  }
  .pw-promo-card {
    margin-bottom: 16px;
    border-radius: 12px;
    padding: 24px 20px;
    box-sizing: border-box;
  }
  .pw-btn-promo {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 20px;
  }
  /* ==========================================================================
     Post an Ad / Upload Product Form Mobile View Fixes
     ========================================================================== */
  .pw-post-ad-wrapper {
    padding: 15px 0 120px 0 !important;
  }
  .pw-post-card {
    padding: 18px 12px !important;
    border-radius: 10px !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05) !important;
    margin: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .pw-post-title {
    font-size: 22px !important;
    line-height: 1.3 !important;
    margin-bottom: 6px !important;
  }
  .pw-post-subtitle {
    font-size: 13px !important;
    margin-bottom: 16px !important;
    line-height: 1.5 !important;
  }
  .pw-post-category-tabs-wrap {
    margin-bottom: 18px !important;
    width: 100% !important;
  }
  .pw-post-category-tabs {
    display: flex !important;
    width: 100% !important;
    border-radius: 10px !important;
    padding: 3px !important;
    gap: 3px !important;
    box-sizing: border-box !important;
  }
  .pw-post-category-tab {
    flex: 1 1 0 !important;
    padding: 9px 4px !important;
    font-size: 12px !important;
    border-radius: 8px !important;
    text-align: center !important;
    justify-content: center !important;
    gap: 5px !important;
    min-width: 0 !important;
    white-space: nowrap !important;
  }
  .pw-post-category-tab i {
    font-size: 12px !important;
  }
  .pw-form-section {
    padding-bottom: 18px !important;
    margin-bottom: 18px !important;
  }
  .pw-form-section-title {
    font-size: 16px !important;
    margin-bottom: 14px !important;
  }
  .pw-form-row {
    margin-bottom: 12px !important;
  }
  .pw-form-grid-2,
  .pw-form-grid-3 {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .pw-form-input,
  .pw-form-textarea,
  select.pw-form-input {
    font-size: 16px !important; /* Prevents auto-zoom on iOS */
    padding: 12px 14px !important;
    border-radius: 8px !important;
    min-height: 46px !important;
    box-sizing: border-box !important;
    background-color: #ffffff !important;
  }
  .pw-features-checklist-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }
  .pw-feature-checkbox-label {
    font-size: 12px !important;
    padding: 8px 10px !important;
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 6px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    box-sizing: border-box !important;
  }
  .pw-feature-checkbox-label input[type="checkbox"] {
    width: 17px !important;
    height: 17px !important;
    flex-shrink: 0 !important;
  }
  .pw-photo-manager-top {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 12px !important;
  }
  .pw-photo-dropzone-box {
    padding: 22px 12px !important;
    border-radius: 10px !important;
  }
  .pw-dropzone-text {
    font-size: 14px !important;
    margin: 6px 0 !important;
  }
  .pw-dropzone-hint {
    font-size: 12px !important;
    margin-bottom: 12px !important;
  }
  .pw-file-input {
    z-index: 10 !important;
    cursor: pointer !important;
  }
  .pw-photo-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
    margin-top: 12px !important;
  }
  .pw-photo-card {
    aspect-ratio: 1 / 1 !important;
    border-radius: 8px !important;
  }
  .pw-photo-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
  .pw-photo-badge-main {
    font-size: 9px !important;
    padding: 2px 4px !important;
    bottom: 4px !important;
    left: 4px !important;
  }
  .pw-photo-remove-btn {
    width: 28px !important;
    height: 28px !important;
    font-size: 16px !important;
    top: 4px !important;
    right: 4px !important;
  }
  .pw-photo-add-card {
    aspect-ratio: 1 / 1 !important;
    border-radius: 8px !important;
    font-size: 11px !important;
    gap: 4px !important;
  }
  .pw-photo-add-card i {
    font-size: 20px !important;
  }
  .pw-btn-submit-ad {
    width: 100% !important;
    padding: 16px 20px !important;
    font-size: 16px !important;
    border-radius: 8px !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }
  .pw-alert-msg {
    font-size: 14px !important;
    padding: 12px 14px !important;
    margin-top: 15px !important;
    border-radius: 8px !important;
  }
  /* Floating WhatsApp never obstructs form or buttons on mobile */
  .pw-floating-whatsapp,
  .pw-floating-whatsapp-tooltip {
    display: none !important;
  }
}



