.product-search-wrapper {
    margin-top: 15px;
    /* margin-bottom: 15px; */
}

.form-control:focus {
    border-color: #e6bfae;
    box-shadow: 0 0 0 0.2rem rgba(230, 191, 174, 0.25);
}

.search-close-btn {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    cursor: pointer;
    color: #999;

    font-size: 20px;
    padding: 10px 15px;

    /* Ensure it doesn't move when clicked */
    line-height: 1;
    transition: color 0.2s;

    /* Make sure it's on top of the input */
    z-index: 5;
}

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

.custom-spinner {
    display: none;
    margin-right: 38px;
    margin-top: 2px;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 0, 0, 0.1); /* Light grey background circle */
    border-top-color: #e6bfae; /* Your theme color for the moving part */
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
