.wdlw-delivery-location {
    display: flex;
    align-items: center;
    cursor: pointer;

    /* border */
    border: none;
    padding: 4px 10px;
}

.wdlw-location-icon {
    margin-right: 6px;
    font-size: 18px;

    /* 🔹 new icon (SVG as background) */
    width: 18px;
    height: 18px;
    background: url('/wp-content/uploads/2025/09/Pin-Location-Icon.svg') no-repeat center center;
    background-size: contain;
    display: inline-block;
    /* remove emoji content */
    content: '';
}

.wdlw-line1 {
    font-size: 12px;
    font-weight: 600;
    color: #fff; /* 🔹 white text */
}

.wdlw-line2 {
    font-size: 12px;
	font-weight: 500;
    color: #fff; /* 🔹 white text */
	display:inline-flex;
	justify-content:flex-start;
	align-items:center;
}

/* Modal overlay */
.wdlw-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 99999;
    overflow-y: auto;
}

/* Modal box */
.wdlw-modal-content {
    background: #fff;
    max-width: 500px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 8px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-sizing: border-box;
}

/* Close button */
.wdlw-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

/* Mobile full width */
@media (max-width: 600px) {
  .wdlw-modal-content {
    width: 95%;
    margin: 20px auto;
    max-height: 95vh;
  }
}
