.pixxi-map-wrap {
    width: 100%;
}

.pixxi-map {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,.12);
}

.pixxi-map-error {
    padding: 14px 16px;
    border: 1px solid #fecaca;
    background: #fef2f2;
    color: #991b1b;
    border-radius: 12px;
    font-size: 14px;
}

/* Marker (AdvancedMarkerElement content) — gold ring + pin */
:root {
    --pixxi-pin-gold: #b08b2c;
    --pixxi-pin-gold-dark: #8f6f21;
}

.pixxi-pin {
    width: 56px;
    height: 64px;
    position: relative;
    transform: translateY(-6px);
    filter: drop-shadow(0 10px 16px rgba(0,0,0,.25));
}

/* Teardrop base */
.pixxi-pin::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 8px;
    width: 56px;
    height: 56px;
    background: var(--pixxi-pin-gold);
    border-radius: 50% 50% 50% 50%;
    transform: translateX(-50%) rotate(45deg);
    box-shadow: inset 0 -2px 0 rgba(0,0,0,.12);
}

/* The round face that holds the image */
.pixxi-pin-ring {
    position: absolute;
    left: 50%;
    top: 0;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    transform: translateX(-50%);
    background: var(--pixxi-pin-gold);
    box-shadow: inset 0 2px 0 rgba(255,255,255,.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pixxi-pin-inner {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 2px rgba(255,255,255,.9);
}

.pixxi-pin-img {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background-size: cover;
    background-position: center;
    background-color: #e5e7eb;
}

/* small highlight edge like the screenshot */
.pixxi-pin-ring::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.10);
    pointer-events: none;
}

/* InfoWindow card */
/* Modern dark card (matches provided screenshot) */
.pixxi-iw2 {
    width: 320px;
    border-radius: 14px;
    overflow: hidden;
    background: #0b0b0f;
    color: #fff;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    box-shadow: 0 18px 50px rgba(0,0,0,.35);
}

.pixxi-iw2-media {
    height: 190px;
    position: relative;
    background: #111827;
}

.pixxi-iw2-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.0), rgba(0,0,0,.60));
    pointer-events: none;
}

.pixxi-iw2-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pixxi-iw2-ph {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, #1f2937, #0b1220);
}

.pixxi-iw2-badge {
    position: absolute;
    left: 12px;
    top: 10px;
    z-index: 2;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,.85);
    text-transform: lowercase;
    letter-spacing: .2px;
}

.pixxi-iw2-body {
    padding: 12px 14px 14px;
}

.pixxi-iw2-title {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: .2px;
}

.pixxi-iw2-sub {
    font-size: 12px;
    color: rgba(255,255,255,.75);
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pixxi-iw2-sub::before {
    content: "";
    width: 16px;
    height: 2px;
    background: var(--pixxi-pin-gold);
    border-radius: 99px;
    align-self: center;
    opacity: .9;
}

.pixxi-iw2-price {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.pixxi-iw2-price span {
    font-size: 11px;
    color: rgba(255,255,255,.7);
    font-style: italic;
}

.pixxi-iw2-price strong {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
}

.pixxi-iw2-btn {
    display: block;
    text-align: center;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(0,0,0,.20);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: .6px;
    border: 1px solid rgba(176, 139, 44, .85);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}

.pixxi-iw2-btn:hover {
    background: rgba(176, 139, 44, .10);
    color: #fff;
}



/*custom css*/
.pixxi-map .gm-style-iw-d {
    padding: 0px !important;
    max-height: 350px !important;
    height: 350px !important;
    overflow: unset !important;
}

.pixxi-map .gm-style-iw.gm-style-iw-c {
    padding: 0px !important;
    background: #000 !important;
        border-radius: 15px!important;
}

.pixxi-map .gm-style-iw-ch {
    display: none !important;
}

.pixxi-map [title="Close"] {
    position:absolute !important;
    right:0px !important;
    z-index:999999 !important;
    color:#fff !important;
}

.pixxi-map [title="Close"] span{
    background:#fff !important;
}

.pixxi-map a.pixxi-iw2-btn {
    margin-top: 21px;
    font-size: 10px !important;
    padding: 17px 0px!important;
    border-radius: 20px;
}

.pixxi-map .pixxi-iw2-title {
    font-weight: 600;
}

.pixxi-map .pixxi-iw-price {
    display: flex;
    justify-content: space-between;
}
