.elementor-element.elementor-element-7c627644.elementor-column.elementor-col-50.elementor-top-column input[type="text"] {
    height: 44px;
    width: 100%;
    padding: 6px;
    line-height: 30px;
    display: block;
    font-size: 12px;
    position: relative;
    z-index: 2;
    -webkit-appearance: none;
    background: rgba(0, 0, 0, 0);
    color: rgb(173, 173, 173);
    border-radius:  0;
}

.elementor-element-13b5fbc5 {
    margin-top: 10px!important;
}

/* Search Products Plugin Enhanced Styles */

/* Main wrapper */
.search-products-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Search container */
.search-products-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

/* Search input */
input[name="autocomplete"] {
    width: 100%;
    padding: 12px 45px 12px 16px;
    font-size: 16px;
    line-height: 1.5;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

input[name="autocomplete"]:focus {
    border-color: #4285f4;
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.1), 0 2px 8px rgba(0, 0, 0, 0.1);
}

input[name="autocomplete"]::placeholder {
    color: #999;
    opacity: 1;
}

/* Loader positioned outside input */
#loading.search-loader {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    pointer-events: none;
    z-index: 10;
}

/* Autocomplete dropdown */
.ui-autocomplete {
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-top: 4px;
    padding: 4px 0;
    z-index: 9999 !important;
    font-family: inherit;
}

.ui-autocomplete .ui-menu-item {
    list-style: none;
    margin: 0;
    padding: 0;
    border: none;
}

.ui-autocomplete .ui-menu-item div {
    padding: 10px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    color: #333;
    font-size: 14px;
    line-height: 1.4;
    display: flex;
    align-items: center;
}

.ui-autocomplete .ui-menu-item:hover div,
.ui-autocomplete .ui-menu-item.ui-state-active div,
.ui-autocomplete .ui-menu-item.ui-state-focus div {
    background-color: #f5f5f5;
    color: #000;
    border: none;
    margin: 0;
}

/* Search result icons */
.search-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    font-size: 14px;
    flex-shrink: 0;
}

.product-icon {
    opacity: 0.7;
}

.variation-icon {
    opacity: 0.7;
}

.category-icon {
    opacity: 0.7;
}

/* No results found */
#no_result_found.aws-search-result {
    margin-top: 8px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

#no_result_found ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#no_result_found .aws_result_item {
    padding: 16px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

#no_result_found .aws_no_result a {
    color: #4285f4;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

#no_result_found .aws_no_result a:hover {
    color: #1a73e8;
    text-decoration: underline;
}

/* Scrollbar styling for dropdown */
.ui-autocomplete::-webkit-scrollbar {
    width: 8px;
}

.ui-autocomplete::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.ui-autocomplete::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.ui-autocomplete::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Responsive design */
@media (max-width: 768px) {
    .search-products-wrapper {
        max-width: 100%;
    }
    
    input[name="autocomplete"] {
        font-size: 16px; /* Prevent zoom on iOS */
        padding: 10px 40px 10px 14px;
    }
    
    .ui-autocomplete {
        max-height: 300px;
    }
    
    .ui-autocomplete .ui-menu-item div {
        padding: 12px 14px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    input[name="autocomplete"] {
        padding: 10px 36px 10px 12px;
        font-size: 15px;
    }
    
    #loading.search-loader {
        width: 20px;
        height: 20px;
        right: 10px;
    }
    
    .search-icon {
        width: 18px;
        height: 18px;
        font-size: 13px;
        margin-right: 6px;
    }
}

/* Loading animation enhancement */
@keyframes spin {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}

#loading.search-loader[style*="display: block"],
#loading.search-loader[style*="display:block"] {
    animation: spin 1s linear infinite;
}

/* Focus visible for accessibility */
input[name="autocomplete"]:focus-visible {
    outline: 2px solid #4285f4;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    input[name="autocomplete"] {
        border-width: 2px;
    }
    
    .ui-autocomplete {
        border-width: 2px;
    }
}