 .compact-filters {
     background: #eaeaea;
     border-radius: 12px;
     padding: 16px;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
     margin-bottom: 20px;
     border: 1px solid #e5e7eb;
 }

 .filters-row {
     display: flex;
     align-items: center;
     gap: 12px;
     flex-wrap: wrap;
 }

 .filters-label {
     font-size: 14px;
     font-weight: 600;
     color: #374151;
     display: flex;
     align-items: center;
     gap: 6px;
     flex-shrink: 0;
 }

 .filters-label svg {
     width: 16px;
     height: 16px;
     stroke: #3b0436;
 }

 .compact-select {
     position: relative;
     min-width: 120px;
 }

 .compact-select.active {
     z-index: 100;
 }

 .compact-trigger {
     background: #f8fafc;
     border: 1px solid #e2e8f0;
     border-radius: 8px;
     padding: 8px 12px;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: space-between;
     transition: all 0.2s;
     font-size: 14px;
     min-height: 36px;
 }

 .compact-trigger:hover {
     border-color: #3b0436;
     background: #f1f5f9;
 }

 .compact-select.active .compact-trigger {
     border-color: #3b0436;
     background: #eef2ff;
 }

 .compact-text {
     color: #1f2937;
     font-weight: 500;
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
 }

 .compact-arrow {
     width: 16px;
     height: 16px;
     stroke: #6b7280;
     transition: transform 0.2s;
     flex-shrink: 0;
     margin-left: 8px;
 }

 .compact-select.active .compact-arrow {
     transform: rotate(180deg);
 }

 .compact-options {
     position: absolute;
     top: 100%;
     left: 0;
     right: 0;
     background: white;
     border: 1px solid #e5e7eb;
     border-radius: 8px;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
     margin-top: 2px;
     opacity: 0;
     visibility: hidden;
     transform: translateY(-4px);
     transition: all 0.2s;
     z-index: 1000;
     max-height: 200px;
     overflow-y: auto;
 }

 .compact-select.active .compact-options {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
 }

 .compact-option {
     padding: 10px 12px;
     cursor: pointer;
     transition: all 0.2s;
     border-bottom: 1px solid #f3f4f6;
     font-size: 14px;
     color: #374151;
 }

 .compact-option:last-child {
     border-bottom: none;
 }

 .compact-option:hover {
     background: #f8fafc;
     color: #3b0436;
 }

 .compact-option.selected {
     background: #eef2ff;
     color: #3b0436;
     font-weight: 500;
 }

 .clear-btn {
     background: #3b0436;
     color: white;
     border: none;
     border-radius: 6px;
     padding: 8px 12px;
     cursor: pointer;
     font-size: 13px;
     font-weight: 500;
     transition: all 0.2s;
     display: flex;
     align-items: center;
     gap: 4px;
 }

 .clear-btn:hover {
     background: #530a4d;
 }

 .clear-btn svg {
     width: 14px;
     height: 14px;
 }

 .active-count {
     background: #eaeaea;
     color: #3b0436;
     border-radius: 50%;
     width: 20px;
     height: 20px;
     font-size: 11px;
     font-weight: 600;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-left: 4px;
 }

 .search-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 16px;
     gap: 16px;
 }

 .search-title {
     margin: 0;
     font-size: 16px;
     font-weight: 600;
     color: white;
 }

 .results-count {
     font-size: 18px;
     color: #fce4ff;
     font-weight: bold;
 }

 .filter-container {
     display: flex;
     gap: 12px;
     flex-wrap: wrap;
 }

 .skeleton-item {
     background: rgba(255, 255, 255, 0.1);
     border-radius: 8px;
     overflow: hidden;
     position: relative;
 }

 .skeleton-img {
     height: 120px;
     background: rgba(255, 255, 255, 0.1);
     position: relative;
 }

 .skeleton-title {
     height: 16px;
     background: rgba(255, 255, 255, 0.1);
     margin: 8px 0;
     border-radius: 4px;
 }

 .skeleton-description {
     height: 12px;
     background: rgba(255, 255, 255, 0.1);
     margin: 4px 0;
     border-radius: 4px;
     width: 80%;
 }

 .skeleton-info {
     height: 10px;
     background: rgba(255, 255, 255, 0.1);
     margin: 4px 0;
     border-radius: 4px;
     width: 60%;
 }

 .skeleton-price {
     height: 14px;
     background: rgba(255, 255, 255, 0.1);
     margin: 8px 0;
     border-radius: 4px;
     width: 40%;
 }

 .skeleton-shimmer {
     position: relative;
     overflow: hidden;
 }

 .skeleton-shimmer::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg,
             transparent,
             rgba(255, 255, 255, 0.2),
             transparent);
     animation: shimmer 1.5s infinite;
 }

 @keyframes shimmer {
     0% {
         left: -100%;
     }

     100% {
         left: 100%;
     }
 }

 /* Smooth pagination transitions */
 .pagination-container {
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 8px;
     margin: 20px 0;
     opacity: 0;
     transform: translateY(10px);
     transition: opacity 0.3s ease, transform 0.3s ease;
 }

 .pagination-container.visible {
     opacity: 1;
     transform: translateY(0);
 }

 .page-btn {
     padding: 8px 12px;
     border: 1px solid rgba(255, 255, 255, 0.2);
     background: rgba(255, 255, 255, 0.1);
     color: white;
     border-radius: 4px;
     cursor: pointer;
     transition: all 0.2s ease;
 }

 .page-btn:hover {
     background: rgba(255, 255, 255, 0.2);
     transform: translateY(-1px);
 }

 .page-btn.active {
     background: #b80daa;
     border-color: #530a4d;
 }

 .page-ellipsis {
     color: rgba(255, 255, 255, 0.6);
     padding: 8px 4px;
 }

 @media (max-width: 768px) {
     .compact-filters {
         padding: 12px;
     }

     .filters-row {
         gap: 8px;
     }

     .compact-select {
         min-width: 100px;
         flex: 1;
     }

     .search-header {
         flex-direction: column;
         align-items: stretch;
         gap: 12px;
     }

     .search-title {
         text-align: center;
     }
 }

 @media (max-width: 480px) {
     .filters-row {
         flex-direction: column;
         align-items: stretch;
     }


     .compact-select {
         min-width: 40%;
     }

     .compact-filters {
         position: relative;
     }

     .clear-btn {
         position: absolute;
         top: 100%;
         top: 3px;
         right: 3px;
         font-size: 11px;
         gap: 2px;
         padding: 6px 10px;
         width: fit-content;
         z-index: 10;
     }

 }