 /* body {
     background-color: #f8f9fa;
     font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
 } */

 .search-info {
     color: #666;
     font-size: 14px;
     margin-bottom: 20px;
 }

 .search-info a {
     color: #0066cc;
     text-decoration: none;
 }

 .filter-controls {
     background: white;
     border-radius: 8px;
     padding: 15px;
     margin-bottom: 20px;
     box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
 }

 .view-toggle {
     display: flex;
     gap: 5px;
 }

 .view-btn {
     border: 1px solid #ddd;
     background: white;
     padding: 5px 8px;
     border-radius: 4px;
     cursor: pointer;
 }

 .view-btn.active {
     background: #0066cc;
     color: white;
     border-color: #0066cc;
 }

 .product-card {
     background: white;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
     height: 100%;
     position: relative;
 }

 .product-card:hover {
     transform: translateY(-2px);
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
 }

 .product-image {
     position: relative;
     height: 200px;
     overflow: hidden;
 }

 .product-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .wishlist-btn {
     position: absolute;
     top: 10px;
     right: 10px;
     background: rgba(255, 255, 255, 0.9);
     border: none;
     border-radius: 50%;
     width: 32px;
     height: 32px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 14px;
     color: #666;
 }

 .wishlist-btn:hover {
     background: white;
     color: #ff4757;
 }

 .badge-corner {
     position: absolute;
     top: 10px;
     left: 10px;
     background: #00d084;
     color: white;
     padding: 4px 8px;
     border-radius: 12px;
     font-size: 11px;
     font-weight: 600;
 }

 .product-info {
     padding: 15px;
 }

 .product-title {
     font-size: 14px;
     font-weight: 600;
     color: #333;
     margin-bottom: 8px;
     line-height: 1.3;
     height: 36px;
     overflow: hidden;
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
 }

 .product-specs {
     font-size: 12px;
     color: #666;
     margin-bottom: 10px;
 }

 .product-specs .spec-item {
     display: flex;
     align-items: center;
     margin-bottom: 2px;
 }

 .product-specs .spec-icon {
     width: 12px;
     margin-right: 6px;
     color: #999;
 }

 .price-section {
     margin-bottom: 12px;
 }

 .current-price {
     font-size: 16px;
     font-weight: 700;
     color: #333;
 }

 .original-price {
     font-size: 12px;
     color: #999;
     text-decoration: line-through;
     margin-left: 8px;
 }

 .discount-badge {
     background: #ff4757;
     color: white;
     padding: 2px 6px;
     border-radius: 4px;
     font-size: 10px;
     font-weight: 600;
     margin-left: 8px;
 }

 .installment-info {
     font-size: 11px;
     color: #666;
     margin-bottom: 8px;
 }

 .rating-section {
     display: flex;
     align-items: center;
     gap: 5px;
     margin-bottom: 8px;
 }

 .rating-stars {
     color: #ffa500;
     font-size: 12px;
 }

 .rating-text {
     font-size: 11px;
     color: #666;
 }

 .shipping-info {
     display: flex;
     align-items: center;
     gap: 5px;
     font-size: 11px;
     color: #00d084;
 }

 .promo-badges {
     display: flex;
     gap: 5px;
     margin-top: 8px;
     flex-wrap: wrap;
 }

 .promo-badge {
     padding: 2px 6px;
     border-radius: 4px;
     font-size: 9px;
     font-weight: 600;
 }

 .promo-cashback {
     background: #e8f5e8;
     color: #00d084;
 }

 .promo-cicilan {
     background: #e3f2fd;
     color: #1976d2;
 }

 .promo-gratis {
     background: #fff3e0;
     color: #f57c00;
 }

 .sort-dropdown {
     min-width: 200px;
 }

 .results-count {
     color: #666;
     font-size: 14px;
 }