/* ===== SOP INTERACTIVE SECTION ===== */
.sop-gem-container {
    perspective: 1000px;
}
.sop-dot {
    width: 12px;
    height: 12px;
    background-color: #C89B94;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(200, 155, 148, 0.4);
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 30;
}
.sop-gem-container.is-active .sop-gem-wrapper {
    opacity: 1;
    transform: scale(1);
}
.sop-gem-wrapper img {
    animation: floatGem 6s ease-in-out infinite;
}
.sop-gem-container.is-active .sop-dot {
    opacity: 1;
    transform: scale(1);
    animation: pulseDot 2s infinite;
}
.sop-gem-container.is-active .sop-dot-1 { transition-delay: 0.3s; animation-delay: 0.3s; }
.sop-gem-container.is-active .sop-dot-2 { transition-delay: 0.5s; animation-delay: 0.5s; }
.sop-gem-container.is-active .sop-dot-3 { transition-delay: 0.7s; animation-delay: 0.7s; }

@keyframes floatGem {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes pulseDot {
    0% { box-shadow: 0 0 0 0 rgba(200, 155, 148, 0.5); }
    70% { box-shadow: 0 0 0 10px rgba(200, 155, 148, 0); }
    100% { box-shadow: 0 0 0 0 rgba(200, 155, 148, 0); }
}

.sop-css-line {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 1.5px;
    background: linear-gradient(90deg, #C89B94 0%, rgba(200,155,148,0.2) 100%);
    transform-origin: left center;
    width: 0;
    transition: width 1s ease-in-out;
    z-index: -1;
    pointer-events: none;
}
.sop-gem-container.is-active .sop-line-1 {
    width: 106px;
    transform: rotate(180deg); /* To the left */
    transition-delay: 0.5s;
}
.sop-gem-container.is-active .sop-line-2 {
    width: 106px;
    transform: rotate(0deg); /* Top right */
    transition-delay: 0.7s;
}
.sop-gem-container.is-active .sop-line-3 {
    width: 106px;
    transform: rotate(0deg); /* Bottom right */
    transition-delay: 0.9s;
}
@media (min-width: 1024px) {
    .sop-gem-container.is-active .sop-line-1 { width: 146px; }
    .sop-gem-container.is-active .sop-line-2 { width: 146px; }
    .sop-gem-container.is-active .sop-line-3 { width: 146px; }
}

.sop-gem-container.is-active .sop-card {
    opacity: 1;
    transform: translateY(0);
}
.sop-card {
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.sop-gem-container.is-active .sop-card-1 { transition-delay: 1.1s; }
.sop-gem-container.is-active .sop-card-2 { transition-delay: 1.3s; }
.sop-gem-container.is-active .sop-card-3 { transition-delay: 1.5s; }

