/**
 * Shop Sort and Search Bar Styles
 */

.logon-shop-sort-search-bar {
    width: 100%;
    margin-bottom: 0;
    padding: 0;
}

.logon-shop-sort-search-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.logon-sort-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logon-sort-label {
    font-family: var(--logon-font-family, 'Nunito', sans-serif);
    font-size: 16px;
    font-weight: 400;
    color: #000;
    margin: 0;
    white-space: nowrap;
}

.logon-sort-dropdown {
    position: relative;
    display: inline-block;
}

.logon-sort-select {
    font-family: var(--logon-font-family);
    font-size: 16px;
    font-weight: 400;
    color: #0D47A1;
    background-color: transparent;
    border: none;
    padding: 5px 0px 5px 0px;
    appearance: none;
    cursor: pointer;
    outline: none;
    background-size: 12px 12px;
    padding-right: 5px;
}

.logon-sort-select:hover {
    color: #1976D2;
}

.logon-sort-select:focus {
    outline: none;
}

.logon-search-section {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    justify-content: end;
    display: flex;
}

.logon-shop-search-form {
    display: flex;
    align-items: center;
    gap: 0;
    width: 60%;
}

.logon-search-input-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
}

.logon-search-icon {
    position: absolute;
    left: 16px;
    width: 18px;
    height: 18px;
    color: #0D47A1;
    pointer-events: none;
    z-index: 1;
}

.logon-shop-search-input {
    flex: 1;
    width: 100%;
    border: 1px solid #0D47A1;
    border-radius: 40px 0 0 40px;
    padding: 12px 16px 12px 45px;
    font-family: var(--logon-font-family);
    font-size: 16px;
    border-radius: 40px 0px 0px 40px !important;
    color: #000;
    padding: 12px 40px !important;
    outline: none;
    transition: all 0.3s ease;
}

.logon-shop-search-input::placeholder {
    color: #999;
}

.logon-shop-search-input:focus {
    border-color: #1976D2;
    box-shadow: 0 0 0 2px rgba(13, 71, 161, 0.1);
}

.logon-shop-search-button {
    border: 1px solid #0D47A1;
    border-left: none;
    border-radius: 40px;
    margin-left: -40px;
    z-index: 1;
    background-color: #0D47A1;
    color: #fff;
    padding: 12px 30px;
    font-family: var(--logon-font-family);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.logon-shop-search-button:hover {
    background-color: #4fc3f7 !important;
    border-color: #4fc3f7 !important;
}

.logon-shop-search-button:active {
    transform: scale(0.98);
}

/* Responsive Design */
@media (max-width: 768px) {
    .logon-shop-sort-search-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .logon-sort-section {
        width: 100%;
        justify-content: space-between;
    }

    .logon-search-section {
        min-width: 100%;
        max-width: 100%;
    }

    .logon-shop-search-form {
        display: flex !important;
        align-items: center !important;
        gap: 0;
        width: 100% !important;
    }

    .logon-shop-search-input {
        border-radius: 40px;
        width: 100%;
    }

    .logon-shop-search-button {
        border-radius: 40px;
        border-left: 1px solid #0D47A1;
        width: 35%;
    }
}
