.stone-search-container {
        position: relative;
        width: 100%;
        max-width: 500px;
        margin: 20px auto;
        z-index: 1000;
    }

    .stone-search-box {
        position: relative;
        display: flex;
        align-items: center;
        border-radius: 30px;
        background: #f8f9fa;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        border: 1px solid #e0e0e0;
        height: 50px;
    }

    .stone-search-box.focused {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
        border-color: #4a90e2;
    }

    .stone-search-icon-container {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 100%;
        background: #f0f0f0;
        border-radius: 30px 0 0 30px;
        cursor: pointer;
        transition: background 0.2s;
    }

    .stone-search-icon-container:hover {
        background: #e0e0e0;
    }

    .stone-search-icon {
        color: #777;
        font-size: 18px;
    }

    .stone-search-input-wrapper {
        flex: 1;
        position: relative;
        height: 100%;
    }

    .stone-search-input {
        width: 100%;
        height: 100%;
        border: none;
        background: transparent;
        padding: 0 15px;
        font-family: 'Manrope', sans-serif;
        font-size: 14px;
        color: #333;
        outline: none;
    }

    .stone-search-input::placeholder {
        color: #999;
        font-weight: 400;
    }

    .stone-close-icon-container {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 100%;
        background: #f0f0f0;
        border-radius: 0 30px 30px 0;
        cursor: pointer;
        transition: background 0.2s;
    }

    .stone-close-icon-container:hover {
        background: #e0e0e0;
    }

    .stone-close-icon {
        color: #004f64;
        font-size: 37px;
        transition: all 0.2s;
    }

    .stone-close-icon-container:hover .stone-close-icon {
        color: #666;
    }


    .stone-autocomplete-suggestions {
        position: absolute;
        top: calc(100% + 5px);
        left: 0;
        right: 0;
        z-index: 1001;
        max-height: 0;
        overflow-y: auto;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0);
        border: 1px solid transparent;
        opacity: 0;
        transition:
            max-height 0.3s ease-out,
            opacity 0.2s ease,
            box-shadow 0.3s ease,
            border-color 0.3s ease;
        transform-origin: top center;
        transform: scaleY(0.9);
        will-change: transform, opacity, max-height;
        scrollbar-width: thin;
        scrollbar-color: #c1c1c1 #f1f1f1;
    }

    .stone-autocomplete-suggestions.visible {
        max-height: 400px;
        opacity: 1;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
        border-color: #e0e0e0;
        transform: scaleY(1);
    }

    .stone-autocomplete-suggestion {
        padding: 6px 20px;
        cursor: pointer;
        font-size: 13px;
        border-bottom: 1px solid rgb(211, 211, 211);
        transition:
            background 0.2s ease;
        display: flex;
        gap: 8px;
        align-items: center;
        position: relative;

    }

    .stone-autocomplete-suggestion:hover {
        background: #f5f9ff;

    }

    .stone-autocomplete-suggestion:last-child {
        border-bottom: none;
    }

    .stone-autocomplete-suggestion.active {
        background: #f5f9ff;
    }

    .stone-suggestion-content {
        flex: 1;
        padding-right: 25px;
    }

    .stone-suggestion-title {
        font-weight: 600;
        color: #222;
        margin-bottom: 3px;
    }

    .stone-suggestion-details {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        font-size: 12px;
        color: #666;
    }

    .stone-suggestion-detail {
        display: flex;
        align-items: center;
    }

    .stone-suggestion-detail i {
        margin-right: 4px;
        font-size: 16px;
        color: #004f64;
    }

    .stone-highlight {
        background-color: #bbbbbb;
        padding: 0 2px;
        border-radius: 2px;
        font-weight: 600;
        color: #004f64;
    }


    .stone-suggestion-arrow {
        color: #004f64;
        font-size: 25px;
        cursor: pointer;
        padding: 8px;
        margin-left: 10px;
    }


    .stone-autocomplete-suggestions::-webkit-scrollbar {
        width: 8px;
    }

    .stone-autocomplete-suggestions::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 0 8px 8px 0;
    }

    .stone-autocomplete-suggestions::-webkit-scrollbar-thumb {
        background: #c1c1c1;
        border-radius: 4px;
    }

    .stone-autocomplete-suggestions::-webkit-scrollbar-thumb:hover {
        background: #a8a8a8;
    }

    
    .stone-loading-indicator {
        display: none;
        position: absolute;
        right: 45px;
        top: 50%;
        transform: translateY(-50%);
        color: #999;
        font-size: 16px;
        animation: stoneSpin 1s linear infinite;
    }

    @keyframes stoneSpin {
        0% {
            transform: translateY(-50%) rotate(0deg);
        }

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

    .stone-search-input-wrapper form {
        line-height: 47px;
    }
 @media (max-width:576px){.stone-search-container{max-width:90%}.stone-autocomplete-suggestion{font-size:10px}.stone-autocomplete-suggestions.visible{max-height:189px}}