/* ==================== LOCATION MODAL - SWIGGY/ZOMATO STYLE ==================== */

/* Modal Base */
#locationModal .modal-content.location-modal-content {
    max-width: 520px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 20px;
    padding: 0;
    background: #fff;
}

.location-modal-header {
    padding: 24px 24px 16px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
}

.location-modal-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
}

.location-modal-header h2 i {
    color: #e53935;
    font-size: 1.4rem;
}

.location-subtitle {
    font-size: 0.85rem;
    color: #777;
    margin-top: 6px;
}

/* Method Selector Tabs */
.location-method-selector {
    display: flex;
    gap: 12px;
    padding: 16px 24px;
    background: #f8f9fa;
}

.location-method-btn {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.location-method-btn:hover {
    border-color: #4caf50;
}

.location-method-btn.active {
    border-color: #2e7d32;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
}

.location-method-btn .method-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #666;
    transition: all 0.3s;
}

.location-method-btn.active .method-icon {
    background: #2e7d32;
    color: white;
}

.location-method-btn .method-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.location-method-btn .method-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.location-method-btn .method-desc {
    font-size: 0.75rem;
    color: #999;
}

/* ==================== MAP DETECTION SECTION ==================== */
.map-detection-section {
    padding: 20px 24px;
}

.map-detection-section.hidden {
    display: none;
}

/* Detect Location Button */
.detect-location-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border: 2px solid #ffc107;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.detect-location-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.3);
}

.detect-location-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.detect-location-btn .detect-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff9800 0%, #ffc107 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.detect-location-btn .detect-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.detect-location-btn .detect-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
}

.detect-location-btn .detect-desc {
    font-size: 0.78rem;
    color: #666;
    margin-top: 2px;
}

.detect-location-btn .detect-arrow {
    color: #ff9800;
    font-size: 1.1rem;
}

/* ==================== MAP CONTAINER ==================== */
.map-container {
    position: relative;
    height: 280px;
    min-height: 250px;
    border-radius: 16px;
    overflow: hidden;
    margin: 0 0 16px;
    border: 2px solid #e0e0e0;
    background: #f5f5f5;
}

#locationMap {
    height: 100% !important;
    width: 100% !important;
    z-index: 1;
}

/* Fixed Center Marker - Swiggy Style */
.map-center-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    z-index: 1000;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.map-center-marker .marker-pin {
    font-size: 42px;
    color: #e53935;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    animation: markerBounce 0.5s ease;
}

.map-center-marker .marker-pulse {
    width: 20px;
    height: 8px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    margin-top: -8px;
    animation: pulseShadow 1.5s ease-in-out infinite;
}

@keyframes markerBounce {
    0%, 100% { transform: translate(-50%, -100%); }
    50% { transform: translate(-50%, -110%); }
}

@keyframes pulseShadow {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.5); opacity: 0.2; }
}

/* Map Loading Overlay */
.map-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    gap: 12px;
}

.map-loading-overlay.hidden {
    display: none;
}

.map-loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e0e0e0;
    border-top-color: #2e7d32;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.map-loading-overlay span {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Map Search Box */
.map-search-box {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    z-index: 1000;
    display: flex;
    gap: 8px;
}

.map-search-input {
    flex: 1;
    padding: 12px 16px 12px 42px;
    border: none;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    background: white;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.map-search-input:focus {
    outline: none;
    box-shadow: 0 2px 16px rgba(46, 125, 50, 0.25);
}

.map-search-icon {
    position: absolute;
    left: 26px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 0.95rem;
}

.map-search-results {
    position: absolute;
    top: 52px;
    left: 12px;
    right: 12px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-height: 200px;
    overflow-y: auto;
    z-index: 1001;
}

.map-search-results.hidden {
    display: none;
}

.map-search-result-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.map-search-result-item:hover {
    background: #f8f9fa;
}

.map-search-result-item:last-child {
    border-bottom: none;
}

.map-search-result-item i {
    color: #e53935;
    font-size: 1rem;
    margin-top: 2px;
}

.map-search-result-item .result-text {
    flex: 1;
}

.map-search-result-item .result-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #333;
}

.map-search-result-item .result-desc {
    font-size: 0.75rem;
    color: #999;
    margin-top: 2px;
}

/* ==================== DETECTED ADDRESS BOX ==================== */
.detected-address-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    border: 2px solid #4caf50;
    border-radius: 14px;
    margin-bottom: 16px;
    animation: slideUp 0.3s ease;
}

.detected-address-box.hidden {
    display: none;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.detected-address-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #2e7d32;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.detected-address-info {
    flex: 1;
    min-width: 0;
}

.detected-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #2e7d32;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detected-address-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #333;
    line-height: 1.5;
    margin-top: 4px;
    word-wrap: break-word;
}

.change-location-btn {
    padding: 8px 14px;
    background: white;
    border: 1px solid #2e7d32;
    border-radius: 8px;
    color: #2e7d32;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.change-location-btn:hover {
    background: #2e7d32;
    color: white;
}

/* ==================== SERVICE UNAVAILABLE BOX ==================== */
.service-unavailable-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: linear-gradient(135deg, #ffebee 0%, #fff3f3 100%);
    border: 2px solid #e53935;
    border-radius: 14px;
    margin-bottom: 16px;
    animation: shake 0.5s ease;
}

.service-unavailable-box.hidden {
    display: none;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

.unavailable-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e53935;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.unavailable-text h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #c62828;
    margin: 0 0 4px;
}

.unavailable-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.unavailable-text strong {
    color: #2e7d32;
}

/* ==================== CONFIRM LOCATION BUTTON ==================== */
.confirm-map-location-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #2e7d32 0%, #43a047 100%);
    color: white;
    border: none;
    border-radius: 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.confirm-map-location-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

.confirm-map-location-btn.hidden {
    display: none;
}

.confirm-map-location-btn i {
    font-size: 1.1rem;
}

/* ==================== MANUAL ENTRY SECTION ==================== */
.manual-entry-section {
    padding: 20px 24px;
}

.manual-entry-section.hidden {
    display: none;
}

/* Location Search */
.location-search-container {
    position: relative;
    margin-bottom: 16px;
}

.location-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1rem;
}

.location-search-input {
    width: 100%;
    padding: 14px 40px 14px 46px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.location-search-input:focus {
    outline: none;
    border-color: #4caf50;
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.1);
}

.location-search-clear {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: #e0e0e0;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666;
    font-size: 0.75rem;
}

.location-search-clear.hidden {
    display: none;
}

.location-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    margin-top: 4px;
    max-height: 220px;
    overflow-y: auto;
    z-index: 100;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.location-search-results.hidden {
    display: none;
}

.location-result-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s;
}

.location-result-item:hover {
    background: #f8f9fa;
}

.location-result-item:last-child {
    border-bottom: none;
}

.location-result-item i {
    color: #e53935;
    font-size: 1rem;
    margin-top: 3px;
}

.location-result-info {
    flex: 1;
}

.location-result-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

.location-result-desc {
    font-size: 0.78rem;
    color: #999;
    margin-top: 2px;
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
    color: #999;
    font-size: 0.8rem;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}

.divider span {
    padding: 0 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Manual Address Form */
.manual-address-form .form-group {
    margin-bottom: 16px;
}

.manual-address-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.manual-address-form label i {
    color: #2e7d32;
    font-size: 0.9rem;
}

.manual-address-form textarea,
.manual-address-form input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s;
    resize: none;
}

.manual-address-form textarea:focus,
.manual-address-form input:focus {
    outline: none;
    border-color: #4caf50;
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

@media (max-width: 500px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Address Type Selector */
.address-type-selector {
    margin: 20px 0;
}

.type-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
    display: block;
}

.address-type-options {
    display: flex;
    gap: 10px;
}

.address-type-btn {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: white;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
}

.address-type-btn:hover {
    border-color: #4caf50;
}

.address-type-btn.active {
    border-color: #2e7d32;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    color: #2e7d32;
}

.address-type-btn i {
    font-size: 1rem;
}

/* Service Area Notice */
.service-area-notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    background: #fff3e0;
    border: 1px solid #ffcc80;
    border-radius: 10px;
    margin: 16px 0;
}

.service-area-notice i {
    color: #f57c00;
    font-size: 1rem;
    margin-top: 2px;
}

.service-area-notice span {
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    color: #666;
    line-height: 1.5;
}

.service-area-notice strong {
    color: #2e7d32;
}

/* Save Location Button */
.save-location-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #2e7d32 0%, #43a047 100%);
    color: white;
    border: none;
    border-radius: 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
    margin-top: 10px;
}

.save-location-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

/* ==================== SAVED ADDRESSES SECTION ==================== */
#savedAddressDivider {
    padding: 0 24px;
}

.saved-addresses-list {
    padding: 0 24px 16px;
    max-height: 200px;
    overflow-y: auto;
}

.saved-address-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 12px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.saved-address-card:hover {
    background: #f1f8e9;
    border-color: #4caf50;
}

.saved-address-card.selected {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    border-color: #2e7d32;
}

.saved-address-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1rem;
    flex-shrink: 0;
}

.saved-address-icon.home {
    background: #e3f2fd;
    color: #1976d2;
}

.saved-address-icon.work {
    background: #fff3e0;
    color: #f57c00;
}

.saved-address-icon.other {
    background: #f3e5f5;
    color: #7b1fa2;
}

.saved-address-info {
    flex: 1;
    min-width: 0;
}

.saved-address-type {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 8px;
}

.saved-addr-default-badge {
    font-size: 0.65rem;
    padding: 2px 8px;
    background: #2e7d32;
    color: white;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: 600;
}

.saved-address-text {
    font-size: 0.82rem;
    color: #666;
    line-height: 1.4;
    margin-top: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.saved-address-city {
    font-size: 0.75rem;
    color: #999;
    margin-top: 2px;
}

.saved-address-actions {
    display: flex;
    align-items: center;
}

.saved-address-actions .delete-btn {
    background: none;
    border: none;
    color: #e53935;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s;
    opacity: 0.6;
}

.saved-address-actions .delete-btn:hover {
    background: #ffebee;
    opacity: 1;
}

/* No Saved Address */
.no-saved-address {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    color: #999;
    text-align: center;
}

.no-saved-address i {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: #e0e0e0;
}

.no-saved-address p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.add-new-address-link {
    padding: 10px 20px;
    background: #f5f5f5;
    border: 2px dashed #bdbdbd;
    border-radius: 10px;
    color: #2e7d32;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.add-new-address-link:hover {
    background: #e8f5e9;
    border-color: #4caf50;
}

/* Modal Footer */
.location-modal-footer {
    padding: 16px 24px;
    border-top: 1px solid #f0f0f0;
    text-align: center;
}

.manage-addresses-btn {
    padding: 10px 24px;
    background: transparent;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    color: #666;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.manage-addresses-btn:hover {
    border-color: #2e7d32;
    color: #2e7d32;
}

/* ==================== LOCATION PROMPT OVERLAY ==================== */
.location-prompt-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

.location-prompt-card {
    background: white;
    border-radius: 20px;
    padding: 36px 30px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

.location-prompt-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.location-prompt-icon i {
    font-size: 2.2rem;
    color: #2e7d32;
}

.location-prompt-card h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.location-prompt-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.location-prompt-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.prompt-detect-btn,
.prompt-manual-btn {
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.prompt-detect-btn {
    background: linear-gradient(135deg, #2e7d32 0%, #43a047 100%);
    color: white;
}

.prompt-detect-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.35);
}

.prompt-manual-btn {
    background: #f5f5f5;
    color: #333;
    border: 2px solid #e0e0e0;
}

.prompt-manual-btn:hover {
    border-color: #4caf50;
    background: #f1f8e9;
}

.prompt-skip-btn {
    background: none;
    border: none;
    color: #999;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 10px;
    transition: color 0.2s;
}

.prompt-skip-btn:hover {
    color: #666;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 600px) {
    #locationModal .modal-content.location-modal-content {
        max-width: 100%;
        width: 100%;
        max-height: 100vh;
        border-radius: 0;
        height: 100%;
    }

    .location-method-selector {
        flex-direction: column;
        gap: 10px;
    }

    .map-container {
        height: 240px;
        min-height: 200px;
        border-radius: 12px;
    }

    .address-type-options {
        flex-wrap: wrap;
    }

    .address-type-btn {
        flex: 1 1 calc(33% - 10px);
        min-width: 90px;
    }
}