/* ============================================
   ENHANCED POOJA CARDS - DETAILED LAYOUT
   ============================================ */

.pooja-card-detailed {
    background: var(--cream);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.pooja-card-detailed:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

/* Top Hero Section with Deity */
.pooja-card-hero {
    position: relative;
    height: 280px;
    border-radius: 20px;
    margin: 12px 12px 0 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.pooja-card-hero.green {
    background: linear-gradient(135deg, #2D5016 0%, #1e3a0f 50%, #2D5016 100%);
}

.pooja-card-hero.purple {
    background: linear-gradient(135deg, #4B0082 0%, #2d004f 50%, #4B0082 100%);
}

.pooja-card-hero.blue {
    background: linear-gradient(135deg, #00008B 0%, #000055 50%, #00008B 100%);
}

.pooja-card-hero.maroon {
    background: linear-gradient(135deg, #800020 0%, #4d0013 50%, #800020 100%);
}

.pooja-card-deity {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.pooja-card-deity img {
    max-height: 240px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
}

/* Bottom Details Section */
.pooja-card-details {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pooja-card-main-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.pooja-card-full-desc {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.pooja-card-info-items {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 1.5rem;
}

.pooja-card-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.pooja-card-info-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--primary);
    margin-top: 2px;
}

.pooja-card-info-text {
    font-size: 0.9375rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.5;
}

.pooja-card-action-btn {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
    margin-top: auto;
}

.pooja-card-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .pooja-card-hero {
        height: auto;
        min-height: 320px;
    }

    .pooja-card-hero-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 1rem;
    }

    .pooja-card-deity img {
        max-height: 180px;
    }

    .pooja-card-hero-title {
        font-size: 1.25rem;
    }
}