/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Soft, light, friendly color palette */
    --primary: #FFB5D8;
    --primary-dark: #FF8FB8;
    --secondary: #C8B8FF;
    --accent: #FFE4B5;
    --background: #FFF9F5;
    --surface: #FFFFFF;
    --text-primary: #5A4A6A;
    --text-secondary: #8B7B9B;
    --text-light: #B8A8C8;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(255, 181, 216, 0.1);
    --shadow-md: 0 4px 16px rgba(255, 181, 216, 0.15);
    --shadow-lg: 0 8px 32px rgba(255, 181, 216, 0.2);
    
    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Navigation */
.navbar {
    background-color: var(--surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--spacing-md) 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    align-items: center;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-dark);
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: var(--spacing-2xl) 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #FFF9F5 0%, #FFE4F5 100%);
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.cloud {
    position: absolute;
    width: 100px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3));
    border-radius: 50px;
    animation: float 20s infinite ease-in-out;
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3));
    border-radius: 50%;
}

.cloud::before {
    width: 50px;
    height: 50px;
    top: -25px;
    left: 10px;
}

.cloud::after {
    width: 60px;
    height: 60px;
    top: -30px;
    right: 10px;
}

.cloud-1 {
    top: 10%;
    left: 10%;
}

.cloud-2 {
    top: 60%;
    right: 10%;
    animation-delay: -10s;
}

.star {
    position: absolute;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, white 0%, rgba(255, 255, 255, 0.5) 40%, transparent 70%);
    border-radius: 50%;
    animation: twinkle 3s infinite ease-in-out;
}

.star-1 {
    top: 20%;
    right: 20%;
}

.star-2 {
    top: 70%;
    left: 15%;
    animation-delay: -1s;
}

.star-3 {
    top: 40%;
    right: 30%;
    animation-delay: -2s;
}

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

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.hero-content {
    z-index: 1;
}

.hero-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-illustration {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    box-shadow: var(--shadow-lg);
    position: relative;
    animation: gentle-float 6s infinite ease-in-out;
}

.hero-illustration::before {
    content: '';
    position: absolute;
    width: 110%;
    height: 110%;
    background: linear-gradient(135deg, rgba(255, 181, 216, 0.2) 0%, rgba(200, 184, 255, 0.2) 100%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 4s infinite ease-in-out;
}

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

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

.hero-svg {
    width: 80%;
    height: 80%;
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.3));
}

.about-svg {
    width: 80%;
    height: 80%;
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.3));
}

/* Buttons */
.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Nunito', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--surface);
    color: var(--primary-dark);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: white;
}

.btn-small {
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: 0.875rem;
}

.btn-large {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.125rem;
}

/* Features Section */
.features {
    padding: var(--spacing-2xl) 0;
    background-color: var(--surface);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
}

.feature-card {
    text-align: center;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    background-color: var(--background);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 8px rgba(255, 181, 216, 0.3));
}

.feature-card h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    color: var(--text-secondary);
}

/* Lullabies Section */
.lullabies {
    padding: var(--spacing-2xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.lullabies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.lullaby-card {
    background-color: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.lullaby-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.lullaby-card .btn {
    pointer-events: none;
}

.lullaby-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.lullaby-icon {
    width: 60%;
    height: 60%;
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.4));
}

.lullaby-image-1 {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.lullaby-image-2 {
    background: linear-gradient(135deg, #9B7EDE 0%, #6B5AAF 100%);
}

.lullaby-image-3 {
    background: linear-gradient(135deg, #87CEEB 0%, #4A90E2 100%);
}

.lullaby-image-4 {
    background: linear-gradient(135deg, #FFB5E8 0%, #FF85D0 100%);
}

.lullaby-image-5 {
    background: linear-gradient(135deg, #FFDAB9 0%, #FFB88C 100%);
}

.lullaby-image-6 {
    background: linear-gradient(135deg, #B5E7A0 0%, #86C67C 100%);
}

.lullaby-content {
    padding: var(--spacing-lg);
}

.lullaby-content h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.lullaby-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    font-size: 0.875rem;
}

.lullaby-meta {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    font-size: 0.875rem;
    color: var(--text-light);
}

.lullaby-duration::before {
    content: '⏱ ';
    opacity: 0.7;
}

.lullaby-age::before {
    content: '👤 ';
    opacity: 0.7;
}

/* About Section */
.about {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--surface) 0%, var(--background) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.about-text h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    font-size: 1.125rem;
}

.about-benefits {
    list-style: none;
    margin-top: var(--spacing-lg);
}

.about-benefits li {
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.about-illustration {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-lg);
    margin: 0 auto;
}


/* FAQs Section */
.faq-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--surface) 0%, var(--background) 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.faq-item {
    background: var(--surface);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid var(--primary);
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* Blog Styles */
.blog-container {
    max-width: 800px;
}

.blog-post {
    padding: var(--spacing-2xl) 0;
}

.blog-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 2px solid var(--primary);
}

.blog-header h1 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.blog-meta {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    align-items: center;
}

.blog-content {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.blog-content .lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: var(--background);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-md);
}

.blog-content h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.875rem;
    color: var(--text-primary);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
}

.blog-content h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.375rem;
    color: var(--text-primary);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

.blog-content p {
    margin-bottom: var(--spacing-md);
}

.blog-content ul,
.blog-content ol {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-xl);
}

.blog-content li {
    margin-bottom: var(--spacing-xs);
}

.blog-content strong {
    color: var(--primary-dark);
    font-weight: 600;
}

.blog-content a {
    color: var(--primary-dark);
    text-decoration: underline;
    font-weight: 600;
}

.blog-content a:hover {
    color: var(--primary);
}

.tip-box {
    background: linear-gradient(135deg, #FFF4E6 0%, #FFE4F5 100%);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border-left: 5px solid #FFA500;
    margin: var(--spacing-xl) 0;
}

.tip-box h3 {
    margin-top: 0 !important;
}

.related-posts {
    padding: var(--spacing-2xl) 0;
    background: var(--surface);
}

.related-posts h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.related-card {
    background: var(--background);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.related-card h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.related-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* CTA Section */
.cta {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.cta .btn-primary {
    background-color: #5A4A6A;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    padding: 1.2rem 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: none;
}

.cta .btn-primary:hover {
    background-color: #3d2f4d;
    color: white;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: var(--spacing-2xl) var(--spacing-lg);
    max-width: 500px;
    margin: 0 auto;
}

.empty-icon {
    width: 150px;
    height: 150px;
    margin-bottom: var(--spacing-xl);
}

.empty-state h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.empty-state p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Product Cards for Amazon */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.product-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.product-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-info {
    padding: var(--spacing-lg);
    text-align: center;
    background: linear-gradient(to bottom, white 0%, var(--background) 100%);
}

.product-name {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    line-height: 1.4;
    min-height: 50px;
}

.product-rating {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
}

.product-type {
    font-size: 0.875rem;
    color: #4A90E2;
    margin-bottom: var(--spacing-md);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.product-type:hover {
    color: #2C5AA0;
    text-decoration: underline;
}

.product-description {
    text-align: left;
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(255, 181, 216, 0.05);
    border-radius: var(--radius-md);
}

.product-description p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.product-features {
    list-style: none;
    padding: 0;
    margin: var(--spacing-sm) 0 0 0;
}

.product-features li {
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding: 0.25rem 0;
    line-height: 1.5;
}

.product-specs {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(90, 74, 106, 0.1);
}

.product-price-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    font-family: 'Quicksand', sans-serif;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.btn-buy-amazon {
    display: block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(255, 181, 216, 0.4);
    border: 3px solid var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-buy-amazon:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 181, 216, 0.5);
    border-color: var(--primary-dark);
}

/* Lullaby Detail Page */
.lullaby-detail {
    padding: var(--spacing-2xl) 0;
    min-height: 70vh;
}

.back-link {
    display: inline-block;
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: var(--spacing-xl);
    transition: var(--transition);
}

.back-link:hover {
    color: var(--primary);
    transform: translateX(-4px);
}

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

.detail-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 2px solid var(--primary);
}

.detail-header h1 {
    font-family: 'Quicksand', sans-serif;
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.detail-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.detail-meta {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    font-size: 1rem;
    color: var(--text-light);
}

.detail-body {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
}

.lyrics-section,
.info-section,
.products-section {
    background-color: var(--surface);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.lyrics-section h2,
.info-section h2,
.products-section h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.lyrics {
    background-color: var(--background);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
}

.lyrics p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.lyrics p:last-child {
    margin-bottom: 0;
}

.info-section p,
.products-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.products-section ul {
    list-style: none;
    padding-left: 0;
}

.products-section ul li {
    padding: var(--spacing-sm) 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(90, 74, 106, 0.1);
}

.products-section ul li:before {
    content: "→ ";
    color: var(--primary);
    font-weight: bold;
    margin-right: var(--spacing-sm);
}

/* Footer */
.footer {
    background-color: var(--text-primary);
    color: white;
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section h3,
.footer-section h4 {
    font-family: 'Quicksand', sans-serif;
    margin-bottom: var(--spacing-md);
    color: var(--primary);
}

.footer-section p {
    opacity: 0.8;
    margin-bottom: var(--spacing-xs);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-section a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-section a:hover {
    opacity: 1;
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .lullabies-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Product Modal */
.product-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(90, 74, 106, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: var(--surface);
    margin: 5% auto;
    padding: 0;
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease;
}

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

.modal-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    position: relative;
}

.modal-header h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.75rem;
    color: white;
    margin: 0;
    padding-right: var(--spacing-xl);
}

.modal-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    font-size: 2rem;
    font-weight: bold;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-body {
    padding: var(--spacing-xl);
}

.modal-image {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
    margin-bottom: var(--spacing-lg);
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
}

.modal-section {
    margin-bottom: var(--spacing-lg);
}

.modal-section h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--primary);
    padding-bottom: var(--spacing-xs);
}

.modal-section p,
.modal-section ul {
    color: var(--text-secondary);
    line-height: 1.6;
}

.modal-section ul {
    list-style: none;
    padding-left: 0;
}

.modal-section ul li {
    padding: var(--spacing-xs) 0;
    padding-left: var(--spacing-md);
    position: relative;
}

.modal-section ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-dark);
    font-weight: bold;
}

.modal-rating {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    font-size: 1rem;
}

.modal-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: var(--spacing-md) 0;
    font-family: 'Quicksand', sans-serif;
}

.modal-buttons {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.modal-buttons .btn {
    flex: 1;
    text-align: center;
}

.btn-info {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: white;
}

.btn-info:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.product-buttons {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.product-buttons .btn,
.product-buttons .btn-buy-amazon {
    flex: 1;
}

@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
        max-height: 85vh;
    }
    
    .modal-body {
        padding: var(--spacing-md);
    }
    
    .modal-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

