/* ==========================================================================
   PRODUCT SEARCH FORM
   ========================================================================== */
.search-premium {
    display: flex;
    width: 100%;
    position: relative;
}

.search-premium__wrapper {
    position: relative;
    width: 100%;
}

.search-premium__field {
    width: 100%;
    background-color: var(--portal-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: var(--radius-btn);
    padding: 0.875rem 3rem 0.875rem 1rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    font-family: var(--font-main);
}

.search-premium__field::placeholder {
    color: var(--text-muted);
}

.search-premium__field:focus {
    outline: none;
    border-color: var(--portal-gold);
    box-shadow: var(--shadow-glow);
}

.search-premium__submit {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.5rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-premium__submit:hover {
    color: var(--portal-gold);
}

.search-premium__icon {
    width: 1.25rem;
    height: 1.25rem;
}