.savage-product-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    font-family: inherit;
}

.savage-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.savage-search-wrapper {
    position: relative;
    flex: 1;
    min-width: 250px;
}

#savage-search, #savage-category, #savage-sort {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    width: 100%;
    outline: none;
    background: #fff;
}

#savage-category, #savage-sort {
    width: auto;
    min-width: 180px;
    cursor: pointer;
}

/* Search Icon */
.savage-search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    pointer-events: none;
    font-size: 16px;
}

/* Auto Suggestions Box */
.savage-suggestions-box {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
    z-index: 999;
    border-radius: 0 0 6px 6px;
    max-height: 300px;
    overflow-y: auto;
}

.savage-suggest-item {
    display: block;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f9f9f9;
    font-size: 14px;
}

.savage-suggest-item:last-child {
    border-bottom: none;
}

.savage-suggest-item:hover {
    background-color: #f1f1f1;
    color: #000;
}

/* Products Grid */
.savage-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 25px;
}

.savage-product-card {
    border: 1px solid #eee;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #fff;
}

.savage-product-card:hover {
    box-shadow: 0px 10px 20px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.savage-product-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 4px;
}

.savage-product-card a {
    text-decoration: none;
    color: inherit;
}

.savage-product-card h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.4;
}

.savage-product-card .price {
    font-weight: 700;
    color: #000;
    font-size: 15px;
}

/* Load More Button */
.savage-pagination-wrapper {
    text-align: center;
    margin-top: 30px;
}

#savage-load-more {
    background: #111;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

#savage-load-more:hover {
    background: #333;
}