.savycart-search-container.always-visible {
    position: absolute;
    top: -22px;
    width: 100%;
    z-index: 9999;
}

.savycart-expandable-wrapper {
    position: relative;
    width: 100%;
    max-height: 80vh;
    background: white;
    transition: all 0.3s ease;
    z-index: 10000;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: 1px solid #dcdcdc;
}

.savycart-search-box {
    display: flex;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

#savycart-search-form {
    display: flex;
    width: 100%;
}

#savycart-search-input {
    flex-grow: 1;
    padding: 8px 25px;
    border: none;
    font-size: 16px;
    outline: none;
    width: 100%;
}

#savycart-search-button {
    background: #00BF63;
    border-radius: 0;
    border: none;
    padding: 0 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

#savycart-search-button:hover {
    background: #009a50;
}

#savycart-search-results {
    width: 100%;
    background: white;
    max-height: 400px;
    overflow-y: auto;
    display: none;
    position: relative; /* Added for sticky positioning */
}

.savycart-products-list {
    padding: 10px 0;
    position: relative; /* Added for sticky positioning */
}

.savycart-product-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    text-decoration: none;
    color: #333;
    transition: background 0.2s;
}

.savycart-product-item:hover {
    background: #f8f9fa;
}

.savycart-product-image {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.savycart-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.savycart-product-title {
    font-size: 15px;
    font-weight: 500;
}

.savycart-no-results {
    padding: 20px;
    text-align: center;
    color: #6c757d;
}

/* See More Results Button - Sticky at bottom */
.savycart-see-more-container {
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    border-top: 1px solid #f0f0f0;
    text-align: center;
    background: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
    z-index: 100; /* Ensure it stays above content when scrolling */
}

.savycart-see-more-button {
    display: inline-block;
    padding: 10px 20px;
    background: #f8f9fa;
    color: #00BF63;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    width: 100%;
    box-sizing: border-box;
}

.savycart-see-more-button:hover {
    background: #00BF63;
    color: white;
    border-color: #00BF63;
}

/* Ensure the last product item has proper spacing above sticky button */
.savycart-product-item:last-of-type {
    margin-bottom: 10px;
}

@media (max-width: 480px) {
    .savycart-search-container.always-visible {
        top: 0;
    }
    
    .savycart-see-more-button {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .savycart-see-more-container {
        padding: 12px 15px;
    }
}