/* Search Results Dropdown */
.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 400px;
    background: #fff;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    transition: background 0.3s;
}

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

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

.search-result-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
}

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

.search-result-name {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #2c3e50;
}

.search-result-type {
    font-size: 11px;
    text-transform: uppercase;
    color: #999;
}

.search-result-price {
    font-weight: 600;
    color: #611f31;
    font-size: 14px;
}

.no-results {
    padding: 20px;
    text-align: center;
    color: #666;
}

/* Loading Spinner for Search */
.search-loading {
    padding: 20px;
    text-align: center;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #611f31;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: inline-block;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.product_tab_button ul li a {
    margin: 0 10px;
    padding: 10px 20px;
    border: 1px solid #611f31;
    color: #611f31;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
}

.product_tab_button ul li a:hover {
    background-color: #611f31;
    color: #fff;
}

.product_tab_button ul li a.active {
    background-color: #611f31;
    color: #fff;
}