.glassy-search-container {
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    position: relative;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    z-index: 1000;
}

.glassy-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 10px 25px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glassy-search-wrapper:focus-within {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.02);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.3);
}

#glassy-search-input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #333;
    font-size: 20px;
    padding: 15px 0;
    font-weight: 500;
}

#glassy-search-input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.glassy-search-icon {
    color: rgba(0, 0, 0, 0.5);
    margin-left: 15px;
    pointer-events: none;
}

/* Results Dropdown */
.glassy-results-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    display: none;
    overflow: hidden;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.glassy-result-item {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background 0.2s;
}

.glassy-result-item:last-child {
    border-bottom: none;
}

.glassy-result-item:hover {
    background: rgba(255, 255, 255, 0.5);
}

.glassy-result-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 20px;
    background: #f0f0f0;
}

.glassy-result-info {
    flex: 1;
}

.glassy-result-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 3px;
}

.glassy-result-sku {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
}

.glassy-result-price {
    font-weight: 700;
    color: #000;
    font-size: 16px;
}

.glassy-view-all {
    display: block;
    padding: 15px;
    text-align: center;
    background: rgba(0, 0, 0, 0.03);
    color: #555;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s;
}

.glassy-view-all:hover {
    background: rgba(0, 0, 0, 0.08);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .glassy-search-container {
        padding: 0 15px;
        margin: 20px auto;
    }
    
    #glassy-search-input {
        font-size: 16px;
        padding: 10px 0;
    }
    
    .glassy-result-img {
        width: 45px;
        height: 45px;
    }
    
    .glassy-result-title {
        font-size: 14px;
    }
}
