.product-search-box {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.product-search-box .product-search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.product-search-box .search-box-text {
    flex: 1;
    padding: 10px 40px 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.product-search-box .btn-clear-search {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    padding: 5px;
    display: none;
}

.product-search-box .btn-clear-search:hover {
    color: #333;
}

.product-search-box .search-box-button {
    margin-left: 10px;
    padding: 10px 20px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.product-search-box .search-box-button:hover {
    background: #0056b3;
}

.product-search-box .search-box-button:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Loading state */
.product-search-box .search-box-text.search-loading {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24'%3E%3Cpath fill='%23999' d='M12,1A11,11,0,1,0,23,12,11,11,0,0,0,12,1Zm0,19a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' opacity='.25'/%3E%3Cpath fill='%23999' d='M10.14,1.16a11,11,0,0,0-9.14,10.9A1.59,1.59,0,0,0,2.46,14,1.59,1.59,0,0,1,1,15.56a1.59,1.59,0,0,0,1.59,1.59h0A11,11,0,0,0,12.05,23a11,11,0,0,0,10.9-9.14,1.59,1.59,0,0,0-3.18,0A8,8,0,1,1,10.14,1.16Z'%3E%3CanimateTransform attributeName='transform' type='rotate' dur='0.75s' values='0 12 12;360 12 12' repeatCount='indefinite'/%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 40px;
}

.product-search-box .search-box-text:disabled {
    background-color: #f5f5f5;
    cursor: wait;
}

/* Loading spinner for products wrapper */
.ajax-products-busy {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.loading-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.ajax-products-busy p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* Smooth transitions */
.products-wrapper {
    transition: opacity 0.2s ease-in-out;
}

.products-wrapper.fade-out {
    opacity: 0.5;
}

/* Retry button styling */
.retry-search {
    margin-top: 10px;
    padding: 8px 16px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.retry-search:hover {
    background: #0056b3;
}

@media (max-width: 768px) {
    .product-search-box {
        padding: 10px;
    }
    
    .product-search-box .product-search-input-wrapper {
        flex-direction: column;
    }
    
    .product-search-box .search-box-button {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
    }
}

