    .user-menu {
        position: relative;
        display: inline-block;
    }

    .user-dropdown {
        display: none;
        position: absolute;
        right: 0;
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        min-width: 180px;
        margin-top: 8px;
    }

    .user-dropdown a,
    .user-dropdown button {
        display: block;
        padding: 10px 14px;
        color: #333;
        text-decoration: none;
        background: none;
        border: none;
        width: 100%;
        text-align: left;
        cursor: pointer;
    }

    .user-dropdown a:hover,
    .user-dropdown button:hover {
        background-color: #f5f5f5;
    }

    .logout-btn {
        color: #d9534f;
    }

    .iti {
        width: 100%;
    }

    .iti__flag-container {
        border-radius: 10px 0 0 10px;
    }
    
    .iti__selected-flag {
        background-color: #f9f9f9 !important;
        border-right: 1px solid #ddd;
    }
    
    .text-teal {
        color: #009688 !important;
    }
    
    .fancy-input {
        border-radius: 10px;
        border: 1px solid #dcdcdc;
        padding: 10px 14px;
        transition: all 0.2s ease;
        font-size: 15px;
        background-color: #fff;
    }
    
    .fancy-input:focus {
        border-color: #009688;
        box-shadow: 0 0 0 2px rgba(0, 150, 136, 0.15);
    }
    
    .form-select.fancy-input {
        background-color: #fff;
    }
    
    .section-header h5 {
        border-left: 4px solid #009688;
        padding-left: 8px;
        color: #212121;
    }
    
    .guest-checkout-section .card {
        background-color: #fff;
        border: 1px solid #eaeaea;
        border-radius: 16px;
    }
    
    .guest-checkout-section .card-body {
        background: linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%);
    }
    
    .header .col-md {
        position: static !important;
        overflow: visible !important;
    }

    .search-results {
        position: fixed !important;
        top: 88px;
        left: 50%;
        transform: translateX(-50%);
        width: 600px;
        max-width: 90%;
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 10px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
        z-index: 999999 !important;
        display: none;
        overflow-y: auto;
        max-height: 380px;
        padding: 8px 0;
        animation: fadeIn 0.2s ease-in-out;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translate(-50%, -10px);
        }

        to {
            opacity: 1;
            transform: translate(-50%, 0);
        }
    }

    .search-item {
        padding: 10px 15px;
        border-bottom: 1px solid #f2f2f2;
        transition: background 0.2s;
        cursor: pointer;
    }

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

    .search-item strong {
        display: block;
        color: #333;
        font-size: 15px;
        font-weight: 600;
    }

    .search-item small {
        color: #777;
    }

    .no-results,
    .searching {
        text-align: center;
        padding: 15px;
        color: #666;
        font-style: italic;
    }

    .search-loader {
        position: absolute;
        right: 45px;
        top: 50%;
        transform: translateY(-50%);
        color: #999;
        font-size: 13px;
        display: none;
    }
    
        
    @media (max-width: 768px) {
        .guest-checkout-section .card-body {
            padding: 1.5rem;
        }
        
        .search-results {
            top: 142px;
        }
    }

    .checkout-card {
            border-radius: 14px;
            border: 1px solid #eaeaea;
            background: #fff;
        }

        .checkout-card-body {
            font-size: 15px;
        }

        .address-card {
            cursor: pointer;
            transition: all 0.2s ease;
            position: relative;
            background-color: #fff;
        }

        .address-card:hover {
            border-color: #0d6efd;
            box-shadow: 0 0 0 2px rgba(13, 110, 253, .1);
            transform: translateY(-2px);
        }

        .address-card.selected {
            border: 2px solid #0d6efd !important;
            background-color: #f8faff;
        }

        .address-card .selected-icon {
            color: #0d6efd;
        }

        @media (max-width: 991px) {
            .checkout-wrapper {
                padding: 20px;
            }
        }
    
        
        