.ps-6f190e8e-container {
    width: 100%;
    position: relative;
}

.ps-6f190e8e-form {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
}

.ps-6f190e8e-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    background-color: #12121a;
    border-radius: 50px;
    padding: 0 20px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    position: relative;
    /* Gradient Border setup */
    background: 
        linear-gradient(#12121a, #12121a) padding-box,
        linear-gradient(135deg, #ff007f, #7f00ff) border-box;
    border: 2px solid transparent;
}

.ps-6f190e8e-wrapper:hover,
.ps-6f190e8e-wrapper:focus-within {
     box-shadow: 0 0 15px rgba(255, 0, 127, 0.4), 0 0 15px rgba(127, 0, 255, 0.4);
}


.ps-6f190e8e-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e67e22; /* Keep or change to match gradient? Keeping as per original */
    margin-right: 15px;
    flex-shrink: 0;
}

.ps-6f190e8e-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.ps-6f190e8e-input {
    flex-grow: 1;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    color: #ffffff;
    height: 60px;
    font-size: 16px;
    box-shadow: none !important;
    padding: 0;
    margin: 0;
    width: 100%;
}

.ps-6f190e8e-input:focus {
    background: transparent !important;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.ps-6f190e8e-input::placeholder {
    color: #a0a0a0;
    opacity: 1;
}

.ps-6f190e8e-input::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
}

.ps-6f190e8e-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(230, 126, 34, 0.3);
    border-radius: 50%;
    border-top-color: #e67e22;
    animation: ps-6f190e8e-spin 1s ease-in-out infinite;
    flex-shrink: 0;
    margin-left: 10px;
}

.ps-6f190e8e-no-results-msg {
    margin-top: 15px;
    color: #ff6b6b;
    font-size: 14px;
    text-align: center;
    width: 100%;
}

@keyframes ps-6f190e8e-spin {
    to { transform: rotate(360deg); }
}

/* Loop Grid Integration Transitions */
.e-loop-item, .product {
    transition: opacity 0.3s ease;
}