/* ==========================================================================
   PLACE / BUSINESS INFO CARD COMPONENT (Clean, Intentional, Flat Product Surface)
   ========================================================================== */

/* 1. Backdrop */
.place-panel-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.45);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.place-panel-backdrop.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* 2. Main Card Container (16px border radius, flat surface, hairline border) */
.place-panel-container {
    position: fixed;
    background: #ffffff;
    z-index: 10001;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Desktop Modal Centering */
@media (min-width: 769px) {
    .place-panel-container {
        top: 50%;
        left: 50%;
        width: 960px;
        max-width: calc(100vw - 48px);
        height: 560px;
        max-height: 88vh;
        transform: translate(-50%, -50%) scale(0.98);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease, visibility 0.2s ease;
    }

    .place-panel-container.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Mobile Bottom Sheet */
@media (max-width: 768px) {
    .place-panel-container {
        bottom: 0;
        left: 0;
        top: auto;
        width: 100%;
        height: 85vh;
        max-height: 88vh;
        border-radius: 16px 16px 0 0;
        flex-direction: column;
        border-bottom: none;
        transform: translateY(100%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease, visibility 0.2s ease;
    }

    .place-panel-container.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

/* Mobile Drag Handle */
.panel-drag-handle {
    width: 100%;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 25;
}

@media (min-width: 769px) {
    .panel-drag-handle {
        display: none;
    }
}

.panel-drag-pill {
    width: 36px;
    height: 4px;
    background: #cbd5e1;
    border-radius: 2px;
}

/* Close Button (Simple flat outline icon) */
.panel-close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    cursor: pointer;
    z-index: 30;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    padding: 0;
}

.panel-close-btn:hover {
    background: #f8fafc;
    color: #0f172a;
    border-color: #cbd5e1;
}

/* 3. Left Column: Image Hero (Flush to edges, seamless with card) */
.panel-hero {
    width: 44%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
    background: #0f172a;
    overflow: hidden;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .panel-hero {
        width: 100%;
        height: 240px;
        padding: 0;
        margin: 0;
        flex-shrink: 0;
    }
}

.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.carousel-slides {
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.3s ease;
}

.carousel-slide {
    width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    user-select: none;
    border-radius: 0;
}

/* Large Carousel Navigation Buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: background 0.15s ease, transform 0.15s ease;
    padding: 0;
    outline: none;
}

.carousel-nav svg {
    width: 20px;
    height: 20px;
    display: block;
}

.carousel-nav:hover {
    background: rgba(15, 23, 42, 0.9);
    transform: translateY(-50%) scale(1.08);
}

.carousel-prev {
    left: 14px;
}

.carousel-next {
    right: 14px;
}

.carousel-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 15;
    pointer-events: none;
}

.carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: background 0.2s, transform 0.2s;
}

.carousel-dot.active {
    background: #ffffff;
    transform: scale(1.25);
}


/* 4. Right Column: Details Body (Generous 24px Padding) */
.panel-body {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow-y: auto;
    background: #ffffff;
    gap: 14px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .panel-body {
        padding: 18px 16px;
        gap: 12px;
    }
}

/* Header Row: 18px semibold Name + Save Bookmark */
.panel-header-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding-right: 36px;
}

.panel-place-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.015em;
    word-break: break-word;
}

.panel-save-btn {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    padding: 0;
}

.panel-save-btn:hover {
    background: #f8fafc;
    color: #0f172a;
    border-color: #cbd5e1;
}

.panel-save-btn.saved {
    background: #eff6ff;
    border-color: #378ADD;
    color: #378ADD;
}

.panel-save-btn.saved svg {
    fill: #378ADD;
    stroke: #378ADD;
}

/* Bookmark Pop Micro-interaction on Save */
@keyframes bookmarkPop {
    0% {
        transform: scale(1);
    }
    35% {
        transform: scale(1.14);
    }
    65% {
        transform: scale(0.96);
    }
    100% {
        transform: scale(1);
    }
}

.panel-save-btn.animate-pop {
    animation: bookmarkPop 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@media (prefers-reduced-motion: reduce) {
    .panel-save-btn.animate-pop {
        animation: none !important;
    }
}

/* 5. Info Rows with Hairline Dividers (14px regular text) */
.panel-info-block {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #f1f5f9;
}

.panel-info-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
    font-weight: 400;
    color: #475569;
    line-height: 1.45;
}

.panel-info-icon {
    width: 16px;
    height: 16px;
    min-width: 16px;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.panel-info-icon svg {
    width: 16px;
    height: 16px;
}

.panel-info-text {
    flex: 1;
    min-width: 0;
    word-break: break-word;
    font-weight: 400;
    color: #475569;
}

.panel-info-link {
    color: #475569;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.15s;
}

.panel-info-link:hover {
    color: #0f172a;
    text-decoration: underline;
}

/* Hours Accordion */
.panel-hours-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.panel-hours-header {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    user-select: none;
}

.panel-hours-status {
    font-weight: 400;
    font-size: 14px;
}

.panel-hours-status.open {
    color: #16a34a;
    font-weight: 500;
}

.panel-hours-status.closed {
    color: #dc2626;
    font-weight: 500;
}

.panel-hours-chevron {
    color: #94a3b8;
    transition: transform 0.15s ease;
}

.panel-hours-wrapper.expanded .panel-hours-chevron {
    transform: rotate(180deg);
}

.panel-hours-dropdown {
    display: none;
    margin-top: 8px;
    padding: 8px 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.panel-hours-wrapper.expanded .panel-hours-dropdown {
    display: block;
}

.panel-hours-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.panel-hours-table tr {
    border-bottom: 1px solid #f1f5f9;
}

.panel-hours-table tr:last-child {
    border-bottom: none;
}

.panel-hours-table td {
    padding: 4px 2px;
}

.panel-hours-table td.day-col {
    font-weight: 500;
    color: #475569;
    width: 42%;
}

.panel-hours-table td.time-col {
    color: #475569;
    text-align: right;
}

.panel-hours-table tr.today-row td {
    color: #0f172a;
    font-weight: 600;
}

/* 6. Rating Section (5 Outline Stars, Interactive) */
.panel-rating-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 4px 0 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.rating-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rating-label {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #0f172a;
}

.rating-summary {
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating-score {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
}

.rating-star-badge {
    color: #f59e0b;
}

.rating-count {
    font-size: 13px;
    color: #64748b;
    font-weight: 400;
}

/* 5 Outline Star Picker */
.star-rating-picker {
    display: flex;
    gap: 4px;
    justify-content: flex-start;
    padding: 4px 0;
}

.star-btn {
    background: transparent;
    border: none;
    padding: 2px;
    cursor: pointer;
    color: #cbd5e1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    outline: none;
    transition: transform 0.1s ease;
}

.star-btn svg {
    stroke: #cbd5e1;
    fill: transparent;
    transition: stroke 0.12s, fill 0.12s;
}

/* Hover & Selected filled states (in Amber) */
.star-btn.hovered svg,
.star-btn.filled svg {
    stroke: #f59e0b;
    fill: #f59e0b;
}

/* Post-Interaction Feedback & Inline Auth Notice */
.rating-feedback-area {
    display: flex;
    flex-direction: column;
    gap: 6px;
    animation: fadeInPrompt 0.15s ease;
}

@keyframes fadeInPrompt {
    from { opacity: 0; transform: translateY(-2px); }
    to { opacity: 1; transform: translateY(0); }
}

.rating-inline-auth {
    font-size: 13px;
    color: #64748b;
    font-weight: 400;
    margin: 2px 0;
}

.rating-inline-login-link {
    color: #0f172a;
    font-weight: 500;
    text-decoration: underline;
    transition: color 0.15s;
}

.rating-inline-login-link:hover {
    color: #000000;
}

.rating-prompt {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

.rating-prompt.success {
    color: #16a34a;
    font-weight: 500;
}

/* Comment Input & Buttons */
.rating-comment-box {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 2px;
}

.rating-comment-textarea {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 13px;
    color: #0f172a;
    background: #ffffff;
    resize: vertical;
    min-height: 48px;
    max-height: 120px;
    box-sizing: border-box;
    transition: border-color 0.15s;
}

.rating-comment-textarea:focus {
    outline: none;
    border-color: #0f172a;
}

.rating-form-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
}

.btn-submit-review {
    padding: 6px 14px;
    background: #0f172a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.15s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-submit-review .spinner-sm {
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: btnSpin 0.6s linear infinite;
}

@keyframes btnSpin {
    to { transform: rotate(360deg); }
}

.btn-submit-review:hover {
    background: #27272a;
}

.btn-submit-review:disabled {
    background: #94a3b8;
    cursor: not-allowed;
}

.btn-delete-review {
    padding: 5px 10px;
    background: transparent;
    color: #64748b;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-weight: 500;
    font-size: 12px;
    cursor: pointer;
    transition: color 0.15s, border-color 0.15s;
}

.btn-delete-review:hover {
    color: #dc2626;
    border-color: #fca5a5;
    background: #fef2f2;
}

.rating-action-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.btn-edit-review {
    padding: 5px 12px;
    background: #f1f5f9;
    color: #0f172a;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-weight: 500;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}

.btn-edit-review:hover {
    background: #e2e8f0;
    border-color: #94a3b8;
}

.btn-cancel-edit {
    padding: 5px 10px;
    background: transparent;
    color: #64748b;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-weight: 500;
    font-size: 12px;
    cursor: pointer;
}

.btn-cancel-edit:hover {
    color: #334155;
    background: #f8fafc;
}

/* 7. Customer Reviews Section */
.panel-reviews-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.reviews-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reviews-section-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #0f172a;
}

.reviews-see-more-btn {
    background: none;
    border: none;
    color: #64748b;
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
    padding: 0;
    transition: color 0.15s;
}

.reviews-see-more-btn:hover {
    color: #0f172a;
    text-decoration: underline;
}

.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.reviews-empty-state {
    padding: 4px 0;
    color: #64748b;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.review-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px 10px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 8px;
}

.review-user-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-avatar {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
}

.review-user-meta {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.review-user-name-wrap {
    display: flex;
    align-items: center;
    gap: 4px;
}

.review-user-name {
    font-weight: 500;
    font-size: 13px;
    color: #0f172a;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.review-badge-self {
    font-size: 10px;
    font-weight: 500;
    color: #475569;
    background: #e2e8f0;
    padding: 1px 4px;
    border-radius: 3px;
}

.review-time {
    font-size: 12px;
    color: #94a3b8;
    margin-left: auto;
}

.review-stars-row {
    display: flex;
    align-items: center;
    gap: 1px;
    color: #f59e0b;
    font-size: 12px;
    line-height: 1;
}

.review-stars-row .star-dim {
    color: #e2e8f0;
}

.review-comment {
    font-size: 13px;
    color: #475569;
    line-height: 1.4;
    word-break: break-word;
    margin: 0;
}

/* 8. Bottom Section: Single Clear Primary Action ("Plan route") */
.panel-bottom-section {
    margin-top: auto;
    padding-top: 8px;
    display: flex;
    flex-direction: column;
}

.panel-cta-btn {
    width: 100%;
    background: #0f172a;
    color: #ffffff;
    font-weight: 600;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: background 0.15s;
    box-shadow: none;
}

.panel-cta-btn:hover {
    background: #27272a;
    transform: none;
    box-shadow: none;
}

/* ─────────────────────────────────────────────────────────────
   360 PHOTOSPHERE PREVIEW & "VIEW 360°" ACTION (INFO PANEL)
   ───────────────────────────────────────────────────────────── */
.panel-360-section {
    margin: 4px 0 12px 0;
}

.panel-360-container {
    padding: 8px 10px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.panel-360-container:hover {
    background: #F1F5F9;
    border-color: #CBD5E1;
}

.popup-360-thumb-wrap {
    position: relative;
    width: 80px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    background: #E2E8F0;
}

.popup-360-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.popup-360-thumb-wrap:hover .popup-360-thumb {
    transform: scale(1.08);
}

.popup-360-badge {
    position: absolute;
    bottom: 3px;
    right: 3px;
    background: rgba(15, 23, 42, 0.78);
    color: #FFFFFF;
    font-family: 'Sora', sans-serif;
    font-size: 8.5px;
    font-weight: 700;
    padding: 1px 4px;
    border-radius: 4px;
    line-height: 1.2;
    backdrop-filter: blur(4px);
    pointer-events: none;
    letter-spacing: 0.02em;
}

.popup-360-action-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.popup-360-btn {
    background: linear-gradient(135deg, #378ADD 0%, #256bb8 100%);
    color: #FFFFFF !important;
    text-decoration: none;
    font-family: 'Sora', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    padding: 7px 14px;
    border: none;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 3px 10px rgba(55, 138, 221, 0.3);
    cursor: pointer;
    transition: all 150ms ease;
    line-height: 1;
    white-space: nowrap;
    width: fit-content;
}

.popup-360-btn:hover {
    background: linear-gradient(135deg, #256bb8 0%, #1d528f 100%);
    box-shadow: 0 5px 14px rgba(55, 138, 221, 0.42);
    transform: translateY(-1px);
    color: #FFFFFF !important;
}

.popup-360-btn:active {
    transform: translateY(0);
}

.popup-360-icon {
    flex-shrink: 0;
    transition: transform 150ms ease;
}

.popup-360-btn:hover .popup-360-icon {
    transform: rotate(20deg);
}

/* Modal for 360 Viewer */
.calzada-360-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    padding: 16px;
}

.calzada-360-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.calzada-360-modal-container {
    width: 100%;
    max-width: 900px;
    height: 80vh;
    max-height: 600px;
    background: #0F172A;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
}

.calzada-360-modal-header {
    height: 52px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(30, 41, 59, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.calzada-360-modal-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #F8FAFC;
    font-family: 'Sora', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
}

.calzada-360-close-btn {
    background: transparent;
    border: none;
    color: #94A3B8;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.15s ease;
}

.calzada-360-close-btn:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.1);
}

.calzada-360-preview-viewport {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #020617;
}

.calzada-360-full-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.calzada-360-status-pill {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #F1F5F9;
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(8px);
}

.calzada-360-pulse-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.3);
}
