/* Remove old Google Font Import */
/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap'); */

/* Font Imports handled in HTML */

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

:root {
    /* Updated color palette to black and gold */
    --purple-bg: #000000; /* Pure black instead of purple */
    --purple-gradient-end: #121212; /* Very dark gray, almost black */
    --gold: #d4af37; /* Keeping the same gold */
    --light-gold: #f0e68c; /* Keeping the same light gold */
    --text-subtle: #b8b8b8; /* Lighter gray that works better on black */
    --white-accent: #ffffff;
}

/* Enhanced mystical background with multiple dust layers */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: 
        /* Large sparkles */
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 3px),
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.2) 0%, transparent 2px),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 2px),
        /* Medium sparkles */
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 2px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.2) 0%, transparent 2px),
        /* Small sparkles */
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.15) 0%, transparent 1px),
        radial-gradient(circle at 60% 40%, rgba(255, 255, 255, 0.15) 0%, transparent 1px);
    background-size: 
        150px 150px,
        100px 100px,
        100px 100px,
        80px 80px,
        80px 80px,
        50px 50px,
        50px 50px;
    animation: sparkleFloat 60s linear infinite;
    z-index: 0;
    opacity: 0.6;
}

/* Add a second dust layer with different timing */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: 
        /* Gold tinted sparkles */
        radial-gradient(circle at 45% 45%, rgba(212, 175, 55, 0.2) 0%, transparent 2px),
        radial-gradient(circle at 25% 65%, rgba(212, 175, 55, 0.15) 0%, transparent 1px),
        radial-gradient(circle at 75% 35%, rgba(212, 175, 55, 0.15) 0%, transparent 1px),
        /* White sparkles */
        radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.2) 0%, transparent 1px),
        radial-gradient(circle at 85% 85%, rgba(255, 255, 255, 0.2) 0%, transparent 1px);
    background-size: 
        120px 120px,
        70px 70px,
        70px 70px,
        40px 40px,
        40px 40px;
    animation: sparkleFloat2 45s linear infinite;
    z-index: 0;
    opacity: 0.5;
}

/* Add floating particles */
.mystical-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: particleFloat 20s infinite linear;
}

/* Enhanced sparkle animations */
@keyframes sparkleFloat {
    0% {
        background-position: 
            0 0,
            0 0,
            0 0,
            0 0,
            0 0,
            0 0,
            0 0;
    }
    100% {
        background-position: 
            150px 150px,
            100px -100px,
            -100px 100px,
            80px -80px,
            -80px 80px,
            50px -50px,
            -50px 50px;
    }
}

@keyframes sparkleFloat2 {
    0% {
        background-position: 
            0 0,
            0 0,
            0 0,
            0 0,
            0 0;
    }
    100% {
        background-position: 
            -120px -120px,
            70px -70px,
            -70px 70px,
            40px -40px,
            -40px 40px;
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

/* Add particle generation */
.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { left: 40%; animation-delay: 6s; }
.particle:nth-child(5) { left: 50%; animation-delay: 8s; }
.particle:nth-child(6) { left: 60%; animation-delay: 10s; }
.particle:nth-child(7) { left: 70%; animation-delay: 12s; }
.particle:nth-child(8) { left: 80%; animation-delay: 14s; }
.particle:nth-child(9) { left: 90%; animation-delay: 16s; }
.particle:nth-child(10) { left: 95%; animation-delay: 18s; }

body {
    background: linear-gradient(135deg, var(--purple-bg), var(--purple-gradient-end));
    position: relative;
    font-family: 'Lato', sans-serif; /* Default Sans-serif */
    line-height: 1.7;
    color: var(--text-subtle);
}

/* Add mystical dust effect */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 1px),
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 1px),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.06) 0%, transparent 1px);
    background-size: 
        30px 30px,
        40px 40px,
        50px 50px;
    animation: dustFloat 60s linear infinite;
    z-index: 0;
}

/* Dust animation */
@keyframes dustFloat {
    0% {
        background-position: 0 0, 0 0, 0 0;
    }
    100% {
        background-position: 100px 100px, -100px 200px, 200px -100px;
    }
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 28px auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 25px auto;
    border-radius: 8px; /* Slightly rounded */
    box-shadow: none; /* Remove shadow */
}

.logo {
    width: 300px;
    height: auto;
    display: block;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

/* Media queries for logo responsiveness */
@media (max-width: 480px) {
    .logo {
        width: 216px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .logo {
        width: 264px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .logo {
        width: 312px;
    }
}

@media (min-width: 1025px) {
    .logo {
        width: 360px;
    }
}

h1, h2, h3 {
    margin-bottom: 15px;
    text-align: center;
    font-family: 'Playfair Display', serif; /* Serif for headings */
    color: var(--gold);
    font-weight: 700;
    position: relative;
}

/* Remove old heading underlines */
h1::after, h2::after, h3::after {
    content: none;
}

p {
    margin-bottom: 20px;
    text-align: center;
    padding: 0 15px;
    color: var(--text-subtle);
    font-size: 1em;
    max-width: 650px; /* Limit paragraph width */
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section Enhancements */
.hero {
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.95), 
        rgba(18, 18, 18, 0.95)
    );
    border-top: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.hero-top {
    margin-bottom: 1rem;
}

.hero-symbol {
    font-size: 2em;
    color: var(--gold);
    margin-bottom: 1rem;
    animation: pulse 2s infinite ease-in-out;
}

.hero h1 {
    font-size: 4.5em;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    animation: fadeInDown 1.5s ease-out;
}

.hero-tagline {
    font-size: 1.5em;
    color: var(--light-gold);
    margin: 1rem 0;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    animation: fadeIn 2s ease-out;
    font-family: 'Playfair Display', serif;
}

/* Value Propositions */
.hero-value-props {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.value-prop {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.6);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    border: 1px solid var(--gold);
    animation: fadeIn 0.5s ease-out forwards;
}

.value-prop:nth-child(2) {
    animation-delay: 0.2s;
}

.value-prop:nth-child(3) {
    animation-delay: 0.4s;
}

.value-icon {
    font-size: 1.2em;
}

.value-prop p {
    margin: 0;
    color: var(--light-gold);
    font-size: 1em;
    padding: 0;
}

/* Enhanced Card Display */
.card-label {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: #000000;
    font-family: 'Playfair Display', serif;
    font-size: 0.9em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.hero-cta {
    margin: 2rem 0;
    animation: fadeIn 1s ease-out 0.5s forwards;
    opacity: 0;
}

.hero-price {
    font-size: 1.2em;
    color: var(--light-gold);
    margin-bottom: 1rem;
}

.hero-price span {
    font-size: 1.4em;
    color: var(--gold);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.session-info {
    color: var(--text-subtle);
    font-size: 0.9em;
    margin-top: 0.5rem;
}

/* Trust Indicators */
.hero-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: fadeIn 0.5s ease-out forwards;
    opacity: 0;
}

.trust-item:nth-child(2) {
    animation-delay: 0.2s;
}

.trust-item:nth-child(3) {
    animation-delay: 0.4s;
}

.trust-icon {
    color: var(--gold);
    font-size: 1.2em;
}

.trust-item p {
    margin: 0;
    color: var(--text-subtle);
    font-size: 0.9em;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 40px 20px;
    }

    .hero h1 {
        font-size: 3em;
    }

    .hero-tagline {
        font-size: 1.2em;
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-value-props {
        flex-direction: column;
        gap: 1rem;
    }

    .value-prop {
        width: 100%;
        justify-content: center;
    }

    .hero-trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .card-spread {
        transform: scale(0.8);
    }
}

/* Animation for value props and trust items */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sacred Geometry */
.sacred-geometry {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    opacity: 0.1;
    pointer-events: none;
}

.circle, .triangle, .square {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid var(--gold);
}

.circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.triangle {
    width: 0;
    height: 0;
    border-left: 200px solid transparent;
    border-right: 200px solid transparent;
    border-bottom: 346px solid transparent;
    border: 1px solid var(--gold);
    animation: rotate 25s linear infinite reverse;
}

.square {
    width: 250px;
    height: 250px;
    animation: rotate 30s linear infinite;
}

/* Card Spread */
.hero-cards {
    position: relative;
    margin: 3rem auto;
    height: 200px;
    perspective: 1000px;
}

.card-spread {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.tarot-card {
    width: 120px;
    height: 200px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 1s ease-in-out;
}

.card-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--gold), var(--light-gold));
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    border: 1px solid var(--gold);
}

.card-past {
    transform: translateX(-50px) rotateY(-15deg);
    animation: cardFloat 3s ease-in-out infinite;
}

.card-present {
    transform: translateY(-20px);
    animation: cardFloat 3s ease-in-out infinite 0.5s;
}

.card-future {
    transform: translateX(50px) rotateY(15deg);
    animation: cardFloat 3s ease-in-out infinite 1s;
}

.ethereal-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    filter: blur(20px);
    animation: glowPulse 4s ease-in-out infinite;
}

/* Constellation Background */
.constellation-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at center, var(--gold) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.1;
    animation: twinkle 3s infinite alternate;
}

/* Decorative Elements */
.mystical-decorations {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.decoration {
    color: var(--gold);
    font-size: 1.5em;
    opacity: 0.8;
    animation: float 3s ease-in-out infinite;
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

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

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes twinkle {
    0% { opacity: 0.05; }
    100% { opacity: 0.15; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Media Queries */
@media (min-width: 768px) {
    /* ... remove .container adjustments ... */

    .hero {
        padding: 100px 40px 80px;
        margin-bottom: 80px;
    }

    .hero h1 {
        font-size: 5.5em;
    }

    section {
        margin-bottom: 160px;
        padding: 100px 40px;
    }

    .tarot-card-image {
        max-height: 320px;
    }
}

/* Sections */
section {
    margin-bottom: 120px;
    border: none;
    position: relative;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(0, 0, 0, 0.4),
        transparent
    );
}

/* Use pseudo-elements for section dividers */
section:not(:first-of-type)::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 500px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0.5;
}

main section:first-of-type {
    padding-top: 0;
}

.card-swiper-section .container {
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
    width: 100%;
    max-width: none;
    margin: 0;
}

.card-swiper-section h2 {
    margin-bottom: 40px;
}

.cardSwiper {
    padding: 2rem 0;
    overflow: hidden;
    position: relative;
}

/* Style swiper slides like reference image frames */
.swiper-slide {
    transition: all 0.3s ease;
    transform: scale(0.8) translateX(0);
    opacity: 0.5;
    border-radius: 15px;
    overflow: hidden;
}

.swiper-slide-active {
    transform: scale(1);
    opacity: 1;
    z-index: 2;
}

.swiper-slide-prev {
    transform: scale(0.8) translateX(5%) rotate(-5deg);
}

.swiper-slide-next {
    transform: scale(0.8) translateX(-5%) rotate(5deg);
}

.tarot-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Adjust navigation buttons to be more visible */
.swiper-button-next,
.swiper-button-prev {
    color: var(--gold);
    background: rgba(0, 0, 0, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    backdrop-filter: blur(3px);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
}

.swiper-pagination-bullet {
    background: var(--gold);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* Product Section */
.product-details {
    text-align: center;
    padding: 30px 0;
    position: relative;
}

.product-image-container {
    position: relative;
    width: 300px;
    height: 450px;
    margin: 40px auto;
    /* Create stacking context for z-index */
    transform-style: preserve-3d;
}

/* Light rays effect */
.product-image-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 140%;
    transform: translate(-50%, -50%);
    background: repeating-conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 20deg,
        rgba(212, 175, 55, 0.1) 21deg,
        transparent 22deg
    );
    z-index: -1;
    animation: rotate 60s linear infinite;
}

/* Additional glow effect */
.product-image-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        circle at center,
        rgba(212, 175, 55, 0.2) 0%,
        transparent 70%
    );
    z-index: -2;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    position: relative;
    z-index: 1;
    border: 2px solid var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Enhance the section for better effect visibility */
.product {
    background: transparent;
    position: relative;
    overflow: hidden;
    padding-top: 40px;
    padding-bottom: 40px;
}

.price {
    font-size: 2.5em;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    margin-bottom: 30px;
    text-shadow: none;
}

/* Styles for the different product types */
.basic-product {
    background: transparent;
    margin-bottom: 0;
    padding-bottom: 60px;
    position: relative;
    z-index: 1;
}

.specialized-product {
    background: transparent;
    margin-top: 0;
    padding-top: 60px;
    position: relative;
    z-index: 0;
    border-top: none;
}

/* Create smooth connection between products */
.basic-product::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    height: 60px;
    background: transparent;
    z-index: 2;
}

.basic-product .product-image-container::before {
    animation-duration: 80s;
}

.specialized-product .product-image-container::before {
    background: repeating-conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 15deg,
        rgba(212, 175, 55, 0.15) 16deg,
        transparent 17deg
    );
}

.specialized-product::before {
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-element {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--gold);
    opacity: 0.1;
    border-radius: 50%;
    animation: float 8s infinite ease-in-out;
}

/* Enhance card swiper section */
.card-swiper-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        to bottom,
        var(--purple-bg),
        rgba(18, 18, 18, 0.95),
        var(--purple-bg)
    );
    padding: 5em 0 7em 0;
}

.card-swiper-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 50% 50%, 
            rgba(212, 175, 55, 0.1) 0%, 
            transparent 60%);
    pointer-events: none;
}

/* Style the swiper navigation for more mystical look */
.swiper-button-next,
.swiper-button-prev {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--gold);
    backdrop-filter: blur(4px);
}

.swiper-pagination-bullet {
    background: var(--gold);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

/* Mystical Symbols */
.mystical-symbol {
    text-align: center;
    font-size: 24px;
    color: var(--gold);
    margin: 20px 0;
    opacity: 0.6;
}

.hero-subtitle {
    color: var(--gold);
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.2em;
    margin-top: 10px;
    opacity: 0.8;
    letter-spacing: 2px;
}

/* Footer Symbols */
.footer-symbols {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.footer-symbols a {
    color: var(--text-color);
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-symbols a:hover {
    color: var(--accent-color);
}

/* Mystical Border */
.mystical-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    border: 1px solid var(--gold);
    opacity: 0.3;
}

.mystical-border::before,
.mystical-border::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1px solid var(--gold);
}

.mystical-border::before {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.mystical-border::after {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}

/* Enhanced Button Styles */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.2));
    color: var(--gold);
    padding: 12px 28px;
    border: 1px solid var(--gold);
    border-radius: 30px;
    font-size: 0.95em;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin: 10px 0;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--gold), #e5c76b);
    color: #000000;
    border-color: var(--gold);
    box-shadow: 0 0 15px var(--gold), 0 0 30px rgba(212, 175, 55, 0.3);
    transform: translateY(-3px);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.6s ease;
    transform: scale(0.5);
    z-index: 0;
}

.cta-button:hover::before {
    opacity: 0.2;
    transform: scale(1);
}

.cta-button::after {
    content: '★';
    position: absolute;
    font-size: 8px;
    opacity: 0;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    color: var(--purple-bg);
    transition: all 0.4s ease;
}

.cta-button:hover::after {
    opacity: 1;
    left: 25px;
}

.cta-button .button-text {
    position: relative;
    z-index: 1;
    display: inline-block;
    transition: transform 0.3s ease;
}

.cta-button:hover .button-text {
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5em;
    }

    .mystical-symbol {
        font-size: 32px;
    }

    .footer-symbols {
        gap: 30px;
    }

    .footer-symbols a {
        font-size: 20px;
    }
}

/* Mobile button spacing */
@media (max-width: 768px) {
    /* Increased button spacing on mobile */
    .cta-button {
        margin: 20px 0;
        display: block;
        width: 80%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Add more padding to product sections to give buttons more room */
    .product-details {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    /* Increase spacing for swiper navigation buttons */
    .swiper-button-next,
    .swiper-button-prev {
        width: 48px;
        height: 48px;
        margin-top: -24px;
    }
    
    /* Increase spacing between testimonial slides */
    .testimonialSwiper {
        padding: 0 30px;
    }
    
    .testimonialSwiper .swiper-button-next {
        right: 5px;
    }
    
    .testimonialSwiper .swiper-button-prev {
        left: 5px;
    }
    
    /* Increase margin between testimonials */
    .testimonial {
        padding: 1.5rem 0.5rem;
    }
}

/* Power of Tarot Section Styles */
.importance {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(
        to bottom,
        var(--purple-bg),
        rgba(18, 18, 18, 0.95),
        var(--purple-bg)
    );
}

.tarot-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--gold);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.1);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    font-size: 2.5em;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--gold), var(--light-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.benefit-card h3 {
    color: var(--gold);
    font-size: 1.5em;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.benefit-card p {
    color: var(--text-subtle);
    font-size: 1em;
    line-height: 1.6;
}

/* Expertise Section */
.tarot-expertise {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin: 4rem 0;
    align-items: center;
}

@media (min-width: 768px) {
    .tarot-expertise {
        grid-template-columns: 1fr 1fr;
    }
}

.expertise-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.ritual-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.5s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.8));
}

.expertise-content {
    padding: 2rem;
}

.expertise-content h3 {
    color: var(--gold);
    font-size: 2em;
    margin-bottom: 2rem;
    text-align: left;
}

.expertise-list {
    list-style: none;
    padding: 0;
}

.expertise-list li {
    color: var(--text-subtle);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-size: 1.1em;
}

.check-mark {
    color: var(--gold);
    margin-right: 1rem;
    font-size: 1.2em;
}

/* Testimonial Styles */
.testimonial-slider {
    margin: 4rem 0 2rem;
    padding: 2rem;
    position: relative;
}

.testimonial {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
}

.testimonial::before,
.testimonial::after {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 4em;
    color: var(--gold);
    opacity: 0.3;
    position: absolute;
}

.testimonial::before {
    top: -20px;
    left: 0;
}

.testimonial::after {
    bottom: -60px;
    right: 0;
}

.testimonial-text {
    font-size: 1.3em;
    color: var(--text-subtle);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    color: var(--gold);
    font-size: 1.1em;
    margin-bottom: 0.5rem;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.2em;
    letter-spacing: 5px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .tarot-benefits {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .expertise-content h3 {
        font-size: 1.5em;
    }

    .testimonial-text {
        font-size: 1.1em;
    }
}

/* Animation for benefit cards */
@keyframes cardEntrance {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-card {
    animation: cardEntrance 0.8s ease-out forwards;
}

.benefit-card:nth-child(2) {
    animation-delay: 0.2s;
}

.benefit-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Add shimmer effect to benefit cards */
.benefit-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.03),
        transparent
    );
    transform: rotate(45deg);
    animation: shimmer 6s linear infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* Card swiper section styling */
.card-swiper-section {
    position: relative;
    z-index: 1;
}

/* Products section styles */
.products-section {
    background: transparent;
    position: relative;
    overflow: hidden;
    padding: 40px 0 60px;
}

.products-row {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Completely eliminate gap between products on mobile */
@media (max-width: 768px) {
    .products-row {
        gap: 0; /* Completely eliminate the gap */
        margin-bottom: 40px;
    }
    
    /* Remove spacing between products */
    .basic-product {
        padding-bottom: 0;
        margin-bottom: 0;
    }
    
    .specialized-product {
        padding-top: 0;
        margin-top: -20px; /* Negative margin to pull it up closer to basic product */
    }

    /* Remove section connection visual elements */
    .basic-product::after {
        display: none;
    }
}

/* Responsive layout for products */
@media (min-width: 768px) {
    .products-row {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 30px;
    }
    
    .product {
        flex: 1;
        max-width: 500px;
        position: relative;
    }
    
    .basic-product, .specialized-product {
        margin: 0;
        padding: 30px 20px;
        border-radius: 10px;
        border: 1px solid rgba(212, 175, 55, 0.15);
        backdrop-filter: blur(4px);
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
    }
    
    .basic-product::before, .specialized-product::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 80%);
        border-radius: 10px;
        pointer-events: none;
    }
    
    .specialized-product::before {
        top: 0;
        width: 100%;
        background: radial-gradient(circle at center, rgba(212, 175, 55, 0.08) 0%, transparent 80%);
    }
}

/* Products connector between the two products */
.products-connector {
    display: none;
}

@media (min-width: 768px) {
    .products-connector {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
        border-radius: 50%;
        border: 1px solid rgba(212, 175, 55, 0.3);
        color: var(--gold);
        font-size: 1.5em;
        align-self: center;
        margin: 0 -15px;
        z-index: 2;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    }
}

/* Basic product card styles */
.basic-product .product-details {
    padding-bottom: 40px;
}

.specialized-product .product-details {
    padding-top: 40px;
}

.basic-product .price {
    font-size: 2.2em;
}

.specialized-product .price {
    font-size: 2.7em;
}

/* Additional spacing for cleaner look */
.product .container {
    padding: 0 30px;
}

@media (max-width: 768px) {
    .product-image-container {
        width: 250px;
        height: 375px;
    }
    
    .basic-product .price,
    .specialized-product .price {
        font-size: 2em;
    }
    
    .basic-product {
        padding-bottom: 50px;
    }
    
    .specialized-product {
        padding-top: 50px;
    }
}

/* Founder Section */
.founder {
    position: relative;
    padding: 100px 0;
    text-align: center;
}

.founder-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 20px auto 30px;
    border: 2px solid var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.founder h3 {
    color: var(--gold);
    font-size: 1.8em;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.founder p {
    color: var(--text-subtle);
    font-size: 1.1em;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
} 