/*
 * WooCommerce Address Autocomplete — wcaa.css
 * Styles the Google Places pac-container to match WooCommerce themes.
 */

/* ── Dropdown container ─────────────────────────────────────────────────── */
.pac-container {
    font-family: inherit;
    font-size: 14px;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    background: #fff;
    z-index: 99999; /* above WC overlays */
    margin-top: 0;
    padding: 4px 0;
}

/* ── Individual suggestion item ─────────────────────────────────────────── */
.pac-item {
    padding: 9px 14px;
    cursor: pointer;
    border-top: 1px solid #f0f0f0;
    font-size: 13px;
    color: #333;
    line-height: 1.4;
    transition: background 0.15s ease;
}

.pac-item:first-child {
    border-top: none;
}

.pac-item:hover,
.pac-item-selected {
    background: #f6f7fb;
}

/* ── Main text (street address part) ───────────────────────────────────── */
.pac-item-query {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    padding-right: 4px;
}

/* ── Secondary text (city, country part) ───────────────────────────────── */
.pac-item span:last-child {
    color: #777;
    font-size: 12px;
}

/* ── Location pin icon ──────────────────────────────────────────────────── */
.pac-icon {
    margin-top: 4px;
    background-image: none !important; /* hide default sprite */
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.pac-icon::before {
    content: "📍";
    font-size: 13px;
    line-height: 1;
}

/* ── "Powered by Google" footer ─────────────────────────────────────────── */
.pac-logo::after {
    padding: 6px 10px;
    font-size: 11px;
    color: #aaa;
}

/* ── Hide the pac-container logo image (keep text) ─────────────────────── */
.pac-container::after {
    background-image: none !important;
    height: auto;
    padding: 4px 10px 6px;
    font-size: 11px;
    color: #bbb;
    text-align: right;
    content: "Powered by Google";
    display: block;
    border-top: 1px solid #f0f0f0;
    margin-top: 2px;
}

/* ── Input field — highlight when autocomplete is active ────────────────── */
#billing_address_1.wcaa-focus,
#shipping_address_1.wcaa-focus {
    border-color: #7c6cb9;
    box-shadow: 0 0 0 2px rgba(124, 108, 185, 0.15);
    outline: none;
}

/* ── Responsive tweaks ──────────────────────────────────────────────────── */
@media (max-width: 600px) {
    .pac-container {
        font-size: 13px;
    }

    .pac-item {
        padding: 10px 12px;
    }

    .pac-item-query {
        font-size: 13px;
    }
}
