* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #f8f9fa;
  line-height: 1.5;
  overflow-x: hidden;
}

/* Container */
.pw-container {
  min-height: 100vh;
  background-color: #f8f9fa;
}

/* Hero Banner */
.hero-banner {
  width: 100%;
  margin-top: 125px;
  position: relative;
  height: 320px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%);
  background-image: url("https://images.pexels.com/photos/1592384/pexels-photo-1592384.jpeg?auto=compress&cs=tinysrgb&w=1200");
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 58, 138, 0.8);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  padding: 0 2rem;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.hero-btn {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1f2937;
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}


/* Header */
.pw-header {
  border-bottom: 1px solid #e9ecef;
  padding: 20px 24px;
}

.pw-main-title {
  font-size: 28px;
  font-weight: 600;
  color: #233d7b;
  margin-bottom: 12px;
}

.pw-header-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.pw-breadcrumb {
  font-size: 13px;
  color: #6c757d;
}

.pw-breadcrumb-link {
  color: #4285f4;
  text-decoration: none;
  transition: color 0.2s;
}

.pw-breadcrumb-link:hover {
  color: #1a73e8;
  text-decoration: underline;
}

.pw-breadcrumb-separator {
  color: #6c757d;
  margin: 0 4px;
}

.pw-breadcrumb-current {
  color: #495057;
  font-weight: 500;
}

.pw-results-count {
  font-size: 13px;
  color: #6c757d;
  font-weight: 500;
}

/* Main Layout */
.pw-main-layout {
  display: flex;
  min-height: calc(100vh - 120px);
}

/* Sidebar */
.pw-sidebar {
  width: 280px;
  background-color: #f8f9fa;
  border-right: 1px solid #e9ecef;
  flex-shrink: 0;
}

.pw-sidebar-header {
  background-color: #518ecb;
  color: white;
  padding: 16px 20px;
  font-weight: 600;
}

.pw-sidebar-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Filter Sections */
.pw-filter-section {
  border-bottom: 1px solid #e9ecef;
  background-color: #ffffff;
}

.pw-filter-header {
  background-color: #f8f9fa;
  padding: 14px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s;
  border-bottom: 1px solid #e9ecef;
}

.pw-filter-header:hover {
  background-color: #e9ecef;
}

.pw-filter-title {
  font-size: 12px;
  font-weight: 600;
  color: #495057;
  letter-spacing: 0.3px;
}

.pw-filter-arrow {
  font-size: 10px;
  color: #6c757d;
  transition: transform 0.2s;
  font-weight: bold;
}

.pw-filter-content {
  background-color: #ffffff;
  padding: 16px 20px;
  display: none;
}

.pw-filter-open {
  display: block;
}

/* Search Box */
.pw-search-box {
  display: flex;
  gap: 0;
}

.pw-search-input {
  flex: 1;
  padding: 8px 12px;
  font-size: 13px;
  border: 1px solid #ced4da;
  border-right: none;
  border-radius: 4px 0 0 4px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: 'Lato', Arial, sans-serif;
}

.pw-search-input:focus {
  border-color: #4285f4;
  box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.2);
}

.pw-search-btn {
  background-color: #4285f4;
  color: white;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background-color 0.2s;
  font-family: 'Lato', Arial, sans-serif;
}

.pw-search-btn:hover {
  background-color: #1a73e8;
}

/* Checkbox Items */
.pw-checkbox-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  cursor: pointer;
  margin-bottom: 10px;
  padding: 4px 0;
  transition: background-color 0.2s;
  border-radius: 4px;
}


.pw-checkbox-wrapper {
  display: flex;
  align-items: center;
  flex: 1;
}

.pw-checkbox {
  margin-right: 10px;
  width: 16px;
  height: 16px;
  accent-color: #4285f4;
}

.pw-checkbox-label {
  color: #495057;
  flex: 1;
}

.pw-checkbox-count {
  color: #6c757d;
  font-size: 12px;
  font-weight: 500;
}

/* Price Inputs */
.pw-price-inputs {
  display: flex;
  gap: 0px;
  align-items: center;
}

.pw-price-input {
  /* flex: 1; */
  width: 95px;
  padding: 8px 12px;
  font-size: 13px;
  border: 1px solid #ced4da;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: 'Lato', Arial, sans-serif;
}

.pw-price-input:focus {
  border-color: #4285f4;
  box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.2);
}

.pw-price-btn {
  background-color: #4285f4;
  color: white;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
  font-family: 'Lato', Arial, sans-serif;
  white-space: nowrap;
}

.pw-price-btn:hover {
  background-color: #1a73e8;
}

/* More Link */
.pw-more-link {
  color: #4285f4;
  font-size: 13px;
  text-decoration: none;
  margin-top: 8px;
  display: block;
  font-weight: 500;
  transition: color 0.2s;
  cursor: pointer;
}

.pw-more-link:hover {
  color: #1a73e8;
  text-decoration: underline;
}

/* Selection Popup Modals */
.pw-selection-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.pw-selection-modal.show {
  opacity: 1;
  visibility: visible;
}

.pw-selection-modal-content {
  background: white;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow: hidden;
  transform: scale(0.9); 
  transition: transform 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.pw-selection-modal.show .pw-selection-modal-content {
  transform: scale(1);
}

.pw-selection-modal-header {
  background: #f8f9fa;
  padding: 10px 20px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pw-selection-modal-title {
  font-size: 18px;
  font-weight: 600;
  color: #233d7b;
  margin: 0;
}

.pw-selection-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
  padding: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
}

.pw-selection-modal-close:hover {
  color: #333;
  background: #f0f0f0;
}

.pw-selection-modal-body {
  padding: 24px;
  display: flex;
  gap: 24px;
  max-height: 370px;
  overflow-y: auto;
}

.pw-selection-column {
  flex: 1;
}

.pw-selection-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pw-selection-item {
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: background-color 0.2s;
}

.pw-selection-checkbox {
  margin-right: 12px;
  width: 16px;
  height: 16px;
  accent-color: #4285f4;
}

.pw-selection-label {
  flex: 1;
  font-size: 14px;
  color: #495057;
  font-weight: 500;
}

.pw-selection-count {
  color: #6c757d;
  font-size: 12px;
  font-weight: 500;
  margin-left: 8px;
}

.pw-selection-modal-footer {
  padding: 10px 20px;
  border-top: 1px solid #e0e0e0;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  background: #f8f9fa;
}

.pw-selection-modal-btn {
  padding: 10px 24px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Lato', Arial, sans-serif;
}

.pw-selection-modal-btn.clear {
  background-color: #f8f9fa;
  color: #6c757d;
  border: 1px solid #ced4da;
}

.pw-selection-modal-btn.clear:hover {
  background-color: #e9ecef;
  color: #495057;
}

.pw-selection-modal-btn.submit {
  background-color: #4285f4;
  color: white;
}

.pw-selection-modal-btn.submit:hover {
  background-color: #1a73e8;
}

/* Main Content */
.pw-main-content {
  flex: 1;
  padding: 24px;
  background-color: #f8f9fa;
}

/* Top Controls */
.pw-top-controls {
    background: #ffff;
    padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #ced4da;
  border-radius: 4px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 16px;
}

.pw-sort-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pw-sort-label {
  font-size: 13px;
  color: #495057;
  font-weight: 500;
}

.pw-sort-select {
  padding: 8px 32px 8px 12px;
  font-size: 13px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  background-color: #f8f9fa;
  color: #495057;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: 'Lato', Arial, sans-serif;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 8px center;
  background-repeat: no-repeat;
  background-size: 16px;
}

.pw-sort-select:focus {
  border-color: #4285f4;
  box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.2);
}

.pw-view-controls {
  display: flex;
  gap: 0;
  border: 1px solid #ced4da;
  border-radius: 4px;
  overflow: hidden;
}

.pw-view-btn {
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  border: none;
  background-color: #f8f9fa;
  color: #6c757d;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Lato', Arial, sans-serif;
  letter-spacing: 0.3px;
}

.pw-view-btn:not(.pw-view-active):hover {
  background-color: #e9ecef;
  color: #495057;
}

.pw-view-btn + .pw-view-btn {
  border-left: 1px solid #ced4da;
}

.pw-view-active {
  background-color: #4285f4;
  color: white;
}

/* Vehicle Selector */
.pw-vehicle-selector {
  background-color: #ffffff;
  padding: 16px 20px;
  border-radius: 6px;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #ced4da;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
}

.pw-vehicle-text {
  font-size: 18px; 
  color: #233d7b;
  font-weight: 700;
}

.pw-vehicle-btn {
  background-color: #233d7b;
  color: white;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.2s;
  font-family: 'Lato', Arial, sans-serif;
  position: relative;
}

.pw-vehicle-btn:hover {
  background-color: #1565c0;
}

.pw-vehicle-arrow {
  font-size: 12px;
}

/* Vehicle Dropdown */
.pw-vehicle-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  z-index: 1000;
  min-width: 350px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  padding: 20px;
}

.pw-vehicle-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pw-dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.pw-dropdown-title {
  font-size: 16px;
  font-weight: 600;
  color: #233d7b;
}

.pw-manage-garage {
  font-size: 14px;
  color: #4285f4;
  cursor: pointer;
  text-decoration: none;
}

.pw-manage-garage:hover {
  text-decoration: underline;
}

.pw-dropdown-subtitle {
  font-size: 13px;
  color: #666;
  margin-bottom: 15px;
}

.pw-dropdown-divider {
  height: 1px;
  background-color: #e0e0e0;
  margin-bottom: 15px;
}

.pw-add-vehicle-btn {
  background-color: #233d7b;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.pw-add-vehicle-btn:hover {
  background-color: #1565c0;
}

/* Vehicle Modal */
.pw-vehicle-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.pw-vehicle-modal.show {
  opacity: 1;
  visibility: visible;
}

.pw-modal-content {
  background: white;
  border-radius: 8px;
  width: 90%;
  max-width: 900px;
  max-height: 80vh;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.pw-vehicle-modal.show .pw-modal-content {
  transform: scale(1);
}

.pw-modal-header {
  background: #f8f9fa;
  padding: 10px 20px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
}

.pw-modal-steps {
  display: flex;
  align-items: center;
  flex: 1;
}

.pw-modal-step {
  display: flex;
  align-items: center;
  padding: 0 15px;
  font-size: 14px;
  font-weight: 500;
  color: #999;
  position: relative;
}

.pw-modal-step.active {
  color: #4285f4;
}

.pw-modal-step.completed {
  color: #233d7b;
}

.pw-modal-step:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid #ddd;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.pw-modal-step.active:not(:last-child)::after {
  border-left-color: #4285f4;
}

.pw-modal-step.completed:not(:last-child)::after {
  border-left-color: #233d7b;
}

.pw-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
  padding: 5px;
}

.pw-modal-close:hover {
  color: #333;
}

.pw-modal-body {
  padding: 20px;
  display: flex;
  height: 360px;
}

.pw-selection-column {
  flex: 1;
  border-right: 1px solid #f0f0f0;
  padding: 0 20px;
  overflow-y: auto;
}

.pw-selection-column:last-child {
  border-right: none;
}

.pw-column-title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pw-option-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pw-option-item {
  padding: 10px 12px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.2s;
  font-size: 13px;
  display: flex;
  align-items: center;
  margin-bottom: 2px;
}

.pw-option-item:hover {
  background-color: #f8f9fa;
}

.pw-option-item.selected {
  background-color: #e3f2fd;
  color: #1976d2;
  font-weight: 500;
}

.pw-option-group {
  margin-bottom: 20px;
}

.pw-group-title {
  font-size: 12px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  padding: 0 12px;
}

.pw-brand-logo {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  object-fit: contain;
}

.pw-modal-footer {
  padding: 20px;
  border-top: 1px solid #e0e0e0;
  display: flex;
  justify-content: center;
}

.pw-done-btn {
  background-color: #6c8cbf;
  color: white;
  padding: 10px 30px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

.pw-done-btn:hover {
  background-color: #5a7aa5;
}

.pw-done-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

/* Products Grid */
.pw-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 10px;
  margin-bottom: 40px;
}

.pw-product-card {
  background-color: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.pw-product-card:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

.pw-sale-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #dc3545, #c82333);
  color: white;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  transform: rotate(-8deg);
  z-index: 10;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 2px 6px rgba(220, 53, 69, 0.3);
}

.pw-product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.pw-product-card:hover .pw-product-image {
  transform: scale(1.05);
}

.pw-product-info {
  padding: 16px;
}

.pw-product-title {
  font-size: 14px;
  font-weight: 600;
  color: #4285f4;
  text-decoration: none;
  margin-bottom: 8px;
  display: block;
  line-height: 1.4;
  transition: color 0.2s;
}

.pw-product-title:hover {
  color: #1a73e8;
  text-decoration: underline;
}

.pw-product-category {
  font-size: 12px;
  color: #6c757d;
  margin-bottom: 10px;
  font-weight: 500;
}

.pw-product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.pw-star {
  width: 14px;
  height: 14px;
  color: #ffc107;
}

.pw-star.filled {
  color: #ffc107;
}

.pw-star.empty {
  color: #dee2e6;
}

.pw-rating-count {
  font-size: 12px;
  color: #6c757d;
  font-weight: 500;
}

.pw-product-location {
  font-size: 12px;
  color: #6c757d;
  margin-bottom: 10px;
  font-weight: 500;
}

.pw-product-price {
  font-size: 16px;
  font-weight: 700;
  color: #212529;
  margin-bottom: 16px;
}

.pw-original-price {
  font-size: 13px;
  color: #6c757d;
  text-decoration: line-through;
  font-weight: 500;
  margin-left: 8px;
}

.pw-product-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pw-btn-primary {
  width: 100%;
  background: linear-gradient(135deg, #4285f4, #1a73e8);
  color: white;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Lato', Arial, sans-serif;
  letter-spacing: 0.3px;
}

.pw-btn-primary:hover {
  background: linear-gradient(135deg, #1a73e8, #1557b0);
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
  transform: translateY(-1px);
}

.pw-btn-secondary {
  width: 100%;
  background-color: transparent;
  color: #4285f4;
  border: 1px solid #4285f4;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Lato', Arial, sans-serif;
  letter-spacing: 0.3px;
}

.pw-btn-secondary:hover {
  background-color: #4285f4;
  color: white;
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
  transform: translateY(-1px);
}

/* Pagination */
.pw-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pw-page-btn {
  padding: 10px 14px;
  font-size: 13px;
  border: 1px solid #ced4da;
  border-radius: 6px;
  background-color: #ffffff;
  color: #4285f4;
  cursor: pointer;
  min-width: 40px;
  transition: all 0.2s;
  font-weight: 500;
  font-family: 'Lato', Arial, sans-serif;
}

.pw-page-btn:hover {
  background-color: #f8f9fa;
  border-color: #4285f4;
}

.pw-page-active {
  background-color: #4285f4;
  color: white;
  border-color: #4285f4;
  box-shadow: 0 2px 6px rgba(66, 133, 244, 0.2);
}

.pw-page-dots {
  font-size: 13px;
  color: #6c757d;
  font-weight: 500;
}

.pw-page-next {
  font-size: 13px;
  color: #4285f4;
  cursor: pointer;
  font-weight: 500;
  transition: color 0.2s;
}

.pw-page-next:hover {
  color: #1a73e8;
  text-decoration: underline;
}


/* View Accessories Section Styles */
.vas-container {
  padding: 40px 24px;
  margin: 30px 0;
  border-radius: 8px;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.vas-section {
  margin-bottom: 40px;
}

.vas-section:last-child {
  margin-bottom: 0;
}

.vas-section-title {
  font-size: 20px;
  font-weight: 700;
  color: #233d7b;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #dddddd5d;
  letter-spacing: 0.5px;
}

.vas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0px;
  align-items: start;
}

.vas-link {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  color: #2c5aa0;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
  background-color: #f8f9fa;
  border: 1px solid transparent;
  line-height: 1.3;
}

.vas-link:hover {
  text-decoration: underline;
}

.vas-count {
  color: #6c757d;
  font-size: 12px;
  font-weight: 400;
  margin-left: 8px;
  flex-shrink: 0;
}

.vas-link:hover .vas-count {
  color: #495057;
  font-weight: 500;
}


/* Responsive Design */
@media (max-width: 1200px) {
  .pw-products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
  }

  .vas-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .pw-vehicle-dropdown {
    min-width: 300px;
  }

  .pw-selection-modal-content {
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .pw-main-layout {
    flex-direction: column;
  }

  .pw-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e9ecef;
  }

  .pw-products-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
  }

  .pw-top-controls {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }

  .pw-vehicle-selector {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .pw-header-controls {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .pw-main-content {
    padding: 16px;
  }

  .pw-header {
    padding: 16px 20px;
  }

  .vas-container {
    padding: 20px 16px;
    margin: 30px;
  }

  .vas-grid {
    grid-template-columns: 1fr;
  }

  .vas-section-title {
    font-size: 18px;
  }

  .pw-vehicle-dropdown {
    right: auto;
    left: 0;
    min-width: calc(100vw - 40px);
  }

  .pw-modal-content {
    width: 95%;
    height: 95vh;
  }

  .pw-modal-body {
    flex-direction: column;
    height: auto;
    min-height: 400px;
  }

  .pw-selection-column {
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
    padding: 15px 0;
    max-height: 200px;
  }

  .pw-modal-steps {
    flex-wrap: wrap;
    gap: 10px;
  }

  .pw-modal-step {
    padding: 5px 10px;
    font-size: 12px;
  }

  .pw-selection-modal-content {
    width: 95%;
    max-width: none;
  }

  .pw-selection-modal-body {
    flex-direction: column;
    gap: 16px;
  }

  .pw-selection-column {
    max-height: 200px;
  }
}

@media (max-width: 480px) {
  .pw-products-grid {
    grid-template-columns: 1fr;
  }

  .pw-main-title {
    font-size: 22px;
  }

  .pw-sidebar {
    width: 100%;
  }

  .pw-filter-content {
    padding: 12px 16px;
  }

  .pw-filter-header {
    padding: 12px 16px;
  }

  .vas-section-title {
    font-size: 16px;
  }

  .vas-link {
    font-size: 12px;
    padding: 10px;
  }

  .vas-count {
    font-size: 11px;
  }

  .pw-vehicle-dropdown {
    min-width: calc(100vw - 20px);
  }

  .pw-selection-modal-body {
    padding: 16px;
  }

  .pw-selection-modal-footer {
    padding: 16px;
  }
}