.woogeolocation-in-stock-icon {
    color: green;
    margin-right: 5px;
}

.woogeolocation-out-of-stock-icon {
    color: red;
    margin-right: 5px;
}

.woogeolocation-zone-in-stock-info,
.woogeolocation-zone-out-of-stock-info {
    color: #111;
    font-weight: 600;
    line-height: 1.2;
}

.woogeolocation-single-vendor-purchase-popup {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.woogeolocation-single-vendor-purchase-content {
    background-color: #fff;
    border-radius: 10px;
    width: 300px;
    padding: 15px;
    text-align: center;
}

.woogeolocation-single-vendor-purchase-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #111;
}

.woogeolocation-single-vendor-purchase-description {
    font-size: 14px;
    margin-bottom: 20px;
    color: #777;
}

.woogeolocation-single-vendor-purchase-buttons {
    display: flex;
    justify-content: space-between;
}

.woogeolocation-single-vendor-purchase-buttons button {
    width: 45%;
    padding: 10px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-transform: capitalize;
}

.woogeolocation-single-vendor-purchase-buttons .woogeolocation-cancel-btn {
    background-color: #ffeee6;
    color: #fe5102;
}

.woogeolocation-single-vendor-purchase-buttons .woogeolocation-replace-btn {
    background-color: #fe5102;
    color: white;
}

.woogeolocation-distance-away-from-current-location {
    background-color: #fef0cd;
    padding: 5px 8px;
    border-radius: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #e48801;
    font-weight: 600;
    font-size: 12px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.woogeolocation-distance-away-from-current-location::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fef0cd;
    position: absolute;
    top: -10px;
    left: 10%;
    transform: translateX(-50%);
}

.woogeolocation-location-tooltip-icon-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    text-align: center;
    z-index: 9999;
}

.woogeolocation-map-tooltip {
    background: #1c1c1c;
    color: white;
    width: max-content;
    padding: 7px 12px;
    border-radius: 5px;
    position: relative;
    margin-bottom: 15px;
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.woogeolocation-map-tooltip-title {
    font-weight: 600;
    font-size: 12px;
}

.woogeolocation-map-tooltip-description {
    font-size: 10px;
    color: #ccc;
}

.woogeolocation-tooltip-arrow {
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -10px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #1c1c1c;
}

#manual-service-available-content,
#manual-service-not-available-content {
    display: none;
}

#manual-service-not-available-content {
    text-align: center;
}

.manual-service-not-available-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #111;
}

.manual-service-not-available-description {
    margin-bottom: 10px;
}

#location-prompt-popup {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

#woogeolocation-service-not-available-popup {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.woogeolocation-service-not-available-popup-container {
    background-color: #fff;
    text-align: center;
    padding: 20px;
    width: 460px;
    height: 470px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.woogeolocation-service-not-available-popup-image {
    margin-bottom: 15px;
}

.woogeolocation-service-not-available-popup-title {
    font-size: 22px;
    font-weight: 600;
    color: #111;
    margin-bottom: 10px;
}

.woogeolocation-service-not-available-popup-description {
    margin-bottom: 15px;
}

.manually-change-location-btn-container #manually-change-location-btn {
    background-color: #fb641b;
    color: #ffffff;
    border-radius: 10px;
    font-size: 14px;
    letter-spacing: 1px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
}

.manually-change-location-btn-container #manually-change-location-btn:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15), 0 3px 6px rgba(0, 0, 0, 0.1);
}

.woogeolocation-no-service-skip-btn-container .no-service-popup-skip-button {
    background-color: transparent;
    padding: 0;
    min-height: unset;
    margin-top: 15px;
}

.woogeolocation-no-service-skip-btn-container .no-service-popup-skip-button:hover {
    background-color: transparent;
    color: #fb641b;
}

.vendor-map-search-wrapper {
    position: relative;
}

#woogeolocation-vendor-map {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.woogeolocation-vendor-locate-me {
    background: #fff;
    height: 40px;
    width: 40px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin: 10px;
}

.change-location-popup-container::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 10px;
}

.change-location-popup-container::-webkit-scrollbar-track {
    background-color: #eee;
}

.change-location-popup-container::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

.woozone-custom-message {
    padding: 10px;
    background-color: #f7f7f7;
    text-align: center;
    font-size: 16px;
    border-bottom: 1px solid #ddd;
}

.woozone-dokan-form-group {
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-top: 20px;
}

.woozone-icon-title-wrapper {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding: 10px 15px;
    margin-bottom: 10px;
    gap: 8px;
    color: #111;
    font-size: 16px;
}

.woozone-dokan-zones-title {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    margin-bottom: 0;
    font-weight: 600 !important;
}

.woozone-title-description {
    color: #888;
    font-style: italic;
    font-size: 12px;
}

.woozone-dokan-select-zones {
    list-style-type: none;
    padding: 10px 15px;
    margin-top: 10px;
    margin-bottom: 0;
}

.woozone-dokan-zone-item {
    margin-bottom: 5px;
}

.woozone-dokan-zone-label {
    font-size: 14px;
    cursor: pointer;
}

.woozone-dokan-zone-label input[type="checkbox"] {
    margin-right: 5px;
}

.zone-delivery-prefix-info {
    display: flex;
    flex-direction: column;
}

.zone-delivery-prefix {
    font-size: 12px;
    text-transform: uppercase;
    color: #000;
    font-weight: 600;
}

.zone-delivery-info {
    font-size: 16px;
    text-transform: uppercase;
    color: #000;
    font-weight: 600;
}

.zone-delivery-icon-address {
    display: flex;
    align-items: flex-end;
    gap: 5px;
}

.woogeolocation-location-address {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: normal;
}

.current-woogeolocation-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    justify-content: center;
    align-items: center;
    overflow: auto;
}

.manual-woogeolocation-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    justify-content: center;
    align-items: center;
    overflow: auto;
}

.manual-woogeolocation-popup-content {
    position: relative;
}

.woogeolocation-locate-me-btn-container .fa-crosshairs {
    font-size: 18px;
    color: #fb641b;
}

#woogeolocation-locate-me-btn {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
    padding: 10px;
    font-size: 12px;
    box-shadow: 0 4px 24px 0 rgba(56, 56, 56, 0.12), 0 1.5px 3px 0 rgba(0, 0, 0, 0.09);
    cursor: pointer;
    text-transform: capitalize;
    font-weight: normal;
    min-height: unset;
    width: max-content;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#woogeolocation-locate-me-btn:hover {
    background-color: #fff;
    color: #fb641b;
}

#woogeolocation-locate-me-btn:clicked {
    transform: scale(0.95);
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.manual-location-popup-map-bottom-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 20px 20px;
    width: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.woogeolocation-service-availability-status-container {
    background: #fff;
    width: 100%;
    border-radius: 18px;
    padding: 4px 4px 0;
    box-shadow: 0 8px 24px 0 rgba(56, 56, 56, 0.12), 0 1.5px 3px 0 rgba(0, 0, 0, 0.09);
}

.delivery-location-title {
    font-size: 12px;
    color: #646464;
    letter-spacing: 1px;
    font-weight: 600;
    background: linear-gradient(90deg, #eeeeee 0%, #fafafa 100%);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 5px 12px;
    margin-bottom: 10px;
}

.woogeolocation-shimmer-effect-content,
.woogeolocation-address-info-wrapper,
.manual-service-not-available-content {
    padding: 0 15px 18px;
}

.user-manual-location-google-map {
    transition: filter 0.3s;
    height: 100%;
}

.pac-item {
    padding: 10px 15px;
    border-top: 1px solid #eee;
    font-size: 14px;
    cursor: pointer;
}

.pac-item-query {
    font-weight: bold;
    text-decoration: none;
}

.pac-item:hover {
    background-color: #f5f5f5;
}

.pac-matched {
    font-weight: bold;
}

.pac-logo::after {
    display: none !important;
}

#map-center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    font-size: 30px;
    color: #fb641b;
}

.woogeolocation-popup-content {
    text-align: center;
}

.location-popup-title {
    font-size: 20px;
    font-weight: 600;
    color: #111;
}

.location-popup-description {
    font-size: 16px;
    margin-bottom: 15px;
}

.main-location-name-change-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.change-location--btn-container {
    display: flex;
    gap: 5px;
}

.change-location--btn-container .change-location-btn {
    color: #fe5102;
    min-height: 22px;
    border-radius: 5px;
    letter-spacing: 1px;
    font-size: 10px;
    padding: 5px 7px;
}

.change-location--btn-container .woogeolocation-clear-location-btn {
    color: #fe5102;
    background-color: #ffeee6;
    min-height: 22px;
    border-radius: 5px;
    letter-spacing: 1px;
    font-size: 10px;
    padding: 5px 7px;
}

.location-icon-main-location-name {
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

#main-location-name {
    font-weight: 600;
    font-size: 18px;
    color: #111;
    line-height: normal;
}

#select-different-location-btn {
    width: 100%;
    color: #777;
    border-radius: 10px;
    background: #d8d8d8;
    font-size: 14px;
    letter-spacing: 1px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
}

#manual-confirm-location-btn {
    width: 100%;
    background-color: #fb641b;
    color: #ffffff;
    border-radius: 10px;
    font-size: 16px;
    letter-spacing: 1px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
    min-height: 48px;
    text-transform: capitalize;
}

#manual-confirm-location-btn:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15), 0 3px 6px rgba(0, 0, 0, 0.1);
}

.open-woogeolocation-popup {
    cursor: pointer;
}

.change-location-popup-container {
    height: 100%;
    width: 100%;
    padding: 15px;
    background-color: #f1f3f6;
    overflow: auto;
    position: relative;
}

.change-location-popup-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    background-color: rgba(0,0,0,0.6);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
}

.close-btn-change-location-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #111;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 18px;
}

.current-location-locate-me-btn {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.woogeolocation-vendor-map-search-form {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    width: calc(100% - 32px);
    max-width: 85%;
    display: flex;
    align-items: center;
}

#woogeolocation-vendor-map-search-input {
    flex: 1 1 0%;
    border: none;
    outline: none;
    font-size: 15px;
    padding: 8px 35px 8px 35px;
    background: #fff;
    box-shadow: 0 4px 24px 0 rgba(56, 56, 56, 0.12), 0 1.5px 3px 0 rgba(0, 0, 0, 0.09);
    border-radius: 4px;
}

.woogeolocation-vendor-map-search-form .input-icon {
    position: absolute;
    font-size: 16px;
    color: #b0b0b0;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 3;
    transition: color 0.2s;
    user-select: none;
}

.woogeolocation-vendor-map-search-form .search-icon {
    left: 12px;
    pointer-events: none;
}

.woogeolocation-vendor-map-search-form .clear-icon {
    right: 20px;
    color: #d33;
    display: none;
}

.woogeolocation-vendor-map-search-form input:focus + .clear-icon {
    color: #000;
}

.woogeolocation-close-btn-search-form {
    display: flex;
    gap: 10px;
    position: absolute;
    width: 100%;
    z-index: 1;
    top: 15px;
    padding: 0 15px;
    align-items: center;
}

.manual-location-popup-close-btn {
    height: 42px;
    width: 42px;
    color: #222;
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px 0 rgba(56, 56, 56, 0.12), 0 1.5px 3px 0 rgba(0, 0, 0, 0.09);
}

.woogeolocation-user-map-search-form {
    position: relative;
    flex: 1;
}

#woogeolocation-user-map-search-input {
    width: 100%;
    padding: 5px 40px 5px 15px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 4px 24px 0 rgba(56, 56, 56, 0.12), 0 1.5px 3px 0 rgba(0, 0, 0, 0.09);
    font-size: 14px;
}

.woogeolocation-user-map-search-form .woogeolocation-user-map-search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    cursor: pointer;
}

.woogeolocation-user-map-search-form .woogeolocation-user-map-clear-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    cursor: pointer;
    display: none;
}

.woogeolocation-change-location-search-form {
    position: relative;
    margin-bottom: 15px;
}

#woogeolocation-change-location-search-input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    font-size: 14px;
}

.woogeolocation-change-location-search-form .woogeolocation-search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    cursor: pointer;
}

.woogeolocation-change-location-search-form .woogeolocation-clear-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    cursor: pointer;
    display: none;
}

.location-icon-current-location-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fb641b;
    font-weight: 600;
    font-size: 15px;
}

.use-my-current-location-container {
    cursor: pointer;
}

#use-my-current-location-link {
    color: #fb641b;
}

.use-my-current-location-container {
    background-color: #fff;
    border-radius: 10px;
    padding: 12px 20px;
    margin-bottom: 18px;
}

#woogeolocation-confirmed-locations {
    list-style: none;
    padding-left: 0;
}

.confirmed-locations-list {
    padding: 12px 15px;
    margin-bottom: 12px;
    font-size: 13px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
    cursor: pointer;
    gap: 10px;
}

.confirmed-locations-list:last-child {
    margin-bottom: 0;
}

.recent-location-details {
    flex: 1;
    padding-left: 10px;
}

.confirmed-location-distance-details {
    flex: 0 0 12%;
    text-align: center;
}

.confirmed-location-distance-details .fas.fa-map-marker-alt {
    font-size: 18px;
}

.confirmed-location-distance {
    font-size: 12px;
}

.woogeolocation-confirmed-locations-title {
    font-size: 16px;
    color: #111;
    font-weight: 600;
    margin-bottom: 10px;
}

.confirmed-location-name-title {
    font-weight: 600;
    font-size: 14px;
    color: #111;
    margin-bottom: 2px;
}

.currently-selected-label {
    background-color: #ccfbe7;
    padding: 3px 5px;
    margin-left: 8px;
    border-radius: 3px;
    color: #06aa6e;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.8px;
}

.confirmed-location-address{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 1.4em;
    max-height: calc(2 * 1.4em + 2px);
    color: #979797;
}

.view-more-confirmed-locations-link {
    color: #fb641b;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
}

#remaining-address {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 12px;
    color: #333;
}

button[aria-label="Map camera controls"] {
    display: none !important;
}

.woogeolocation-shimmer-location-icon-name {
    display: flex;
    align-items: flex-end;
    gap: 10px; 
}

.woogeolocation-short-shimmer {
    position: relative;
    overflow: hidden;
    background: #e0e0e0;
    border-radius: 6px;
    height: 18px;
    width: 150px;
    min-width: 100px;
    max-width: 150px;
    flex-shrink: 0;
}

.woogeolocation-short-shimmer::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(
        90deg,
        #e0e0e0 0%,
        #cccccc 50%,
        #e0e0e0 100%
    );
    animation: shimmerMove 1.2s infinite;
    opacity: 0.95;
    border-radius: 6px;
}

.woogeolocation-long-shimmer {
    position: relative;
    overflow: hidden;
    background: #e0e0e0;
    border-radius: 6px;
    display: block;
    height: 18px;
    width: 100%; 
    min-width: 150px;
    margin-top: 8px;
}

.woogeolocation-long-shimmer::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(
        90deg,
        #e0e0e0 0%,
        #cccccc 50%,
        #e0e0e0 100%
    );
    animation: shimmerMove 1.2s infinite;
    opacity: 0.95;
    border-radius: 6px;
}

@keyframes shimmerMove {
    0% { left: 0; }
    100% { left: 100%; }
}

.woogeolocation-vendor-radius-container {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    width: 100%;
}

#woogeolocation-vendor-radius-unit-select {
    width: 30%;
}

#woogeolocation-vendor-radius-input {
    flex: 1;
}

#woogeolocation-vendor-radius-clear {
    background: #ef1616;
    color: #fff;
    border-radius: 4px;
}

.current-manual-location-button .user-current-location-btn {
    background-color: #fb641b;
    border-radius: 8px;
    color: #fff;
}

.current-manual-location-button .set-manual-location-btn {
    border: 1px solid #fb641b;
    color: #fb641b;
    background-color: #fff;
    border-radius: 8px;
}

@media (min-width: 768px) {

    .change-woogeolocation-popup {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    .change-location-popup-container {
        position: relative;
        padding: 20px;
        width: 500px;
    }
    
    .woogeolocation-popup-container {
        width: 1200px;
    }

    .manaul-woogeolocation-popup-container {
        position: relative;
        background-color: #fff;
        width: 500px;
        margin: 3% auto;
        border-radius: 10px;
        overflow: hidden;
    }
    
    .manual-current-location-btn {
        position: absolute;
        bottom: 25px;
        right: 15px;
    }
    
    .current-location-locate-me-btn {
        position: absolute;
        bottom: 32%;
        right: 20px;
    }
    
    .manual-locate-me-btn {
        padding: 8px;
        border-radius: 50px;
    }
    
    #manual-locate-me-btn .fa-crosshairs {
        font-size: 20px;
    }
    
    .manual-locate-me-text {
        display: none;
    }
    
    .manual-woogeolocation-popup-content {
        background-color: #fff;
        width: 450px;
        height: 90vh;
        margin: 3% auto;
        border-radius: 10px;
        overflow: hidden;
    }
    
    .woogeolocation-mobile-location-img {
        display: none;
    }
    
    .woogeolocation-location-icon-text {
        display: none;
    }
    
    .woogeolocation-manual-location-form {
        display: none;
    }
    
    .current-manual-location-button {
        display: flex;
        gap: 10px;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 768px) {
    
    .current-woogeolocation-popup {
        background-color: rgba(0, 0, 0, 0.45);
        justify-content: flex-end;
        align-items: flex-end;
        padding: 0;
    }

    .current-woogeolocation-popup .woogeolocation-popup-container {
        width: 100%;
        max-height: 80vh;
        background: #f1f3f6;
        border-radius: 18px 18px 0 0;
        box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.18);
        transform: translateY(100%);
        transition: transform 0.3s ease-out;
        will-change: transform;
        overflow-y: auto;
    }

    .current-woogeolocation-popup .woogeolocation-popup-container.active {
        transform: translateY(0);
    }
    
    .manual-woogeolocation-popup-content {
        height: 100dvh;
        width: 100%;
    }
    
    .location-popup-description {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .manual-locate-me-btn i {
        margin-right: 5px;
    }
    
    .manual-current-location-btn {
        display: none;
    }
    
    #main-location-name {
        font-size: 14px;
    }
    
    .change-woogeolocation-popup {
        background-color: #fff;
        height: 100%;
        width: 100%;
        position: fixed; 
        bottom: 0;
        left: 0;
        right: 0;
        top: 0;
        z-index: 999;
        display: none;
    }
    
    .change-location-popup-close-btn {
        display: none;
    }
    
    #woogeolocation-service-not-available-popup {
        background-color: #fff;
    }

    .manual-woogeolocation-popup-title-mobile {
        font-size: 16px;
    }
    
    .woogeolcoation-current-location-text-btn {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        background-color: #fff;
        padding: 8px 10px;
        border-radius: 8px;
        margin-bottom: 12px;
    }
    
    .woogeolocation-location-icon-text {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .woogeolocation-location-icon-text i {
        font-size: 20px;
        color: #fb641b;
    }
    
    .woogeolocation-use-my-current-location-text {
        font-size: 14px;
        color: #111;
    }
    
    .current-manual-location-button .user-current-location-btn {
        font-size: 13px;
        text-transform: capitalize;
        min-height: 30px;
        height: 30px;
        padding: 4px 12px;
    }
    
    .woogeolocation-manual-location-form {
        display: flex;
        align-items: center;
        gap: 10px;
        background-color: #fff;
        padding: 12px;
        border-radius: 8px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }
    
    .woogeolocaiton-manual-location-text {
        font-size: 14px;
        color: #333;
    }
    
    .woogeolocation-manual-location-form i {
        font-size: 20px;
    }
    
    .current-manual-location-button .set-manual-location-btn {
        display: none;
    }
    
    .location-popup-bottom-content {
        padding: 0px 15px 20px;
    }
    
    .location-popup-image .woogeolcoation-settings-img {
        display: none;
    }
    
    .location-popup-title {
        margin-bottom: 8px;
        font-size: 18px;
    }
}