/* ==========================================================================
   ip-search Public Styles — TASK-028b Phase 1 (Layout Port Mobile-First)
   D1/D2/D3/D4: Single-column mobile + sticky toolbar bottom + hero search
   Map styles in separate file ip-search-map.css (TASK-028).
   ========================================================================== */

:root {
    --ip-search-primary: #e91e63;
    --ip-search-primary-hover: #c2185b;
    --ip-search-text: #1a1a1a;
    --ip-search-text-muted: #666;
    --ip-search-border: #e5e5e5;
    --ip-search-bg: #ffffff;
    --ip-search-bg-soft: #f9f9f9;
    --ip-search-toolbar-height: 64px;
}

/* === Container — mobile first === */
.ip-search-container--mobile-first {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    padding: 12px;
    /* Reserve space pentru sticky bottom toolbar pe mobile */
    padding-bottom: calc(var(--ip-search-toolbar-height) + 16px);
    box-sizing: border-box;
}

/* === HERO SEARCH BAR === */
.ip-search-hero {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    align-items: stretch;
}

.ip-search-hero-input-wrap {
    flex: 1;
    position: relative;
}

.ip-search-hero-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ip-search-text-muted);
    pointer-events: none;
    font-size: 16px;
}

.ip-search-hero-input {
    width: 100%;
    padding: 14px 14px 14px 42px;
    border: 1px solid var(--ip-search-border);
    border-radius: 12px;
    font-size: 16px;
    background: var(--ip-search-bg);
    color: var(--ip-search-text);
    box-sizing: border-box;
}

.ip-search-hero-input:focus {
    outline: none;
    border-color: var(--ip-search-primary);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.ip-search-hero-filter-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 16px;
    background: var(--ip-search-bg);
    border: 1px solid var(--ip-search-border);
    border-radius: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--ip-search-text);
    white-space: nowrap;
}

.ip-search-hero-filter-btn:hover {
    background: var(--ip-search-bg-soft);
}

.ip-search-hero-filter-icon {
    font-size: 16px;
}

/* === COUNTER + SORT HEADER === */
.ip-search-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--ip-search-border);
    flex-wrap: wrap;
    gap: 8px;
}

.ip-search-counter {
    font-size: 15px;
    font-weight: 500;
    color: var(--ip-search-text);
}

.ip-search-sort-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.ip-search-sort-label {
    color: var(--ip-search-text-muted);
    white-space: nowrap;
}

.ip-search-sort {
    padding: 6px 24px 6px 8px;
    border: 1px solid var(--ip-search-border);
    border-radius: 6px;
    background: var(--ip-search-bg);
    cursor: pointer;
    font-size: 14px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
}

/* === PAYWALL NOTICE === */
.ip-search-paywall-notice {
    background: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 12px 16px;
    margin-bottom: 16px;
    border-radius: 4px;
    font-size: 14px;
}

/* === RESULTS LIST — single column mobile === */
.ip-search-results-section {
    flex: 1;
}

.ip-search-results-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ip-search-results-list.is-loading {
    opacity: 0.5;
    pointer-events: none;
}

.ip-search-no-results {
    text-align: center;
    color: var(--ip-search-text-muted);
    font-style: italic;
    padding: 32px;
}

/* === LOAD MORE BUTTON === */
.ip-search-load-more {
    display: block;
    margin: 24px auto;
    padding: 12px 32px;
    background: var(--ip-search-primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
}

.ip-search-load-more:hover { background: var(--ip-search-primary-hover); }
.ip-search-load-more:disabled { background: #ccc; cursor: not-allowed; }

/* === MAP SECTION — mobile hidden by default (D2) === */
.ip-search-map-section {
    display: none;
}

.ip-search-map-section[data-mobile-hidden="false"] {
    /* Mobile: full-screen overlay */
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: var(--ip-search-toolbar-height);
    background: var(--ip-search-bg);
    z-index: 100;
}

.ip-search-map-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 101;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: var(--ip-search-bg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    font-size: 18px;
    display: none; /* visible only when map active mobile */
}

.ip-search-map-section[data-mobile-hidden="false"] .ip-search-map-close {
    display: block;
}

/* === STICKY BOTTOM TOOLBAR (mobile only — D3) === */
.ip-search-bottom-toolbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--ip-search-toolbar-height);
    background: var(--ip-search-bg);
    border-top: 1px solid var(--ip-search-border);
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    z-index: 90;
}

.ip-search-bottom-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--ip-search-text-muted);
    font-size: 12px;
    transition: color 0.15s;
}

.ip-search-bottom-btn.is-active {
    color: var(--ip-search-primary);
    font-weight: 600;
}

.ip-search-bottom-icon {
    font-size: 22px;
    line-height: 1;
}

.ip-search-bottom-label {
    font-size: 11px;
}

/* ==========================================================================
   TABLET (768-1024px): 2-column grid, hide bottom toolbar
   ========================================================================== */
@media (min-width: 768px) {
    .ip-search-container--mobile-first {
        max-width: 1280px;
        margin: 0 auto;
        padding: 24px;
        padding-bottom: 24px;
    }

    .ip-search-results-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .ip-search-bottom-toolbar { display: none; }
}

/* ==========================================================================
   DESKTOP (>1024px): 2 cols + map sticky sidebar 480px
   ========================================================================== */
@media (min-width: 1024px) {
    .ip-search-container--mobile-first {
        display: grid;
        grid-template-columns: 1fr 480px;
        grid-template-areas:
            "hero hero"
            "header header"
            "paywall paywall"
            "results map";
        gap: 24px;
        align-items: start;
    }

    .ip-search-hero { grid-area: hero; }
    .ip-search-results-header { grid-area: header; }
    .ip-search-paywall-notice { grid-area: paywall; }
    .ip-search-results-section { grid-area: results; }

    .ip-search-map-section {
        grid-area: map;
        display: block;
        position: sticky;
        top: 16px;
        align-self: start;
        height: calc(100vh - 32px);
        max-height: 800px;
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid var(--ip-search-border);
    }

    .ip-search-map-close { display: none !important; }

    .ip-search-results-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   WIDE (>1400px): 3 cols + map sidebar 520px
   ========================================================================== */
@media (min-width: 1400px) {
    .ip-search-container--mobile-first {
        grid-template-columns: 1fr 520px;
    }

    .ip-search-results-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================================================
   Card Redesign — TASK-028b Phase 2 (D1-D14)
   Photo gradient + initials + badge + heart + meta + 3 CTA
   ========================================================================== */

.ip-search-card {
    background: var(--ip-search-bg);
    border: 1px solid var(--ip-search-border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
}

.ip-search-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* === Photo placeholder gradient === */
.ip-search-card-photo {
    position: relative;
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ip-search-card-initials {
    font-size: 64px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: -2px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.ip-search-card-photo--anonymous .ip-search-card-initials {
    font-size: 80px;
    opacity: 0.6;
}

/* === Classification badge top-LEFT (D6: mutat stânga ca să nu se suprapună cu heart dreapta) === */
.ip-search-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

/* === Heart icon top-RIGHT === */
.ip-search-card-heart {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ip-search-text-muted);
    transition: color 0.2s, transform 0.15s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.ip-search-card-heart:hover {
    transform: scale(1.1);
    color: var(--ip-search-primary);
}

.ip-search-card-heart.is-favorited {
    color: var(--ip-search-primary);
}

.ip-search-card-heart.is-favorited svg {
    fill: currentColor;
}

/* === Card body === */
.ip-search-card-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ip-search-card-niches {
    font-size: 11px;
    font-weight: 500;
    color: var(--ip-search-text-muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.5;
}

.ip-search-card-price {
    font-size: 22px;
    font-weight: 600;
    color: var(--ip-search-text);
    margin-top: 4px;
}

.ip-search-card-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--ip-search-text);
    margin: 0;
    line-height: 1.2;
}

.ip-search-card-name--blurred {
    color: #999;
    font-style: italic;
}

.ip-search-card-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--ip-search-text-muted);
}

.ip-search-card-location-icon {
    font-size: 14px;
    flex-shrink: 0;
}

.ip-search-card-social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

.ip-search-card-social-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--ip-search-text);
    font-weight: 500;
}

/* === CTA buttons === */
.ip-search-card-cta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 12px 16px 16px;
    border-top: 1px solid var(--ip-search-border);
    margin-top: 8px;
}

.ip-search-card-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 8px;
    background: var(--ip-search-bg);
    border: 1px solid var(--ip-search-border);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ip-search-text);
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s, transform 0.15s;
    text-align: center;
}

.ip-search-card-cta-btn:hover {
    background: var(--ip-search-bg-soft);
    border-color: var(--ip-search-text-muted);
    transform: translateY(-1px);
}

.ip-search-card-cta-btn--whatsapp:hover {
    background: #e8f5e9;
    border-color: #25D366;
    color: #1b5e20;
}

.ip-search-card-cta-label {
    white-space: nowrap;
}

/* === Anonymous locked notice === */
.ip-search-card-locked-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    background: var(--ip-search-bg-soft);
    color: var(--ip-search-text-muted);
    font-size: 13px;
    font-style: italic;
    border-top: 1px dashed var(--ip-search-border);
}

/* === Responsive sizing === */
@media (min-width: 768px) {
    .ip-search-card-photo {
        height: 220px;
    }
    .ip-search-card-initials {
        font-size: 56px;
    }
    .ip-search-card-cta-btn {
        font-size: 12px;
        padding: 9px 6px;
    }
}

@media (min-width: 1024px) {
    .ip-search-card-photo {
        height: 200px;
    }
    .ip-search-card-initials {
        font-size: 48px;
    }
    .ip-search-card-name {
        font-size: 16px;
    }
    .ip-search-card-price {
        font-size: 20px;
    }
}

@media (min-width: 1024px) and (max-width: 1280px) {
    /* Hide CTA labels on narrow desktop — only icons */
    .ip-search-card-cta-label {
        display: none;
    }
}

/* ==========================================================================
   Filter Overlay Full-Screen — TASK-028b Phase 3
   Mobile: slide-up bottom sheet. Desktop (>1024): centered modal max-w 720.
   ========================================================================== */

body.ip-search-overlay-open {
    overflow: hidden;
}

.ip-search-filter-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    pointer-events: none;
}

.ip-search-filter-overlay[data-state="open"] {
    display: block;
    pointer-events: auto;
}

.ip-search-filter-overlay-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.25s ease;
}

.ip-search-filter-overlay[data-state="open"] .ip-search-filter-overlay-backdrop {
    background: rgba(0, 0, 0, 0.5);
}

.ip-search-filter-overlay-modal {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--ip-search-bg);
    border-radius: 16px 16px 0 0;
    display: flex;
    flex-direction: column;
    max-height: 92vh;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.15);
}

.ip-search-filter-overlay[data-state="open"] .ip-search-filter-overlay-modal {
    transform: translateY(0);
}

.ip-search-filter-overlay-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--ip-search-border);
    flex-shrink: 0;
}

.ip-search-filter-overlay-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--ip-search-text);
}

.ip-search-filter-overlay-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--ip-search-bg-soft);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ip-search-text);
    transition: background 0.15s;
}

.ip-search-filter-overlay-close:hover {
    background: var(--ip-search-border);
}

.ip-search-filter-overlay-body {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 20px;
    flex: 1;
}

.ip-search-filter-overlay-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 20px;
    border-top: 1px solid var(--ip-search-border);
    background: var(--ip-search-bg);
    flex-shrink: 0;
}

/* === Field group (matches HTML: .ip-search-filter-field) === */
.ip-search-filter-field {
    margin-bottom: 14px;
}

.ip-search-filter-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--ip-search-text);
    margin-bottom: 6px;
}

.ip-search-filter-field input[type="text"],
.ip-search-filter-field input[type="number"],
.ip-search-filter-field select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--ip-search-border);
    border-radius: 10px;
    font-size: 14px;
    background: var(--ip-search-bg);
    color: var(--ip-search-text);
    box-sizing: border-box;
}

.ip-search-filter-field input[type="text"]:focus,
.ip-search-filter-field input[type="number"]:focus,
.ip-search-filter-field select:focus {
    outline: none;
    border-color: var(--ip-search-primary);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.ip-search-filter-field select[multiple] {
    min-height: 110px;
}

/* === Full-width row + 2-col grid (matches HTML naming) === */
.ip-search-filter-overlay-row {
    margin-bottom: 12px;
}

.ip-search-filter-overlay-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 12px;
}

/* === Price label inline display === */
.ip-search-filter-price-label {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.ip-search-filter-price-display {
    font-size: 13px;
    color: var(--ip-search-text);
    font-weight: 500;
}

.ip-search-filter-price-sep {
    margin: 0 4px;
    color: var(--ip-search-text-muted);
}

.ip-search-filter-price-slider {
    position: relative;
    height: 32px;
    margin: 0 8px;
}

.ip-search-filter-price-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--ip-search-border);
    border-radius: 2px;
    transform: translateY(-50%);
}

.ip-search-filter-price-fill {
    position: absolute;
    top: 0;
    bottom: 0;
    background: var(--ip-search-primary);
    border-radius: 2px;
}

.ip-search-filter-price-slider input[type="range"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 32px;
    background: transparent;
    -webkit-appearance: none;
    appearance: none;
    pointer-events: none;
    margin: 0;
}

.ip-search-filter-price-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    pointer-events: auto;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--ip-search-primary);
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.ip-search-filter-price-slider input[type="range"]::-moz-range-thumb {
    pointer-events: auto;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--ip-search-primary);
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

/* === Details "Căutarea avansată" === */
.ip-search-filter-advanced {
    margin: 8px 0 4px;
    border-top: 1px solid var(--ip-search-border);
    padding-top: 14px;
}

.ip-search-filter-advanced > summary {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--ip-search-text);
    list-style: none;
    padding: 4px 0;
}

.ip-search-filter-advanced > summary::-webkit-details-marker {
    display: none;
}

.ip-search-filter-advanced-icon {
    font-size: 20px;
    font-weight: 400;
    color: var(--ip-search-text-muted);
    transition: transform 0.2s;
    line-height: 1;
    margin-left: auto;
    display: inline-block;
}

.ip-search-filter-advanced[open] .ip-search-filter-advanced-icon {
    transform: rotate(45deg);
}

.ip-search-filter-advanced-content {
    padding: 12px 0 4px;
    color: var(--ip-search-text-muted);
    font-size: 13px;
}

.ip-search-filter-advanced-placeholder {
    margin: 0;
    font-style: italic;
}

/* === Boolean checkboxes === */
.ip-search-filter-checkboxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 12px;
    margin: 12px 0;
}

.ip-search-filter-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--ip-search-text);
    cursor: pointer;
}

.ip-search-filter-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--ip-search-primary);
    cursor: pointer;
}

/* === Footer buttons (HTML uses -submit + -reset) === */
.ip-search-filter-overlay-reset {
    background: none;
    border: none;
    color: var(--ip-search-text-muted);
    font-size: 14px;
    text-decoration: underline;
    cursor: pointer;
    padding: 8px 4px;
    order: 2;
}

.ip-search-filter-overlay-reset:hover {
    color: var(--ip-search-text);
}

.ip-search-filter-overlay-submit {
    flex: 1;
    padding: 14px 24px;
    background: var(--ip-search-primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
    order: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ip-search-filter-overlay-submit:hover {
    background: var(--ip-search-primary-hover);
}

.ip-search-filter-counter {
    background: rgba(255, 255, 255, 0.25);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
    display: none;
}

.ip-search-filter-counter:not(:empty) {
    display: inline-block;
}

/* === Desktop: centered modal === */
@media (min-width: 1024px) {
    .ip-search-filter-overlay-modal {
        position: absolute;
        top: 50%;
        left: 50%;
        right: auto;
        bottom: auto;
        width: 720px;
        max-width: calc(100vw - 48px);
        max-height: 86vh;
        border-radius: 16px;
        transform: translate(-50%, -50%) scale(0.95);
        opacity: 0;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .ip-search-filter-overlay[data-state="open"] .ip-search-filter-overlay-modal {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

/* ==========================================================================
   WhatsApp Floating Button — TASK-028b Phase 4 (D1/D2)
   Fixed bottom-right, deasupra sticky toolbar mobile, brand green #25D366
   ========================================================================== */

.ip-search-whatsapp-float {
    position: fixed;
    bottom: calc(var(--ip-search-toolbar-height) + 16px);
    right: 16px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    z-index: 95;
    transition: transform 0.2s, box-shadow 0.2s;
}

.ip-search-whatsapp-float:hover,
.ip-search-whatsapp-float:focus {
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
    color: #fff;
    outline: none;
}

.ip-search-whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@media (min-width: 768px) {
    .ip-search-whatsapp-float {
        bottom: 24px;
        right: 24px;
    }
}
