.lcp-widget-container-87f96d29 {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.lcp-viewport {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
}

.lcp-base-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.lcp-hotspots-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Pulsing markers */
.lcp-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: transform 0.2s ease, background-color 0.2s ease;
    animation: lcp-pulse 2s infinite;
    z-index: 10;
}

.lcp-marker:hover,
.lcp-marker.is-active {
    transform: translate(-50%, -50%) scale(1.15);
    animation: none;
}

@keyframes lcp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(255, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

/* Right sliding panel */
.lcp-info-panel {
    position: absolute;
    top: 5%;
    right: -420px; /* Hidden initially */
    width: 380px;
    max-width: 90%;
    height: 90%;
    border-radius: 12px;
    box-shadow: -5px 5px 30px rgba(0, 0, 0, 0.15);
    padding: 30px;
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.lcp-info-panel.is-open {
    right: 2.5%;
}

@media (max-width: 767px) {
    .lcp-info-panel {
        top: auto;
        bottom: -100%;
        left: 0;
        right: 0 !important;
        width: 100%;
        max-width: 100%;
        height: 60%;
        border-radius: 20px 20px 0 0;
        transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .lcp-info-panel.is-open {
        bottom: 0;
    }
}

.lcp-close-panel {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    color: #999;
    transition: color 0.2s ease;
}

.lcp-close-panel:hover {
    color: #333;
}

/* 2x2 Grid Layout Rules */
.lcp-panel-grid-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
    margin-bottom: 5px;
}

.lcp-grid-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    align-items: center;
}

.lcp-grid-cell {
    border-radius: 8px;
    overflow: hidden;
    background: #fdfdfd;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 3;
    padding: 5px;
}

.lcp-cell-brand-1,
.lcp-cell-brand-2 {
    border: none;
    background: transparent;
}

.lcp-panel-image-1,
.lcp-panel-image-2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lcp-panel-logo-1,
.lcp-panel-logo-2 {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.lcp-panel-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.lcp-panel-desc {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}
