
    @font-face {
        font-family: 'Century Gothic';
        font-style: normal;
        font-weight: 100;
        font-display: block;
        src: url('https://moongiftbazzar.com/gift/live/assets/fonts/Century-Gothic.ttf') format('truetype');
    }

    .fa-thin,
    .fat {
        font-family: 'Century Gothic';

    }

    .off-canvas .btn-close {
        font-size: 15px;
        font-weight: 800 !important;
        color: #222;
    }

    @font-face {
        font-family: 'Montserrat SemiBold';
        font-style: normal;
        font-weight: 100;
        font-display: block;
        Shopping Cart:
            src: url('https://moongiftbazzar.com/gift/live/assets/fonts/Montserrat-SemiBold.ttf') format('truetype');
    }

    .fa-thin,
    .fat {
        font-family: 'Montserrat SemiBold';
        /*font-weight: 100;*/
    }

    @font-face {
        font-family: 'Calibri';
        font-style: normal;
        font-weight: 100;
        font-display: block;
        src: url('https://moongiftbazzar.com/gift/live/assets/fonts/calibri-italic.ttf') format('truetype');
    }

    .fa-thin,
    .fat {
        font-family: 'Calibri';
        /*font-weight: 100;*/
    }

    /*body {*/
    /*    font-family: Montserrat SemiBold;*/
    /*}*/



      .logo {
                                max-width: 100px !important;
                            }

                            .header-middle {
                                padding-top: 0.5rem;
                                padding-bottom: 0.5rem;
                            }

                            .sticky-header.fixed {
                                padding-top: 0.5rem;
                                padding-bottom: 0.5rem;
                            }
                            
                             .header-search.hs-simple input.form-control {
                padding: 0 5rem 0 1.55rem;
                border-radius: 5px;
                /*border: 2px solid;*/
                border-color: #fff !important;
                border-color: #ffffff;
                font-family: inherit;
                background-color: #fff !important;
                color: #999
            }

            .input-wrapper.has-results {
                border-radius: 25px 25px 0 0;
                border-bottom: none;
            }


            .input-wrapper.has-results+div #searchResults {
                border-top: 1px solid #e0e0e0;
            }

            .header-search.hs-simple {
                position: relative;
                max-width: 500px;
                margin: 0 auto;
                z-index: 1000;
            }

            .input-wrapper {
                position: relative;
                display: flex;
                align-items: center;
                background: #fff;
                border: 2px solid #e0e0e0;
                border-radius: 25px;
                overflow: hidden;
                transition: all 0.3s ease;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
                z-index: 1002;
            }

            .input-wrapper:focus-within {
                border-color: #007bff;
                box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
            }

            .form-control {
                flex: 1;
                border: none;
                outline: none;
                padding: 12px 20px;
                font-size: 16px;
                background: transparent;
                color: #333;
            }

            .form-control::placeholder {
                color: #999;
                font-style: italic;
            }

            .btn-search {
                background: #007bff;
                border: none;
                padding: 12px 20px;
                color: white;
                cursor: pointer;
                transition: background 0.3s ease;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .btn-search:hover {
                background: #0056b3;
            }

            .btn-search .d-icon-search {
                font-size: 18px;
            }


            #searchResults {

                top: 100%;
                left: 0;
                right: 0;
                background: white;
                border: 1px solid #e0e0e0;
                border-top: none;
                border-radius: 0 0 15px 15px;
                max-height: 300px;
                overflow-y: auto;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
                z-index: 1001;
                margin-top: 0;
            }


            #searchResults:empty {
                display: none;
            }

            .product-item {
                padding: 12px 20px;
                border-bottom: 1px solid #f0f0f0;
                transition: background 0.2s ease;
                cursor: pointer;
            }

            .product-item:last-child {
                border-bottom: none;
            }

            .product-item:hover {
                background: #f8f9fa;
            }


            .product-item a {
                color: #333;
                text-decoration: none;
                display: block;
                font-size: 14px;
                font-weight: 500;
                transition: color 0.2s ease;
            }

            .product-item a:hover {
                color: #007bff;
                text-decoration: none;
            }

            #searchResults div:not(.product-item) {
                padding: 15px 20px;
                color: #666;
                font-style: italic;
                text-align: center;
                background: #f8f9fa;
            }

            @media (max-width: 768px) {
                .header-search.hs-simple {
                    max-width: 100%;
                    margin: 0 15px;
                }

                .form-control {
                    font-size: 14px;
                    padding: 10px 15px;
                }

                .btn-search {
                    padding: 10px 15px;
                }

                .product-item {
                    padding: 10px 15px;
                }

                .product-item a {
                    font-size: 13px;
                }
            }

            .search-loading {
                padding: 15px 20px;
                text-align: center;
                color: #666;
                font-style: italic;
            }

            .search-loading::before {
                content: "🔍 ";
                margin-right: 5px;
            }

            .form-control:focus {
                box-shadow: none;
            }

            #searchResults::-webkit-scrollbar {
                width: 6px;
            }

            #searchResults::-webkit-scrollbar-track {
                background: #f1f1f1;
            }

            #searchResults::-webkit-scrollbar-thumb {
                background: #c1c1c1;
                border-radius: 3px;
            }

            #searchResults::-webkit-scrollbar-thumb:hover {
                background: #a1a1a1;
            }

            @keyframes slideDown {
                from {
                    opacity: 0;
                    transform: translateY(-10px);
                }

                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            #searchResults {
                animation: slideDown 0.3s ease;
            }

            .highlight {
                background-color: #fff3cd;
                font-weight: bold;
                padding: 1px 2px;
                border-radius: 2px;
            }
            
            .custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.custom-modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    min-width: 300px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.modal-actions {
    margin-top: 15px;
    display: flex;
    justify-content: space-around;
}
.btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.btn-danger {
    background: #e74c3c;
    color: #fff;
}
.btn-secondary {
    background: #bdc3c7;
    color: #333;
}