.search-container {
    position: relative;
}

.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
    max-height: 400px;
    overflow-y: auto;
}

.search-result-item {
    display: flex;
    padding: 10px;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #eee;
}

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

.search-result-item:hover {
    background-color: #f8f9fa;
}

.search-result-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 4px;
}

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

.search-result-name {
    font-weight: 500;
    margin-bottom: 4px;
}

.search-result-price {
    color: #666;
    font-size: 0.9em;
}

.no-results, .search-error {
    padding: 15px;
    text-align: center;
    color: #666;
}

.search-error {
    color: #dc3545;
} 

/* ========================================
   LUXURY "SEE ALL PRODUCTS" BUTTON
   ======================================== */

.search-see-all-btn {
    width: 100%;
    padding: 15px 20px;
    background: transparent;
    border: 2px solid #7C0A02;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    color: #7C0A02;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    margin-top: 5px;
}

.search-see-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #7C0A02;
    transition: left 0.3s ease;
    z-index: -1;
}

.search-see-all-btn:hover::before {
    left: 0;
}

.search-see-all-btn:hover {
    color: #ffffff;
    background: #7C0A02;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(124, 10, 2, 0.3);
}

.search-see-all-btn:active {
    transform: translateY(0);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .search-see-all-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }
} 