/* --- Thazin Tarot V4: Soft Ethereal & Girly --- */

:root {
    --bg-cream: #fff9f9;
    --bg-white: #ffffff;
    --primary-rose: #e0aeb6;
    --primary-rose-dark: #c58f99;
    --text-dark: #5e4b52;
    --text-light: #5d4a51;
    --gold-accent: #d4af37;
    --gradient-soft: linear-gradient(135deg, #fff0f3 0%, #fff9f0 100%);
    --shadow-soft: 0 15px 35px rgba(224, 174, 182, 0.15);
    --border-radius: 25px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-cream);
    color: var(--text-dark);
    font-family: 'Quicksand', sans-serif;
    overflow-x: hidden;
    line-height: 1.7;
}

/* --- Floating Background Blobs --- */
body::before, body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
    animation: float 10s infinite ease-in-out;
}

body::before {
    width: 500px; height: 500px;
    background: #ffe3e8;
    top: -100px; left: -100px;
}

body::after {
    width: 400px; height: 400px;
    background: #fff5d7;
    bottom: -50px; right: -50px;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 50px); }
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
}

.script-font {
    font-family: 'Great Vibes', cursive;
    color: var(--primary-rose-dark);
    font-weight: 400;
}

a { text-decoration: none; color: inherit; transition: all 0.3s; }

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0; width: 100%;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-dark);
}

.logo span { color: var(--primary-rose-dark); }

.nav-links { display: flex; gap: 20px; }
.nav-links a {
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
}
.nav-links a:hover { color: var(--primary-rose-dark); }
.mobile-menu-btn { display: none; color: var(--text-dark); font-size: 1.5rem; }

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    background: radial-gradient(circle at center, rgba(255,255,255,0.8), transparent);
}

.hero-content {
    max-width: 800px;
    animation: fadeIn 1s ease-out;
}

.hero-subtitle {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.05);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title span {
    background: linear-gradient(120deg, var(--primary-rose-dark), var(--gold-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* --- Buttons --- */
.btn-rose {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-rose);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(224, 174, 182, 0.4);
    transform: translateY(0);
}

.btn-rose:hover {
    background: var(--primary-rose-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(224, 174, 182, 0.6);
}

/* --- Product Section --- */
.product-section {
    padding: 100px 0;
    position: relative;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
}

.product-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 60px;
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    border: 1px solid #fff0f5;
}

.product-image-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.product-img:hover { transform: scale(1.03); }

.product-info h2 { font-size: 2.5rem; margin-bottom: 20px; }
.product-price { 
    font-size: 2rem; 
    color: var(--primary-rose-dark); 
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 20px;
}

.features-list { list-style: none; margin-bottom: 30px; }
.features-list li {
    margin-bottom: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
}
.features-list li i {
    color: var(--primary-rose);
    margin-right: 15px;
    font-size: 1.1rem;
}

/* Pricing Buttons */
.price-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    border: 2px solid var(--primary-rose);
    border-radius: 15px;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s;
    background: white;
    position: relative;
    text-align: left;
    overflow: hidden; /* For shimmer effect */
}

/* Shimmer Effect */
.price-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    20% { left: 200%; } /* Fast pass */
    100% { left: 200%; } /* Wait */
}

.price-btn .emoji { margin-right: 15px; font-size: 1.2rem; }
.price-btn .label { flex-grow: 1; }
.price-btn .price { font-weight: bold; color: var(--primary-rose-dark); }

.price-btn:hover {
    background: #fff0f5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(224, 174, 182, 0.3);
}

.price-btn.popular {
    background: linear-gradient(135deg, #fff0f3 0%, #fff 100%);
    border-color: var(--primary-rose-dark);
    box-shadow: 0 8px 20px rgba(224, 174, 182, 0.2);
}

.badge-pop {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary-rose-dark);
    color: white;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.5px;
}

/* How it Works Icons Animation */
.step-item i {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-item:hover i {
    transform: scale(1.2) rotate(5deg);
    color: var(--primary-rose-dark);
}

/* --- About Section --- */
.about-section {
    padding: 100px 0;
    text-align: center;
    background: #fff;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.profile-circle {
    width: 200px; height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 30px;
    border: 5px solid #fff0f5;
    box-shadow: var(--shadow-soft);
}

/* --- FAQ Grid --- */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid #f9f9f9;
    transition: transform 0.3s;
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-rose);
}

.faq-item h3 { font-size: 1.2rem; margin-bottom: 15px; color: var(--text-dark); display: block; }
.faq-item p { font-size: 0.95rem; color: var(--text-light); }

/* --- Footer --- */
footer {
    background: #fffbf7;
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #eee;
    padding-bottom: 100px; /* Space for sticky button */
}

.social-icons a {
    display: inline-flex;
    width: 45px; height: 45px;
    background: #fff;
    color: var(--primary-rose-dark);
    border-radius: 50%;
    align-items: center; justify-content: center;
    margin: 0 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--primary-rose);
    color: #fff;
    transform: translateY(-3px);
}

/* Sticky Mobile Button */
.sticky-buy-btn {
    display: none; /* Hidden on desktop */
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background: var(--primary-rose);
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(224, 174, 182, 0.5);
    font-weight: 600;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translate(-50%, 20px);
}

.sticky-buy-btn.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile */
@media (max-width: 1200px) {
    .product-card { grid-template-columns: 1fr; text-align: center; padding: 30px; }
    
    /* Fix for vertical image on mobile */
    .product-image-container { max-height: 450px; }
    .product-img { object-fit: cover; object-position: center top; }
    
    .features-list { text-align: left; display: inline-block; }
    
    .nav-links { 
        display: none; 
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        text-align: center;
    }

    .nav-links.active {
        display: flex;
        animation: fadeIn 0.3s ease-out;
    }

    .mobile-menu-btn { display: block; cursor: pointer; }
    .hero-title { font-size: 2.5rem; }
    
    .sticky-buy-btn { display: block; } /* Show on mobile */
}