/* GeoSmart Location Modal - Map View Styles */

.gs-map-search-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 60px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gs-map-back-btn {
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    font-size: 1.2rem;
    cursor: pointer;
    color: #111;
}

.gs-map-search-input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.gs-map-search-overlay .gs-input-field {
    box-shadow: none;
    background: transparent;
    border: none;
    width: 100%;
    padding-right: 40px;
    height: 44px;
    border-radius: 8px;
    font-size: 1rem;
}

.gs-map-search-clear {
    position: absolute;
    right: 12px;
    background: #e5e7eb;
    color: #6b7280;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.gs-map-search-clear:hover {
    background: #d1d5db;
    color: #374151;
}

.gs-map-bottom-panel {
    background: #fff;
    border-radius: 20px 20px 0 0;
    padding: 20px;
    position: absolute;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.05);
}

@media (min-width: 769px) {
    .gs-map-bottom-panel {
        border-radius: 0 0 20px 20px;
    }
}

.gs-panel-title {
    font-size: 0.75rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
}

.gs-address-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.gs-address-icon {
    margin-right: 15px;
    color: var(--gs-primary-color);
    background: #ffe4e6;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gs-address-details {
    flex: 1;
}

.gs-address-details strong {
    display: block;
    font-size: 1.15rem;
    color: #111;
    margin-bottom: 4px;
    font-weight: 600;
}

.gs-address-details p {
    margin: 0;
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.4;
}

.gs-address-change {
    color: var(--gs-primary-color);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 5px;
    text-transform: uppercase;
}

#gs-btn-confirm-location {
    background: #f3f4f6 !important;
    color: #4b5563 !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    height: 48px !important;
    width: 100% !important;
    border: none !important;
    font-size: 0.95rem !important;
    transition: background 0.2s !important;
    text-transform: uppercase !important;
    padding: 0 !important;
    margin: 0 !important;
    min-height: 48px !important;
}

#gs-btn-confirm-location:not([disabled]) {
    background: var(--gs-primary-color) !important;
    color: #fff !important;
    cursor: pointer !important;
}

.gs-floating-locate-btn {
    position: absolute !important;
    bottom: 210px !important;
    right: 20px !important;
    left: auto !important;
    background: white !important;
    color: var(--gs-primary-color) !important;
    border: none !important;
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    z-index: 10 !important;
    transition: background 0.2s !important;
}

.gs-floating-locate-btn:hover {
    background: #fff7ed;
}

.gs-floating-locate-btn svg {
    width: 24px;
    height: 24px;
}
