/* osho_tarot.php 전용 스타일 */
.renewal-page-header {
    padding: 40px 20px 15px !important;
    background: radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.15) 0%, rgba(5, 5, 16, 0) 70%);
    margin-bottom: 15px;
}

.renewal-page-header p {
    color: #fdc857 !important;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.tarot-container {
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 100px;
}

.glass-card {
    background: rgba(25, 25, 40, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 50px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.intro-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.intro-text h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 800;
}

.intro-text p {
    color: #faedd2 !important;
    line-height: 1.7;
    margin-bottom: 15px;
}

.spread-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.spread-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.spread-card:hover {
    transform: translateY(-10px);
    border-color: rgba(245, 158, 11, 0.4);
    background: rgba(245, 158, 11, 0.05);
}

.spread-card img {
    height: 180px;
    width: 100%;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 25px;
    border-radius: 10px;
}

.spread-card h4 {
    color: #f59e0b;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.spread-card p {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.6;
}

.spread-price {
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    margin-top: 20px;
    display: block;
}

.cta-banner {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(239, 68, 68, 0.1));
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-top: 50px;
}

.cta-button {
    display: inline-block;
    padding: 20px 60px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-tarot {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: #fff;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.4);
    filter: brightness(1.1);
}

.product-card-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.product-card-tag {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    background: #3b82f6;
    padding: 6px 16px;
    border-radius: 15px;
    display: inline-block;
    margin-bottom: 20px;
    align-self: center;
}

.product-card-tag.recommended {
    background: #ef4444;
}

.product-card-title {
    font-size: 1.4rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: 15px;
}

.product-card-description {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.product-card-button {
    background: linear-gradient(135deg, #4f46e5, #4338ca);
    color: #fff;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s;
}

.product-card-button:hover {
    filter: brightness(1.2);
    transform: scale(1.02);
}

.offer-note {
    margin-top: 25px;
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

@media (max-width: 768px) {
    .intro-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .spread-grid {
        grid-template-columns: 1fr;
    }

    .product-card-container {
        grid-template-columns: 1fr;
    }
}