/* ========================================= */
/* === INTERACTIVE SAI PURCHASE STYLES   === */
/* ========================================= */

.hero-sai-purchase-container-interactive {
    position: relative;
    max-width: 780px;
    width: 100%;
    margin: 45px auto 0 auto;
    border-radius: 18px;
    cursor: pointer;
}

/* --- Initial Visible State --- */
.initial-view {
    display: flex;
    background: rgba(35, 45, 60, 0.2);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    padding: 25px 30px;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0px rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}
.hero-sai-purchase-container-interactive:hover .initial-view {
    opacity: 0;
    visibility: hidden;
}

.sai-box-branding-col {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-right: 25px;
    border-right: 1px solid var(--border-color-soft);
}
html[dir="rtl"] .sai-box-branding-col {
    padding-right: 0;
    padding-left: 25px;
    border-right: none;
    border-left: 1px solid var(--border-color-soft);
}

.hero-sai-icon-main {
    font-size: 2.8em;
    color: var(--highlight-color);
    margin-bottom: 12px;
}
.sai-box-branding-col h3 {
    font-size: 1.7em;
    margin-bottom: 8px;
    color: #fff;
}
.hero-sai-tagline {
    font-size: 1em;
    color: var(--highlight-hover-color);
    font-weight: 500;
}

.sai-box-content-col {
    flex: 1;
    padding-left: 25px;
}
html[dir="rtl"] .sai-box-content-col {
    padding-left: 0;
    padding-right: 25px;
}
.hero-sai-main-desc {
    font-size: 1em;
    line-height: 1.7;
    margin-bottom: 20px;
}
.hero-sai-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hero-sai-features-list li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
}
html[dir="rtl"] .hero-sai-features-list li {
    padding-left: 0;
    padding-right: 20px;
}
.hero-sai-features-list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    top: 0;
}
html[dir="rtl"] .hero-sai-features-list li::before {
    left: auto;
    right: 0;
}

/* --- Hidden Hover State --- */
.sai-hover-options-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
    border-radius: 18px;
    overflow: hidden;
}
.hero-sai-purchase-container-interactive:hover .sai-hover-options-wrapper {
    opacity: 1;
    visibility: visible;
}

.sai-hover-option-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px;
    text-align: center;
    text-decoration: none;
    background: rgba(var(--primary-bg-color-rgb), 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: background 0.3s ease;
}
.sai-hover-option-panel:first-child {
    border-right: 1px solid var(--border-color-medium);
}
.sai-hover-option-panel:hover {
    background: rgba(var(--highlight-color-rgb), 0.1);
}
.sai-hover-option-panel.recommended-panel {
    background: rgba(var(--highlight-color-rgb), 0.05);
}
.sai-hover-option-panel.recommended-panel:hover {
    background: rgba(var(--highlight-color-rgb), 0.15);
}
.recommended-badge-text {
    background: var(--highlight-color);
    color: white;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: bold;
    margin-bottom: 15px;
}
.sai-hover-option-panel h4 {
    font-size: 1.5em;
    color: #fff;
    margin-bottom: 10px;
}
.hover-option-description {
    font-size: 0.95em;
    color: var(--secondary-text-color);
    flex-grow: 1;
}
.hover-option-cta {
    font-weight: bold;
    color: var(--highlight-hover-color);
    font-size: 1.1em;
}

/* Responsive adjustments for this specific component */
@media (max-width: 768px) {
    .initial-view {
        flex-direction: column;
        gap: 20px;
    }
    .sai-box-branding-col {
        border-right: none;
        border-bottom: 1px solid var(--border-color-soft);
        padding-right: 0;
        padding-bottom: 20px;
    }
    html[dir="rtl"] .sai-box-branding-col {
        border-left: none;
        padding-left: 0;
    }
    .sai-box-content-col {
        padding-left: 0;
    }
    html[dir="rtl"] .sai-box-content-col {
        padding-right: 0;
    }
    .sai-hover-options-wrapper {
        flex-direction: column;
    }
    .sai-hover-option-panel:first-child {
        border-right: none;
        border-bottom: 1px solid var(--border-color-medium);
    }
}