/* styles-extras.css */
/* Styles for shop search and sort controls */

.shop-controls {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

#shop-search-input {
    flex-grow: 1;
    padding: 12px 20px;
    background-color: #0f1724; /* Card background */
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    min-width: 250px;
}

#shop-search-input::placeholder {
    color: #A0A0B0;
}

#shop-search-input:focus {
    outline: none;
    border-color: #06b6d4; /* Neon accent */
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.5);
}

#shop-sort-select {
    padding: 12px 20px;
    background-color: #0f1724; /* Card background */
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='292.4'%20height='292.4'%3E%3Cpath%20fill='%23A0A0B0'%20d='M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: .65em auto;
    padding-right: 40px; /* Make space for arrow */
}

#shop-sort-select:focus {
    outline: none;
    border-color: #06b6d4; /* Neon accent */
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.5);
}