.container {
  min-height: 100vh;
  background: #f8fafc;
  color: #1e293b;
  font-family: inherit;
}

[data-theme='dark'] .container, [data-theme='crywolf'] .container {
  background: #0f1123;
  color: #f8fafc;
}

/* Header Banner */
.headerBanner {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 2.5rem 0;
}

[data-theme='dark'] .headerBanner, [data-theme='crywolf'] .headerBanner {
  background: rgba(255, 255, 255, 0.02);
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

.bannerContent {
  width: 95%;
  max-width: 1600px;
  margin: 0 auto;
}

.bannerTitle {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin: 0;
  text-transform: uppercase;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.85rem;
}

.breadcrumbLink {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
}

[data-theme='dark'] .breadcrumbLink, [data-theme='crywolf'] .breadcrumbLink {
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumbLink:hover {
  color: var(--accent-color);
}

.breadcrumbLink:active {
  transform: scale(0.96);
}

.separator {
  color: #94a3b8;
}

.activeBreadcrumb {
  color: var(--accent-color);
  font-weight: 500;
}

/* Main Layout */
.mainLayout {
  width: 95%;
  max-width: 1600px;
  margin: 2rem auto;
  display: flex;
  gap: 2rem;
}

/* Sidebar Filters */
.sidebar {
  width: 280px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.05);
  height: fit-content;
}

[data-theme='dark'] .sidebar, [data-theme='crywolf'] .sidebar {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.05);
}

.sidebarHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  margin-bottom: 1.25rem;
}

[data-theme='dark'] .sidebarHeader, [data-theme='crywolf'] .sidebarHeader {
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

.filterTitle {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.clearBtn {
  background: transparent;
  border: none;
  color: #64748b;
  font-size: 0.85rem;
  cursor: pointer;
  transition: color 0.2s;
}

.clearBtn:hover {
  color: var(--accent-color);
}

.clearBtn:active {
  transform: scale(0.95);
}

.filterGroup {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.groupTitle {
  font-size: 0.8rem;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 1px;
  margin: 0;
}

.categoryList {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.tabGroup {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.5rem;
}

.tabName {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1e293b;
  margin-left: 0.5rem;
  margin-bottom: 0.25rem;
  opacity: 0.8;
}

[data-theme='dark'] .tabName, [data-theme='crywolf'] .tabName {
  color: #f8fafc;
}

.tabCategories {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nestedCategory {
  padding-left: 2rem !important;
  font-size: 0.85rem !important;
}

.categoryBtn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: none;
  background: transparent;
  color: #475569;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: left;
  transition: all 0.2s ease;
}

[data-theme='dark'] .categoryBtn, [data-theme='crywolf'] .categoryBtn {
  color: rgba(255, 255, 255, 0.7);
}

.categoryBtn:hover {
  background: rgba(124, 58, 237, 0.05);
  color: var(--accent-color);
}

.categoryBtn:active {
  transform: scale(0.97);
}

.activeCategory {
  background: #f3e8ff !important;
  color: var(--accent-color) !important;
}

[data-theme='dark'] .activeCategory, [data-theme='crywolf'] .activeCategory {
  background: rgba(124, 58, 237, 0.15) !important;
  color: #60a5fa !important;
}

.categoryIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
}

/* Right Content */
.content {
  flex: 1;
}

/* Toolbar */
.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.resultsCount {
  font-weight: 700;
  font-size: 1rem;
}

.countNumber {
  font-weight: 500;
  color: #64748b;
  font-size: 0.9rem;
}

.controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.dropdown {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  font-family: inherit;
  font-size: 0.85rem;
  color: inherit;
  outline: none;
  cursor: pointer;
}

[data-theme='dark'] .dropdown, [data-theme='crywolf'] .dropdown {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.viewToggle {
  display: flex;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

[data-theme='dark'] .viewToggle, [data-theme='crywolf'] .viewToggle {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.toggleBtn {
  padding: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.activeToggle {
  background: var(--accent-color) !important;
  color: #fff !important;
}

/* Grid & Card Layouts */
.productGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.productCard {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

[data-theme='dark'] .productCard, [data-theme='crywolf'] .productCard {
  background: rgba(255, 255, 255, 0.01);
  border-color: rgba(255, 255, 255, 0.04);
}

.productCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.productCard:active {
  transform: translateY(-1px) scale(0.98);
  border-color: var(--accent-color);
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.imageWrapper {
  position: relative;
  aspect-ratio: 4/3;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

[data-theme='dark'] .imageWrapper, [data-theme='crywolf'] .imageWrapper {
  background: rgba(255,255,255,0.03);
}

.productImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newBadge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accent-color);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.cardInfo {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cardCategory {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.productName {
  font-size: 1rem;
  font-weight: 700;
  margin: 0.5rem 0;
  line-height: 1.4;
  color: inherit;
  min-height: 4.2em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stockStatus {
  margin-bottom: 1rem;
}

.outOfStockBadge {
  font-size: 0.75rem;
  color: #ef4444;
  background: rgba(239, 68, 68, 0.08);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-weight: 600;
}

.inStockBadge {
  font-size: 0.75rem;
  color: #10b981;
  background: rgba(16, 185, 129, 0.08);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-weight: 600;
}

.cardFooter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.price {
  font-size: 1.15rem;
  font-weight: 800;
}

.addBtn {
  background: var(--accent-color);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: all 0.2s;
}

.addBtn:hover:not(:disabled) {
  background: #2563eb;
}

.addBtn:active:not(:disabled) {
  transform: scale(0.95);
}

.addBtn:disabled {
  background: #cbd5e1;
  color: #94a3b8;
  cursor: not-allowed;
}

/* Loader */
.loaderContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 0;
  color: #64748b;
}

.spinner {
  animation: spin 1s linear infinite;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

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

@media (max-width: 768px) {
  .mainLayout {
    flex-direction: column;
    margin: 1rem auto;
  }
  .sidebar {
    width: 100%;
    padding: 1rem;
  }
  .bannerTitle {
    font-size: 1.25rem;
  }
  .headerBanner {
    padding: 1.5rem 0;
  }
  .toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .controls {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .productGrid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.75rem;
  }
  .productName {
    font-size: 0.85rem;
    min-height: 3.8em;
  }
  .price {
    font-size: 0.95rem;
  }
  .imageWrapper {
    aspect-ratio: 1/1;
    height: auto;
  }
  .cardInfo {
    padding: 0.75rem;
  }
  .productCard {
    height: 100%;
  }
  .addBtn {
    padding: 0.4rem 0.6rem;
    font-size: 0.75rem;
  }
  .addBtn svg {
    width: 14px;
    height: 14px;
  }
}

.noMoreProducts {
  text-align: center;
  margin: 3.5rem 0 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #64748b;
  width: 100%;
  clear: both;
}

[data-theme='dark'] .noMoreProducts, [data-theme='crywolf'] .noMoreProducts {
  color: rgba(255, 255, 255, 0.4);
}
  
.wishlistBtn {  
  position: absolute;  
  top: 12px;  
  right: 12px;  
  background: var(--primary-bg);  
  border: 1px solid var(--border-color);  
  border-radius: 8px;  
  width: 36px;  
  height: 36px;  
  display: flex;  
  align-items: center;  
  justify-content: center;  
  cursor: pointer;  
  z-index: 2;  
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);  
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);  
  color: var(--text-muted);  
}  
  
.wishlistBtn:hover {  
  transform: translateY(-2px);  
  background: color-mix(in srgb, var(--primary-bg) 70%, white);  
  box-shadow: 0 6px 15px rgba(239, 68, 68, 0.2);  
}  
  
.wishlistBtn:active {  
  transform: scale(0.95);  
}  
  
.wishlistBtn.wished {  
  color: #ef4444;  
  border-color: rgba(239, 68, 68, 0.3);  
  animation: heartBeat 0.5s ease-in-out;  
}  
  
@keyframes heartBeat {  
  0% { transform: scale(1); }  
  25% { transform: scale(1.2); }  
  50% { transform: scale(0.95); }  
  75% { transform: scale(1.1); }  
  100% { transform: scale(1); }  
}

/* NEW SIDEBAR STYLES */

.collapseBtn {
  background: #f1f5f9;
  border: none;
  border-radius: 6px;
  padding: 0.35rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
  transition: all 0.2s;
}
.collapseBtn:hover {
  background: #e2e8f0;
}
.collapseBtn:active {
  transform: scale(0.94);
}
[data-theme='dark'] .collapseBtn, [data-theme='crywolf'] .collapseBtn {
  background: rgba(255,255,255,0.1);
  color: #f8fafc;
}
[data-theme='dark'] .collapseBtn:hover, [data-theme='crywolf'] .collapseBtn:hover {
  background: rgba(255,255,255,0.15);
}
[data-theme='dark'] .collapseBtn:active, [data-theme='crywolf'] .collapseBtn:active {
  background: rgba(255,255,255,0.2);
}

.groupTitleLarge {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.groupTitleSmall {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.categoryBtnNew {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  transition: all 0.2s;
}

.activeCategoryNew {
  background: var(--accent-color);
  color: #fff;
  padding: 0.6rem 1rem;
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.activeCategoryNew .categoryCount {
  color: rgba(255,255,255,0.8);
}

.tabCategoryNew {
  padding: 0.4rem 0;
  color: var(--text-main);
}

.tabCategoryNew span {
  font-weight: 500;
}

.categoryCount {
  font-size: 0.8rem;
}

.categoryCountPlain {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.subCategoryNew {
  padding: 0.4rem 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-radius: 6px;
  transition: all 0.2s;
}

.subCategoryNew:hover {
  background: #f8fafc;
}
.subCategoryNew:active {
  background: #e2e8f0;
}

[data-theme='dark'] .subCategoryNew:hover, [data-theme='crywolf'] .subCategoryNew:hover {
  background: rgba(255,255,255,0.05);
}
[data-theme='dark'] .subCategoryNew:active, [data-theme='crywolf'] .subCategoryNew:active {
  background: rgba(255,255,255,0.1);
}

.tabCategories {
  margin-left: 0.5rem;
  padding-left: 0.4rem;
  border-left: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

[data-theme='dark'] .tabCategories, [data-theme='crywolf'] .tabCategories {
  border-left-color: rgba(255,255,255,0.05);
}

.activeSubCategoryNew {
  background: #f1f5f9;
  color: #1e293b;
  font-weight: 600;
}

[data-theme='dark'] .activeSubCategoryNew, [data-theme='crywolf'] .activeSubCategoryNew {
  background: rgba(255,255,255,0.1);
  color: #f8fafc;
}

.filterDivider {
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 1.5rem 0;
}

[data-theme='dark'] .filterDivider, [data-theme='crywolf'] .filterDivider {
  background: rgba(255,255,255,0.1);
}

.selectWrapper {
  position: relative;
  width: 100%;
}

.filterSelect {
  width: 100%;
  appearance: none;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: #1e293b;
  cursor: pointer;
  outline: none;
}

[data-theme='dark'] .filterSelect, [data-theme='crywolf'] .filterSelect {
  background: rgba(0,0,0,0.2);
  border-color: rgba(255,255,255,0.1);
  color: #f8fafc;
}

.selectIcon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  pointer-events: none;
}

.checkboxList {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checkboxLabel {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-main);
  cursor: pointer;
  position: relative;
}

.checkboxLabel input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkboxCustom {
  height: 16px;
  width: 16px;
  background-color: transparent;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  margin-right: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

[data-theme='dark'] .checkboxCustom, [data-theme='crywolf'] .checkboxCustom {
  border-color: rgba(255,255,255,0.2);
}

.checkboxLabel input:checked ~ .checkboxCustom {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.checkboxLabel input:checked ~ .checkboxCustom:after {
  content: '';
  display: block;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-bottom: 2px;
}

.checkboxCount {
  margin-left: 0.25rem;
  color: var(--text-muted);
  font-size: 0.75rem;
}

.clearAllBtnNew {
  width: 100%;
  background: #f1f5f9;
  border: none;
  border-radius: 8px;
  padding: 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
  margin-top: 2rem;
  cursor: pointer;
  transition: all 0.2s;
}

.clearAllBtnNew:hover {
  background: #e2e8f0;
}
.clearAllBtnNew:active {
  transform: scale(0.97);
}

[data-theme='dark'] .clearAllBtnNew, [data-theme='crywolf'] .clearAllBtnNew {
  background: rgba(255,255,255,0.05);
  color: #cbd5e1;
}

[data-theme='dark'] .clearAllBtnNew:hover, [data-theme='crywolf'] .clearAllBtnNew:hover {
  background: rgba(255,255,255,0.1);
}
[data-theme='dark'] .clearAllBtnNew:active, [data-theme='crywolf'] .clearAllBtnNew:active {
  background: rgba(255,255,255,0.15);
}

/* Pagination Styles */
.paginationFooter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.05);
}

[data-theme='dark'] .paginationFooter, [data-theme='crywolf'] .paginationFooter {
  border-top-color: rgba(255,255,255,0.05);
}

.paginationText {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.paginationControls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.paginationSelect {
  appearance: none;
  background: transparent;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 6px;
  padding: 0.35rem 1.5rem 0.35rem 0.5rem;
  font-size: 0.85rem;
  color: var(--text-main);
  outline: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
}

[data-theme='dark'] .paginationSelect, [data-theme='crywolf'] .paginationSelect {
  border-color: rgba(255,255,255,0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23f8fafc' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

.pageBtn {
  background: transparent;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 6px;
  min-width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-main);
  cursor: pointer;
  transition: all 0.2s;
}

.pageBtn:hover:not(:disabled) {
  background: #f1f5f9;
}

.pageBtn:active:not(:disabled) {
  transform: scale(0.92);
}

.pageBtn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

[data-theme='dark'] .pageBtn, [data-theme='crywolf'] .pageBtn {
  border-color: rgba(255,255,255,0.1);
}

[data-theme='dark'] .pageBtn:hover:not(:disabled), [data-theme='crywolf'] .pageBtn:hover:not(:disabled) {
  background: rgba(255,255,255,0.05);
}
[data-theme='dark'] .pageBtn:active:not(:disabled), [data-theme='crywolf'] .pageBtn:active:not(:disabled) {
  background: rgba(255,255,255,0.1);
}

.pageText {
  font-size: 0.85rem;
  color: var(--text-main);
  font-weight: 500;
  margin: 0 0.25rem;
}

/* LIST VIEW STYLES */
.productCardListView {
  display: flex;
  flex-direction: row;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
  transition: all 0.2s;
  height: 220px;
}
.productCardListView:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.productCardListView:active {
  transform: scale(0.99);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
[data-theme='dark'] .productCardListView, [data-theme='crywolf'] .productCardListView {
  background: rgba(255,255,255,0.02);
  border-color: rgba(255,255,255,0.05);
}

.listViewImgWrapper {
  width: 250px;
  min-width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border-right: 1px solid #e2e8f0;
}
[data-theme='dark'] .listViewImgWrapper, [data-theme='crywolf'] .listViewImgWrapper {
  border-right-color: rgba(255,255,255,0.05);
}

.listViewImg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.listViewContent {
  flex: 1;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
}

.listViewHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.listViewCategory {
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.5px;
}
[data-theme='dark'] .listViewCategory, [data-theme='crywolf'] .listViewCategory {
  color: #94a3b8;
}

.listViewSku {
  font-size: 0.7rem;
  color: #94a3b8;
}

.listViewTitle {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.4;
  margin-bottom: auto;
}
[data-theme='dark'] .listViewTitle, [data-theme='crywolf'] .listViewTitle {
  color: #f8fafc;
}

.listViewFooter {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 1rem;
}

.listViewPrice {
  font-size: 1.3rem;
  font-weight: 800;
  color: #10b981;
}

.listViewSelectBtn {
  background: transparent;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  border-radius: 6px;
  padding: 0.4rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.listViewSelectBtn:hover {
  background: var(--accent-color);
  color: #fff;
}
.listViewSelectBtn:active {
  transform: scale(0.94);
}

/* Price Filter Styles */
.priceInputsWrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.priceInput {
  flex: 1;
  min-width: 0;
  appearance: none;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 0.5rem;
  font-size: 0.85rem;
  color: #1e293b;
  outline: none;
  text-align: center;
}
.priceInput::-webkit-outer-spin-button,
.priceInput::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.priceInput[type=number] {
  -moz-appearance: textfield;
}

[data-theme='dark'] .priceInput, [data-theme='crywolf'] .priceInput {
  background: rgba(0,0,0,0.2);
  border-color: rgba(255,255,255,0.1);
  color: #f8fafc;
}

.priceApplyBtn {
  width: 100%;
  background: var(--accent-color);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.priceApplyBtn:hover {
  opacity: 0.9;
}
.priceApplyBtn:active {
  transform: scale(0.97);
  opacity: 1;
}
