/* DentaVista — dc-location widget styles */
.dv-location { background: var(--dv-mint); }
                .dv-location__blob { width: 440px; height: 440px; bottom: -160px; left: -120px; background: rgba(91, 182, 223,.2); }
                .dv-location__inner { position: relative; z-index: 1; }
                .dv-location__head { max-width: 640px; margin-bottom: clamp(28px, 4vw, 48px); }
                .dv-location__head .dv-lead { margin-top: 14px; }

                /* ---- Stage ---- */
                .dv-location__stage { position: relative; }

                /* Big map card */
                .dv-location__map {
                    position: relative; border-radius: var(--dv-radius);
                    overflow: hidden; box-shadow: var(--dv-shadow);
                    min-height: clamp(420px, 52vw, 560px);
                    border: 1px solid var(--dv-line);
                }
                .dv-location__embed, .dv-location__embed iframe,
                .dv-location__placeholder { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }

                .dv-location__placeholder { background: #eaf4f1; display: grid; place-items: center; }
                /* Practice photo as map backdrop, with a soft veil for readability. */
                .dv-location__map-grid {
                    position: absolute; inset: 0;
                    background-color: #e4efeb;
                    background-image: url("/wp-content/uploads/2026/06/DSC08927.jpg");
                    background-size: cover;
                    background-position: center;
                }
                .dv-location__map-grid::after {
                    content: ""; position: absolute; inset: 0;
                    background: rgba(255, 255, 255, .18);
                }
                .dv-location__route-line {
                    position: absolute; left: 12%; right: 26%; top: 58%; height: 5px; border-radius: 5px;
                    background: var(--dv-teal-600); opacity: .55;
                    transform: rotate(-9deg);
                }
                .dv-location__marker {
                    position: relative; z-index: 1; width: 66px; height: 66px; border-radius: 50%;
                    display: grid; place-items: center; color: #fff;
                    background: var(--dv-teal-600);
                    box-shadow: 0 18px 36px -14px rgba(63, 160, 206,.7);
                    animation: dvLocFloat 5s ease-in-out infinite;
                }
                .dv-location__marker svg { width: 30px; height: 30px; }
                @keyframes dvLocFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

                /* Floating glass cards (shared) */
                .dv-location__float {
                    position: absolute; z-index: 3;
                    background: rgba(255,255,255,.86);
                    backdrop-filter: blur(14px);
                    border: 1px solid rgba(255,255,255,.7);
                    border-radius: var(--dv-radius-sm);
                    box-shadow: var(--dv-shadow);
                }

                /* Live badge — top left */
                .dv-location__float--badge { top: 22px; left: 22px; padding: 12px 18px; }
                .dv-location__live { display: inline-flex; align-items: center; gap: 12px; }
                .dv-location__live-meta { display: flex; flex-direction: column; line-height: 1.2; }
                .dv-location__live-meta strong { font-size: 14.5px; color: #0e8c5a; font-weight: 800; }
                .dv-location__live-meta small { font-size: 12px; color: var(--dv-muted); }
                .dv-location__dot {
                    width: 12px; height: 12px; border-radius: 50%; background: #18c07a; flex: none;
                    box-shadow: 0 0 0 0 rgba(24,192,122,.6); animation: dvLocPulse 2s infinite;
                }
                @keyframes dvLocPulse {
                    0% { box-shadow: 0 0 0 0 rgba(24,192,122,.55); }
                    70% { box-shadow: 0 0 0 11px rgba(24,192,122,0); }
                    100% { box-shadow: 0 0 0 0 rgba(24,192,122,0); }
                }

                /* Address card — bottom left, with route button */
                .dv-location__float--address {
                    bottom: 24px; left: 24px; max-width: min(420px, 70%);
                    display: flex; align-items: center; gap: 14px; padding: 16px 18px;
                }
                .dv-location__pin {
                    width: 46px; height: 46px; flex: none; border-radius: 12px;
                    display: grid; place-items: center; color: #fff; background: var(--dv-teal-600);
                }
                .dv-location__pin svg { width: 22px; height: 22px; }
                .dv-location__address-meta { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
                .dv-location__address-meta small {
                    font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
                    color: var(--dv-teal-600); margin-bottom: 2px;
                }
                .dv-location__address-meta strong { font-size: 15px; color: var(--dv-navy); font-weight: 700; }
                .dv-location__route {
                    margin-left: auto; flex: none;
                    display: inline-flex; align-items: center; gap: 7px; min-height: 44px;
                    padding: 10px 16px; border-radius: var(--dv-radius-pill);
                    background: var(--dv-navy); color: #fff; text-decoration: none;
                    font-size: 13.5px; font-weight: 700;
                    transition: background .25s var(--dv-ease), transform .3s var(--dv-spring);
                }
                .dv-location__route svg { width: 16px; height: 16px; transition: transform .3s var(--dv-ease); }
                .dv-location__route:hover { background: var(--dv-teal-600); transform: translateY(-2px); }
                .dv-location__route:hover svg { transform: translate(2px,-2px); }
                .dv-location__float :focus-visible,
                .dv-location__route:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(91, 182, 223,.55); }

                /* Side info panel — overlaps top right */
                .dv-location__info {
                    position: absolute; z-index: 3; top: 22px; right: 22px; width: min(340px, 40%);
                    padding: clamp(20px, 2vw, 28px);
                    background: #fff; border: 1px solid var(--dv-line);
                    border-radius: var(--dv-radius); box-shadow: var(--dv-shadow-lg);
                    display: flex; flex-direction: column;
                }
                .dv-location__hours { margin-bottom: 22px; }
                .dv-location__hours-title {
                    display: flex; align-items: center; gap: 9px;
                    font-family: var(--dv-font-head); font-weight: 800;
                    color: var(--dv-navy); font-size: 1.05rem; margin-bottom: 12px;
                }
                .dv-location__hours-title svg { width: 19px; height: 19px; color: var(--dv-teal-600); }
                .dv-location__table { width: 100%; border-collapse: collapse; }
                .dv-location__table th, .dv-location__table td {
                    text-align: left; padding: 10px 12px; font-size: 14.5px;
                    border-bottom: 1px solid var(--dv-line);
                }
                .dv-location__table th { font-weight: 600; color: var(--dv-navy-700); }
                .dv-location__table td { text-align: right; color: var(--dv-muted); font-weight: 600; }
                .dv-location__table tr:last-child th, .dv-location__table tr:last-child td { border-bottom: 0; }
                .dv-location__table tr.is-highlight { background: var(--dv-teal-050); }
                .dv-location__table tr.is-highlight th { color: var(--dv-teal-600); font-weight: 800; }
                .dv-location__table tr.is-highlight td { color: var(--dv-teal-600); }

                .dv-location__actions { margin-top: auto; display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
                .dv-location__actions .dv-btn { width: 100%; }
                .dv-location__fb {
                    display: inline-flex; align-items: center; gap: 9px; min-height: 44px;
                    font-weight: 700; font-size: 14.5px; color: var(--dv-navy-700);
                    text-decoration: none; transition: color .3s var(--dv-ease);
                }
                .dv-location__fb svg { width: 20px; height: 20px; color: #1877f2; }
                .dv-location__fb:hover { color: var(--dv-teal-600); }

                /* ---- Responsive ---- */
                @media (max-width: 980px) {
                    .dv-location__map { min-height: 0; aspect-ratio: 4/3; }
                    /* Cards stop overlapping: stack below the map */
                    .dv-location__info {
                        position: static; width: 100%; margin-top: 18px;
                        box-shadow: var(--dv-shadow);
                    }
                    .dv-location__float--badge { top: 16px; left: 16px; }
                    .dv-location__float--address { left: 16px; right: 16px; bottom: 16px; max-width: none; }
                }
                @media (max-width: 600px) {
                    .dv-location__map { aspect-ratio: 1/1; }
                    .dv-location__float--address { flex-wrap: wrap; gap: 12px; }
                    .dv-location__route { margin-left: 0; width: 100%; justify-content: center; }
                    .dv-location__address-meta { flex: 1 1 60%; }
                }
                @media (prefers-reduced-motion: reduce) {
                    .dv-location__dot, .dv-location__marker { animation: none; }
                    .dv-location__route, .dv-location__fb { transition: none; }
                }
