/* Store Page Styles - Emotional & Conversion-Focused */

/* Hero Section */
.store-hero-new {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    overflow: hidden;
}

.store-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 30%, #1e3a5f 60%, #0d1b2a 100%);
    z-index: 0;
}

.store-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(236, 72, 153, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(251, 191, 36, 0.1) 0%, transparent 60%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

.store-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
}

.store-hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(236, 72, 153, 0.2));
    border: 1px solid rgba(251, 191, 36, 0.4);
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    color: #fbbf24;
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

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

.store-hero-new h1 {
    font-size: 3.2rem;
    font-weight: 300;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 30px;
}

.store-hero-new h1 .gradient-text {
    background: linear-gradient(135deg, #fbbf24, #ec4899, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.store-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 50px;
}

.store-hero-ana {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    max-width: 700px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.store-ana-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(236, 72, 153, 0.5);
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.3);
    flex-shrink: 0;
}

.store-ana-intro {
    text-align: left;
}

.store-ana-intro p {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 10px;
}

.store-ana-name {
    color: #fbbf24;
    font-weight: 600;
}

/* What to Expect Section */
.store-expect {
    padding: 100px 20px;
    background: linear-gradient(180deg, #0d1b2a 0%, #1a0a2e 100%);
}

.store-expect h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 60px;
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.expect-card:hover {
    transform: translateY(-10px);
    border-color: rgba(236, 72, 153, 0.4);
    box-shadow: 0 20px 40px rgba(236, 72, 153, 0.1);
}

.expect-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.expect-card h3 {
    color: #fbbf24;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.expect-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* This Is For You Section */
.store-for-you {
    padding: 100px 20px;
    background: linear-gradient(135deg, #2d1b4e 0%, #1a0a2e 100%);
}

.for-you-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.for-you-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.for-you-text h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 30px;
}

.for-you-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.for-you-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 18px;
}

.for-you-list .check {
    color: #10b981;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.for-you-note {
    background: rgba(251, 191, 36, 0.1);
    border-left: 3px solid #fbbf24;
    padding: 20px;
    border-radius: 0 10px 10px 0;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    line-height: 1.7;
}

/* Readings Section */
.store-readings {
    padding: 100px 20px;
    background: linear-gradient(180deg, #1a0a2e 0%, #0d1b2a 50%, #1a0a2e 100%);
}

.store-readings .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.store-readings h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.readings-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.reading-card-new {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px 30px;
    position: relative;
    transition: all 0.3s ease;
}

.reading-card-new:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

.reading-card-new.featured {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(236, 72, 153, 0.1));
    border-color: rgba(236, 72, 153, 0.4);
    transform: scale(1.03);
}

.reading-card-new.featured:hover {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.reading-card-header {
    margin-bottom: 20px;
}

.reading-duration {
    display: inline-block;
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.reading-card-header h3 {
    color: #fff;
    font-size: 1.4rem;
    margin: 0;
}

.reading-card-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.reading-card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.reading-card-features li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.reading-card-features li::before {
    content: '✨';
    font-size: 0.8rem;
}

.reading-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.reading-price-new {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.book-btn-new {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-btn-new:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.book-btn-new.featured-btn {
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.4); }
    50% { box-shadow: 0 0 20px 10px rgba(236, 72, 153, 0); }
}

.reading-card-ideal {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-style: italic;
    margin: 0;
}

/* Testimonials Section */
.store-testimonials {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1e3a5f 0%, #1a0a2e 100%);
}

.store-testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.testimonials-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card-new {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.testimonial-card-new:hover {
    transform: translateY(-5px);
    border-color: rgba(251, 191, 36, 0.3);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-name {
    color: #fbbf24;
    font-weight: 600;
}

.author-context {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* FAQ Section */
.store-faq {
    padding: 100px 20px;
    background: linear-gradient(180deg, #1a0a2e 0%, #2d1b4e 100%);
}

.store-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 60px;
}

.faq-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item-new {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.faq-item-new:hover {
    border-color: rgba(139, 92, 246, 0.3);
}

.faq-item-new h3 {
    color: #fbbf24;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.faq-item-new p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Final CTA Section */
.store-final-cta {
    padding: 120px 20px;
    background: linear-gradient(135deg, #2d1b4e 0%, #1a0a2e 50%, #1e3a5f 100%);
    position: relative;
    overflow: hidden;
}

.store-final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(236, 72, 153, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(139, 92, 246, 0.2) 0%, transparent 50%);
    animation: ctaGlow 6s ease-in-out infinite alternate;
}

@keyframes ctaGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.final-cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 25px;
}

.final-cta-content > p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.final-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0 30px;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    color: #fff;
    padding: 18px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.5);
}

.cta-btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 16px 35px;
    border-radius: 30px;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
    border-color: #fbbf24;
    color: #fbbf24;
}

.final-cta-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    font-style: italic;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .expect-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .readings-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reading-card-new.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .store-hero-new h1 {
        font-size: 2.2rem;
    }
    
    .store-hero-subtitle {
        font-size: 1rem;
    }
    
    .store-hero-ana {
        flex-direction: column;
        text-align: center;
    }
    
    .store-ana-intro {
        text-align: center;
    }
    
    .expect-grid {
        grid-template-columns: 1fr;
    }
    
    .for-you-content {
        grid-template-columns: 1fr;
    }
    
    .for-you-image {
        order: -1;
    }
    
    .readings-grid-new {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid-new {
        grid-template-columns: 1fr;
    }
    
    .faq-grid-new {
        grid-template-columns: 1fr;
    }
    
    .final-cta-content h2 {
        font-size: 2rem;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .store-hero-new {
        padding: 100px 15px 60px;
    }
    
    .store-hero-new h1 {
        font-size: 1.8rem;
    }
    
    .store-hero-ana {
        padding: 20px;
    }
    
    .reading-card-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .book-btn-new {
        width: 100%;
        text-align: center;
    }
}
