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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #f9fafb;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
header {
    background: white;
    border-bottom: 3px solid #f59e0b;
    box-shadow: 0 4px 6px rgba(245, 158, 11, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    max-width: 1280px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 12px;
    display: flex;
    align-items: flex-end;
    gap: 2px;
    padding: 8px;
}

.sound-bar {
    width: 4px;
    background: white;
    border-radius: 2px;
    animation: soundWave 1s ease-in-out infinite;
}

.sound-bar:nth-child(1) { height: 12px; animation-delay: 0s; }
.sound-bar:nth-child(2) { height: 24px; animation-delay: 0.2s; }
.sound-bar:nth-child(3) { height: 16px; animation-delay: 0.4s; }
.sound-bar:nth-child(4) { height: 20px; animation-delay: 0.6s; }
.sound-bar:nth-child(5) { height: 12px; animation-delay: 0.8s; }

@keyframes soundWave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.5); }
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.lakshmi {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.black {
    color: #1f2937;
}

.logo-text p {
    font-size: 0.625rem;
    color: #f59e0b;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.header-cta {
    background: #22c55e;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.header-cta:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

/* Breadcrumb */
.breadcrumb {
    padding: 1rem;
    background: white;
    border-bottom: 1px solid #f3f4f6;
}

.breadcrumb-nav {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.breadcrumb-nav a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-nav a:hover {
    color: #f59e0b;
}

.breadcrumb-nav span {
    color: #6b7280;
}

/* Product Section */
.product-section {
    padding: 3rem 1rem;
    background: white;
}

.product-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

/* Image Gallery */
.image-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image {
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    border: 2px solid #e5e7eb;
    background: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.thumbnail {
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    background: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%);
    aspect-ratio: 1;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #f97316;
    transform: translateY(-2px);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.product-info h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.product-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.badge-container {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.mantra-count-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
}

.diwali-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.review-count {
    color: #6b7280;
    font-size: 0.875rem;
}

.product-price {
    font-size: 3rem;
    font-weight: 800;
    color: #f59e0b;
    margin-bottom: 0.5rem;
}

.price-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #10b981;
    font-weight: 600;
    margin-bottom: 2rem;
}

.product-description {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-whatsapp {
    background: #22c55e;
    color: white;
    flex: 1;
}

.btn-whatsapp:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(34, 197, 94, 0.3);
}

.btn-call {
    background: #f59e0b;
    color: white;
    flex: 1;
}

.btn-call:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(245, 158, 11, 0.3);
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background: #fef3c7;
    border-radius: 0.75rem;
}

.trust-badge span {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-top: 0.5rem;
}

/* Mantras Section */
.mantras-section {
    padding: 4rem 1rem;
    background: #f9fafb;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.mantra-list {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mantra-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s;
}

.mantra-card:hover {
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.15);
    transform: translateY(-4px);
}

.featured-track {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
}

.mantra-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
}

.mantra-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.mantra-text {
    color: #f59e0b;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.mantra-content p {
    color: #4b5563;
    line-height: 1.7;
}

/* Features Section */
.features-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fef3c7 100%);
}

.features-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(245, 158, 11, 0.2);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #4b5563;
    line-height: 1.7;
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 1rem;
    background: white;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 1.5rem;
    background: #fef3c7;
    border: 2px solid #fbbf24;
    border-radius: 0.75rem;
}

.disclaimer-box h4 {
    color: #92400e;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.disclaimer-box p {
    color: #78350f;
    line-height: 1.7;
}

.benefits-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.benefit-card {
    background: linear-gradient(135deg, #fef3c7 0%, white 100%);
    border-radius: 1rem;
    padding: 2rem;
    border: 2px solid #fde68a;
    transition: all 0.3s;
}

.benefit-card:hover {
    border-color: #f59e0b;
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(245, 158, 11, 0.15);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: #4b5563;
    line-height: 1.7;
}

/* How It Works Section */
.how-it-works-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.steps-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.step-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    gap: 1.5rem;
}

.step-number {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.step-content p {
    color: #4b5563;
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 1rem;
    background: white;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 2px solid #f3f4f6;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: #fde68a;
}

.faq-item.active {
    border-color: #f59e0b;
}

.faq-question {
    padding: 1.5rem;
    font-weight: 700;
    font-size: 1.125rem;
    color: #1f2937;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-toggle {
    color: #f59e0b;
    font-size: 1.25rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: #4b5563;
    line-height: 1.8;
}

/* Related Products */
.related-section {
    padding: 4rem 1rem;
    background: white;
}

.related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.related-product {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s;
    text-decoration: none;
}

.related-product:hover {
    border-color: #f97316;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}


.related-image {
    height: 250px;
    overflow: hidden;
    background: #f3f4f6;
    position: relative;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;

}

.related-icon {
    width: 80px;
    height: 80px;
    background: #f97316;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-info {
    padding: 1.5rem;
}

.related-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.related-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f97316;
    margin-bottom: 1rem;
}

.related-btn {
    background: #f97316;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.related-btn:hover {
    background: #ea580c;
}


/* Footer */
footer {
    background: #1f2937;
    color: white;
    padding: 3rem 1rem 1.5rem;
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fbbf24;
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 4rem;
    height: 4rem;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s;
    color: white;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (min-width: 640px) {
    .trust-badges {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .related-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}