/* Search Form Styling */
.search-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
}

.search-form {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.search-input {
    flex: 1;
    min-width: 300px;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border 0.3s;
}

.search-input:focus {
    border-color: #4a90e2;
    outline: none;
}

.search-category {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    font-size: 16px;
}

.search-button {
    padding: 12px 30px;
    background: #4a90e2;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.search-button:hover {
    background: #3a7bc8;
}

/* Results Styling */
.search-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.product-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
    background: white;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 15px;
    border-radius: 5px;
}

.product-title {
    font-size: 18px;
    margin: 10px 0;
    color: #333;
    font-weight: 600;
}

.product-category {
    display: inline-block;
    background: #f0f7ff;
    color: #4a90e2;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 10px;
}

.product-price {
    font-weight: bold;
    color: #28a745;
    font-size: 20px;
    margin: 10px 0;
}

.product-description {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
}

.no-results {
    text-align: center;
    padding: 50px;
    color: #666;
    font-size: 18px;
    grid-column: 1 / -1;
}

.highlight {
    background-color: #fffde7;
    padding: 0 2px;
    font-weight: bold;
}