/* Mystical & Premium Aesthetic for Naturalpyideindia */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Cinzel:wght@600&display=swap');

/* Typography for Trust & Elegance */
h1, h2, h3, h4, h5, h6, .title, .section-header .title {
    font-family: 'Playfair Display', serif !important;
    color: #270b55 !important; /* Deep Amethyst Purple */
}

.text--base, .base--color {
    color: #D4AF37 !important; /* Deep Gold */
}

/* Cosmic & Mystical Buttons */
.cmn--btn, .cmn--btn-2, .btn--base, .purchaseBtn {
    background-color: #D4AF37 !important;
    color: #1a063b !important; /* Very dark purple contrast */
    border: 1px solid #D4AF37 !important;
    box-shadow: 0 4px 18px rgba(212, 175, 55, 0.4) !important;
    transition: all 0.4s ease !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Cinzel', serif !important;
    font-weight: 600;
}

.cmn--btn:hover, .cmn--btn-2:hover, .btn--base:hover, .purchaseBtn:hover {
    background-color: #270b55 !important;
    color: #D4AF37 !important; /* Gold text */
    border-color: #270b55 !important;
    box-shadow: 0 4px 20px rgba(39, 11, 85, 0.4) !important;
}

/* "Energized" Product Cards */
.product-item {
    border: 1px solid transparent !important;
    border-radius: 12px;
    transition: all 0.4s ease;
    background: #fff;
    overflow: hidden;
}

.product-item:hover {
    border-color: #D4AF37 !important;
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.25) !important;
    transform: translateY(-5px);
}

.product-item .product-title a {
    font-family: 'Playfair Display', serif !important;
    font-weight: 600;
    color: #270b55 !important;
}

.product-item .product-price .current-price {
    color: #D4AF37 !important;
    font-weight: 800;
}

/* Trust Badges on Product Details */
.trust-badges-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px dashed #e1e1e1;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #270b55;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    background: #fafafa;
    padding: 8px 14px;
    border-radius: 6px;
    border: 1px solid #f0f0f0;
}

.trust-badge i {
    color: #D4AF37;
    font-size: 1.6rem;
}

/* Animated Glow for Important Accents */
@keyframes goldGlow {
    0% { box-shadow: 0 0 5px rgba(212,175,55,0.2); }
    50% { box-shadow: 0 0 15px rgba(212,175,55,0.6); }
    100% { box-shadow: 0 0 5px rgba(212,175,55,0.2); }
}

/* Enhanced Genealogy Tree Reskin */
.tree-view .user {
    border: 2px solid #D4AF37 !important;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2) !important;
    border-radius: 10px;
    overflow: hidden;
}

.tree-view .user.paid-user {
    border-color: #50C878 !important; /* Emerald green for paid/active */
    box-shadow: 0 5px 15px rgba(80, 200, 120, 0.2) !important;
}
.tree-view .user.free-user {
    border-color: #a0a0a0 !important;
}
.tree-view .user .user-name {
    background-color: #270b55 !important;
    color: #D4AF37 !important;
    font-family: 'Playfair Display', serif !important;
    padding: 8px !important;
}
.tree-view .user.paid-user .user-name {
    background-color: #50C878 !important;
    color: #fff !important;
}
