/* ── Pet Platform Core – Store Address Widget ── */
.ppc-store-address-wrap {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
}

.ppc-address-front {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.ppc-address-icon {
    flex-shrink: 0;
}

.ppc-address-text {
    color: #333;
    line-height: 1.5;
}

.ppc-address-actions {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.ppc-btn {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    line-height: 1.6;
}

.ppc-copy-btn {
    background: #f0f0f0;
    color: #444;
}
.ppc-copy-btn:hover {
    background: #ddd;
}

.ppc-map-btn {
    background: #4285f4;
    color: #fff;
}
.ppc-map-btn:hover {
    background: #3367d6;
    color: #fff;
}

.ppc-copy-toast {
    position: absolute;
    bottom: -28px;
    left: 0;
    background: rgba(0,0,0,.75);
    color: #fff;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 4px;
    white-space: nowrap;
    pointer-events: none;
}
