/* ==========================================================================
   TELL RESI, SUGAR - ROI Placeholder Component
   Lily Pond / Bootstrap Bazaar themed placeholder for ROI dashboard
   ========================================================================== */

/* Main placeholder container */
.tell-resi-placeholder {
    position: relative;
    background: linear-gradient(145deg, #2d4a3e 0%, #1a2f28 50%, #0d1f1a 100%);
    border: 3px solid #b87333;
    border-radius: 16px;
    padding: 30px;
    margin: 20px 0;
    overflow: hidden;
    box-shadow: 
        0 0 20px rgba(0, 212, 255, 0.15),
        inset 0 0 40px rgba(0, 0, 0, 0.3);
}

.tell-resi-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/static/images/bazaar/lily_pad_bunch.png');
    background-size: 120px;
    background-position: bottom left;
    background-repeat: no-repeat;
    opacity: 0.3;
    pointer-events: none;
}

.tell-resi-placeholder::after {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 80px;
    height: 80px;
    background-image: url('/static/images/bazaar/lily_pond_lamps.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.6;
    pointer-events: none;
}

.tell-resi-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 24px;
}

.tell-resi-avatar {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-image: url('/static/images/bazaar/Resi_Circle_Icon.png');
    background-size: cover;
    background-position: center;
    border: 3px solid #eeae47;
    box-shadow: 
        0 0 15px rgba(238, 174, 71, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.3);
    animation: resi-glow 3s ease-in-out infinite;
}

@keyframes resi-glow {
    0%, 100% { box-shadow: 0 0 15px rgba(238, 174, 71, 0.4), 0 4px 12px rgba(0, 0, 0, 0.3); }
    50% { box-shadow: 0 0 25px rgba(238, 174, 71, 0.6), 0 4px 12px rgba(0, 0, 0, 0.3); }
}

.tell-resi-message {
    flex: 1;
}

.tell-resi-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    color: #eeae47;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.tell-resi-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #c2c3c3;
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.tell-resi-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(180deg, #5d4037 0%, #3e2723 100%);
    border: 2px solid #eeae47;
    color: #f5e6d3;
    padding: 12px 24px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tell-resi-cta:hover {
    background: linear-gradient(180deg, #6d4c41 0%, #5d4037 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(238, 174, 71, 0.4);
}

.tell-resi-cta i {
    font-size: 1.1rem;
}

/* ROI Placeholder Cards Grid */
.roi-placeholder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.roi-placeholder-card {
    background: linear-gradient(145deg, rgba(45, 74, 62, 0.8) 0%, rgba(26, 47, 40, 0.9) 100%);
    border: 2px solid rgba(184, 115, 51, 0.5);
    border-radius: 12px;
    padding: 16px;
    position: relative;
    overflow: hidden;
}

.roi-placeholder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    animation: energy-flow 2s linear infinite;
}

@keyframes energy-flow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.roi-card-icon {
    font-size: 1.8rem;
    color: #eeae47;
    margin-bottom: 10px;
}

.roi-card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    color: #c2c3c3;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.roi-card-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00d4ff;
    margin: 0;
    opacity: 0.4;
}

.roi-card-note {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    color: #8eabb4;
    margin-top: 6px;
    font-style: italic;
}

/* Compact inline placeholder */
.tell-resi-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(45, 74, 62, 0.6);
    border: 1px solid rgba(238, 174, 71, 0.4);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.85rem;
    color: #c2c3c3;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tell-resi-inline:hover {
    background: rgba(45, 74, 62, 0.9);
    border-color: #eeae47;
}

.tell-resi-inline img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tell-resi-content {
        flex-direction: column;
        text-align: center;
    }
    
    .tell-resi-avatar {
        width: 70px;
        height: 70px;
    }
    
    .tell-resi-title {
        font-size: 1.2rem;
    }
    
    .roi-placeholder-grid {
        grid-template-columns: 1fr;
    }
}
