/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.7;
    color: #2d3748;
    background: linear-gradient(135deg, #fef7f0 0%, #f7fafc 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 192, 203, 0.2);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo-link {
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(255, 192, 203, 0.3));
}

.nav-brand h1 {
    font-family: 'Playfair Display', serif;
    color: #d4a574;
    font-size: 1.75rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(212, 165, 116, 0.2);
    margin: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #8b7355;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: #d4a574;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4a574, #f4a261);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fef7f0 0%, #f7fafc 100%);
    padding: 5rem 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4a574, #f4a261);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #f4a261, #d4a574);
    color: white;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-price {
    margin-bottom: 2rem;
}

.hero-price .price {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #d4a574;
    display: block;
    margin-bottom: 0.5rem;
}

.hero-price .price-note {
    color: #718096;
    font-size: 1rem;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, #2d3748, #1a202c);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid #d4a574;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: linear-gradient(135deg, #d4a574, #f4a261);
    color: white;
    transform: translateY(-2px);
}

.trust-badge-hero {
    display: inline-block;
    background: linear-gradient(135deg, #d4a574, #f4a261);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}

.guarantee-badge {
    color: #718096;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.product-rating .stars {
    color: #fbbf24;
    font-size: 0.95rem;
}

.product-rating .review-count {
    color: #718096;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.2);
    transition: all 0.3s ease;
}

.hero-image a {
    display: block;
}

.hero-image a:hover img {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.3);
}

/* Key Features Section */
.key-features {
    padding: 4rem 0;
    background: white;
}

.key-features h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2d3748;
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, #fef7f0, #f7fafc);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(212, 165, 116, 0.2);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card .feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #718096;
    line-height: 1.6;
}

/* Parent Reviews Section */
.parent-reviews {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fef7f0 0%, #f7fafc 100%);
}

.parent-reviews h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2d3748;
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.1);
    border-left: 4px solid #d4a574;
}

.review-rating {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.reviewer {
    font-weight: 600;
    color: #d4a574;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: white;
}

.faq-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2d3748;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: linear-gradient(135deg, #fef7f0, #f7fafc);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #d4a574;
}

.faq-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* More Products Section */
.more-products {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fef7f0 0%, #f7fafc 100%);
}

.more-products h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2d3748;
    text-align: center;
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.product-info p {
    color: #718096;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.product-link {
    display: inline-block;
    background: linear-gradient(135deg, #2d3748, #1a202c);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid #d4a574;
    transition: all 0.3s ease;
}

.product-link:hover {
    background: linear-gradient(135deg, #d4a574, #f4a261);
    color: white;
}

/* Featured Product Section */
.featured-product {
    padding: 4rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #d4a574, #f4a261);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.product-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.2);
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-info {
    padding: 1rem 0;
}

.price-section {
    margin-bottom: 2rem;
}

.price {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #d4a574;
    display: block;
    margin-bottom: 0.5rem;
}

.price-note {
    color: #718096;
    font-size: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.feature-icon {
    font-size: 1.5rem;
}

.feature-text {
    font-weight: 500;
    color: #2d3748;
    font-size: 0.95rem;
}

.testimonial-box {
    background: linear-gradient(135deg, #fef7f0, #f7fafc);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #d4a574;
    margin-bottom: 2rem;
}

.testimonial-box p {
    font-style: italic;
    color: #4a5568;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: #d4a574;
    font-size: 0.9rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #2d3748, #1a202c);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 6px 20px rgba(45, 55, 72, 0.4);
    transition: all 0.3s ease;
    border: 2px solid #d4a574;
    width: 100%;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 55, 72, 0.5);
    background: linear-gradient(135deg, #d4a574, #f4a261);
    color: white;
}

/* Why We Love It Section */
.why-we-love {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fef7f0 0%, #f7fafc 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #718096;
    line-height: 1.6;
    font-size: 0.95rem;
}

.real-reviews {
    text-align: center;
}

.real-reviews h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 2rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.review-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.1);
    border-left: 4px solid #d4a574;
}

.review-card p {
    font-style: italic;
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.reviewer {
    font-weight: 600;
    color: #d4a574;
    font-size: 0.9rem;
}

/* Product Review Section */
.product-review {
    padding: 4rem 0;
    background: white;
}

.review-header {
    text-align: center;
    margin-bottom: 3rem;
}

.review-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.review-intro {
    font-size: 1.1rem;
    color: #718096;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.product-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.product-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.15);
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    text-align: center;
    font-style: italic;
    color: #718096;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.product-specs h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.specs-list {
    list-style: none;
    margin-bottom: 2rem;
}

.specs-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
}

.specs-list li:last-child {
    border-bottom: none;
}

.price-box {
    background: linear-gradient(135deg, #fef7f0, #f7fafc);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #d4a574;
}

.current-price {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #d4a574;
    margin-bottom: 0.5rem;
}

.price-savings {
    color: #059669;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.buy-button {
    display: inline-block;
    background: linear-gradient(135deg, #2d3748, #1a202c);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #d4a574;
    transition: all 0.3s ease;
}

.buy-button:hover {
    background: linear-gradient(135deg, #d4a574, #f4a261);
    color: white;
}

/* Pros and Cons Section */
.pros-cons {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fef7f0 0%, #f7fafc 100%);
}

.pros-cons h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2d3748;
    text-align: center;
    margin-bottom: 3rem;
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.pros-section, .cons-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.1);
}

.pros-section h3 {
    color: #059669;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.cons-section h3 {
    color: #dc2626;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.pros-list, .cons-list {
    list-style: none;
}

.pros-list li, .cons-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
    line-height: 1.6;
    color: #4a5568;
}

.pros-list li:last-child, .cons-list li:last-child {
    border-bottom: none;
}

/* Detailed Review Section */
.detailed-review {
    padding: 4rem 0;
    background: white;
}

.detailed-review h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2d3748;
    text-align: center;
    margin-bottom: 3rem;
}

.review-sections {
    max-width: 800px;
    margin: 0 auto;
}

.review-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #fef7f0, #f7fafc);
    border-radius: 12px;
    border-left: 4px solid #d4a574;
}

.review-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.review-section p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Parent Reviews Section */
.parent-reviews {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fef7f0 0%, #f7fafc 100%);
}

.parent-reviews h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2d3748;
    text-align: center;
    margin-bottom: 1rem;
}

.reviews-intro {
    text-align: center;
    color: #718096;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.1);
    border-left: 4px solid #d4a574;
}

.review-rating {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.review-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.reviewer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.review-date {
    color: #718096;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: white;
}

.faq-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2d3748;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: linear-gradient(135deg, #fef7f0, #f7fafc);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #d4a574;
}

.faq-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* More Products Section */
.more-products {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fef7f0 0%, #f7fafc 100%);
}

.more-products h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2d3748;
    text-align: center;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    color: #718096;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.product-info p {
    color: #718096;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.product-link {
    display: inline-block;
    background: linear-gradient(135deg, #2d3748, #1a202c);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid #d4a574;
    transition: all 0.3s ease;
}

.product-link:hover {
    background: linear-gradient(135deg, #d4a574, #f4a261);
    color: white;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-img {
    width: 100%;
    height: auto;
    display: block;
}

.image-gallery {
    display: flex;
    gap: 1rem;
}

.gallery-img {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-img img {
    width: 100%;
    height: auto;
    display: block;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.price-section {
    margin-bottom: 2rem;
}

.current-price {
    font-size: 3rem;
    font-weight: 700;
    color: #059669;
    display: block;
    margin-bottom: 0.5rem;
}

.price-note {
    color: #64748b;
    font-size: 1rem;
}

.product-features h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    color: #475569;
}

.cta-section {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
}

.cta-button {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.cta-button:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.cta-note {
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
}

/* Detailed Review Section */
.detailed-review {
    padding: 4rem 0;
    background: #f8fafc;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

.review-content {
    max-width: 1000px;
    margin: 0 auto;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.pros, .cons {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.pros h3 {
    color: #059669;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cons h3 {
    color: #dc2626;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pros ul, .cons ul {
    list-style: none;
}

.pros li, .cons li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.pros li:last-child, .cons li:last-child {
    border-bottom: none;
}

.parent-testimonials {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.parent-testimonials h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

.testimonial {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.testimonial:last-child {
    margin-bottom: 0;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #475569;
}

.testimonial-author {
    font-weight: 600;
    color: #2563eb;
}

/* Blog Preview Section */
.blog-preview {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #fef7f0 50%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #718096;
    max-width: 500px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(212, 165, 116, 0.25);
}

.featured-blog {
    border: 2px solid #d4a574;
    position: relative;
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #d4a574, #f4a261);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.blog-date {
    color: #d4a574;
    font-weight: 600;
}

.blog-category {
    color: #718096;
    background: rgba(212, 165, 116, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.blog-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-excerpt {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-link {
    color: #d4a574;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: #f4a261;
}

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

.view-all-btn {
    display: inline-block;
    background: linear-gradient(135deg, #2d3748, #1a202c);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 6px 20px rgba(45, 55, 72, 0.3);
    transition: all 0.3s ease;
    border: 2px solid #d4a574;
}

.view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 55, 72, 0.4);
    background: linear-gradient(135deg, #d4a574, #f4a261);
    color: white;
}

/* Blog Page Styles */
.blog-header {
    background: linear-gradient(135deg, #fef7f0 0%, #f7fafc 100%);
    padding: 4rem 0 2rem;
    text-align: center;
}

.blog-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.blog-hero-subtitle {
    font-size: 1.3rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

.blog-posts {
    padding: 4rem 0;
    background: white;
}

.blog-post {
    max-width: 800px;
    margin: 0 auto 5rem;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.featured-post {
    border: 2px solid #d4a574;
}

.post-header {
    padding: 3rem 3rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #fef7f0, #f7fafc);
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.post-date {
    color: #d4a574;
    font-weight: 600;
}

.post-category {
    color: #718096;
    background: rgba(212, 165, 116, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.post-rating {
    color: #fbbf24;
    font-size: 1.2rem;
}

.post-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.post-subtitle {
    font-size: 1.2rem;
    color: #718096;
    font-style: italic;
}

.post-content {
    padding: 0;
}

.post-image {
    margin-bottom: 2rem;
}

.post-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.post-body {
    padding: 0 3rem 3rem;
}

.post-intro {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 500;
}

.post-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #2d3748;
    margin: 2rem 0 1rem;
}

.post-body p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.post-body a {
    color: #d4a574;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.post-body a:hover {
    border-bottom-color: #d4a574;
}

.testimonial {
    background: linear-gradient(135deg, #fef7f0, #f7fafc);
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid #d4a574;
    margin: 2rem 0;
    font-style: italic;
}

.testimonial p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial cite {
    font-weight: 600;
    color: #d4a574;
    font-style: normal;
}

.product-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #fef7f0, #f7fafc);
    border-radius: 16px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #2d3748, #1a202c);
    color: white;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 6px 20px rgba(45, 55, 72, 0.4);
    transition: all 0.3s ease;
    border: 2px solid #d4a574;
}

.product-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 55, 72, 0.5);
    background: linear-gradient(135deg, #d4a574, #f4a261);
    color: white;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fef7f0 0%, #f7fafc 100%);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 2rem;
}

.about-content p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.disclosure {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.2);
    margin-top: 2rem;
}

.disclosure h3 {
    font-family: 'Playfair Display', serif;
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.disclosure p {
    color: #718096;
    font-size: 1rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.footer p {
    margin-bottom: 0.5rem;
    color: #a0aec0;
    font-size: 0.95rem;
}

/* About Us Page Styles */
.about-hero {
    background: linear-gradient(135deg, #fef7f0 0%, #f7fafc 100%);
    padding: 4rem 0;
    text-align: center;
}

.about-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.about-hero-content .hero-subtitle {
    font-size: 1.3rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

.our-story {
    padding: 4rem 0;
    background: white;
}

.our-story h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2d3748;
    text-align: center;
    margin-bottom: 3rem;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.parent-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #fef7f0, #f7fafc);
    border-radius: 12px;
    border: 2px solid rgba(212, 165, 116, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: #d4a574;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #718096;
    font-size: 1rem;
    font-weight: 500;
}

.our-mission {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fef7f0 0%, #f7fafc 100%);
}

.our-mission h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2d3748;
    text-align: center;
    margin-bottom: 3rem;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.mission-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.mission-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.mission-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.mission-card p {
    color: #718096;
    line-height: 1.6;
}

.our-process {
    padding: 4rem 0;
    background: white;
}

.our-process h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2d3748;
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    background: linear-gradient(135deg, #fef7f0, #f7fafc);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid #d4a574;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4a574, #f4a261);
    color: white;
    border-radius: 50%;
    line-height: 50px;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.process-step p {
    color: #4a5568;
    line-height: 1.6;
}

.meet-team {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fef7f0 0%, #f7fafc 100%);
}

.meet-team h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2d3748;
    text-align: center;
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.member-avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.team-member h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #d4a574;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p:last-child {
    color: #4a5568;
    line-height: 1.6;
}

.affiliate-disclosure {
    padding: 4rem 0;
    background: white;
}

.affiliate-disclosure h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2d3748;
    text-align: center;
    margin-bottom: 3rem;
}

.disclosure-content {
    max-width: 800px;
    margin: 0 auto;
}

.disclosure-content p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.contact-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fef7f0 0%, #f7fafc 100%);
}

.contact-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2d3748;
    text-align: center;
    margin-bottom: 3rem;
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.1);
    margin-top: 2rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

/* Blog Content Images */
.content-image {
    margin: 2rem 0;
    text-align: center;
}

.content-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.2);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.content-image a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.content-image a:hover {
    transform: scale(1.02);
}

.content-image a:hover img {
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.3);
}

.image-caption {
    font-style: italic;
    color: #718096;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Baby Registry & Mom Essentials Section */
.registry-essentials {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fef7f0 0%, #f7fafc 100%);
}

.registry-essentials h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2d3748;
    text-align: center;
    margin-bottom: 1rem;
}

.section-intro {
    font-size: 1.2rem;
    color: #718096;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.registry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.registry-category {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.registry-category h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.registry-category p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.registry-category ul {
    list-style: none;
    padding: 0;
}

.registry-category li {
    color: #718096;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(212, 165, 116, 0.1);
}

.registry-category li:last-child {
    border-bottom: none;
}

.mom-tips {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.1);
    margin-bottom: 3rem;
}

.mom-tips h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #2d3748;
    text-align: center;
    margin-bottom: 2rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tip-item {
    text-align: center;
}

.tip-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.tip-item p {
    color: #4a5568;
    line-height: 1.6;
}

.registry-checklist {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.1);
}

.registry-checklist h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #2d3748;
    text-align: center;
    margin-bottom: 2rem;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.checklist-column h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
    text-align: center;
}

.checklist-column ul {
    list-style: none;
    padding: 0;
}

.checklist-column li {
    color: #4a5568;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(212, 165, 116, 0.1);
    font-size: 1rem;
}

.checklist-column li:last-child {
    border-bottom: none;
}

/* Mobile-First Responsive Design */

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #d4a574;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle:hover {
    color: #f4a261;
}

/* Base Mobile Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    /* Navigation */
    .nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        border-top: 1px solid rgba(212, 165, 116, 0.2);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 0.5rem 0;
    }
    
    .nav-links a {
        font-size: 1.1rem;
        padding: 0.75rem 0;
        display: block;
        text-align: center;
    }
    
    /* Logo adjustments */
    .nav-brand h1 {
        font-size: 1.5rem;
    }
    
    .logo-icon {
        font-size: 1.5rem;
    }
    
    /* Hero Section */
    .hero {
        padding: 3rem 0;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .hero-price .price {
        font-size: 2rem;
    }
    
    .hero-cta {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    /* Key Features */
    .key-features {
        padding: 3rem 0;
    }
    
    .key-features h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    /* Parent Reviews */
    .parent-reviews {
        padding: 3rem 0;
    }
    
    .parent-reviews h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    /* FAQ Section */
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-item h3 {
        font-size: 1.2rem;
    }
    
    /* More Products */
    .more-products {
        padding: 3rem 0;
    }
    
    .more-products h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card {
        margin-bottom: 1rem;
    }
    
    .product-info h3 {
        font-size: 1.1rem;
    }
    
    .product-link {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }
    
    /* About Section */
    .about {
        padding: 3rem 0;
    }
    
    .about-content h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .about-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .disclosure {
        padding: 2rem;
    }
    
    .disclosure h3 {
        font-size: 1.3rem;
    }
    
    /* Footer */
    .footer {
        padding: 2rem 0;
    }
    
    .footer p {
        font-size: 0.9rem;
    }
    
    /* Blog specific mobile styles */
    .blog-hero-title {
        font-size: 2.2rem;
    }
    
    .blog-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .review-content h3 {
        font-size: 1.3rem;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-card {
        padding: 1.5rem;
    }
    
    .category-card h3 {
        font-size: 1.3rem;
    }
    
    /* About page mobile styles */
    .about-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .about-hero-content .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .our-story h2,
    .our-mission h2,
    .our-process h2,
    .meet-team h2,
    .affiliate-disclosure h2,
    .contact-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .story-content p {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .parent-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .mission-grid,
    .process-steps,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mission-card,
    .process-step,
    .team-member {
        padding: 1.5rem;
    }
    
    .mission-card h3,
    .process-step h3,
    .team-member h3 {
        font-size: 1.3rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 1.2rem;
    }
    
    .disclosure-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .contact-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    /* Navigation */
    .nav {
        padding: 0.75rem 0;
    }
    
    .nav-brand h1 {
        font-size: 1.3rem;
    }
    
    .logo-icon {
        font-size: 1.3rem;
    }
    
    /* Hero Section */
    .hero {
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-price .price {
        font-size: 1.8rem;
    }
    
    .hero-cta {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
    
    /* Sections */
    .key-features,
    .parent-reviews,
    .faq-section,
    .more-products,
    .about {
        padding: 2rem 0;
    }
    
    .key-features h2,
    .parent-reviews h2,
    .faq-section h2,
    .more-products h2,
    .about-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-card,
    .review-card,
    .faq-item {
        padding: 1.25rem;
    }
    
    .feature-card h3,
    .faq-item h3 {
        font-size: 1.1rem;
    }
    
    .feature-card p,
    .review-card p,
    .faq-item p {
        font-size: 0.95rem;
    }
    
    /* Product cards */
    .product-info {
        padding: 1.25rem;
    }
    
    .product-info h3 {
        font-size: 1rem;
    }
    
    .product-info p {
        font-size: 0.9rem;
    }
    
    .product-link {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
    
    /* Blog specific */
    .blog-hero-title {
        font-size: 1.8rem;
    }
    
    .blog-hero-subtitle {
        font-size: 1rem;
    }
    
    .review-card {
        padding: 1.25rem;
    }
    
    .review-content h3 {
        font-size: 1.2rem;
    }
    
    .review-content p {
        font-size: 0.95rem;
    }
    
    .review-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .review-link,
    .buy-link {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .category-card {
        padding: 1.25rem;
    }
    
    .category-card h3 {
        font-size: 1.2rem;
    }
    
    .category-card p {
        font-size: 0.95rem;
    }
    
    /* About page */
    .about-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .about-hero-content .hero-subtitle {
        font-size: 1rem;
    }
    
    .our-story h2,
    .our-mission h2,
    .our-process h2,
    .meet-team h2,
    .affiliate-disclosure h2,
    .contact-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .story-content p {
        font-size: 1rem;
    }
    
    .parent-stats {
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .mission-card,
    .process-step,
    .team-member {
        padding: 1.25rem;
    }
    
    .mission-card h3,
    .process-step h3,
    .team-member h3 {
        font-size: 1.2rem;
    }
    
    .mission-card p,
    .process-step p,
    .team-member p {
        font-size: 0.95rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 1.1rem;
    }
    
    .disclosure-content p,
    .contact-content p {
        font-size: 0.95rem;
    }
    
    .contact-info {
        padding: 1.25rem;
    }
    
    .contact-info p {
        font-size: 0.9rem;
    }
}

/* Image optimization for mobile */
.hero-image img,
.product-image img,
.review-image img,
.blog-image img,
.content-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Ensure all images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Mobile-specific image optimizations */
@media (max-width: 768px) {
    .hero-image img {
        max-height: 300px;
        object-fit: cover;
    }
    
    .product-image img,
    .review-image img {
        max-height: 250px;
        object-fit: cover;
    }
    
    .blog-image img {
        max-height: 200px;
        object-fit: cover;
    }
    
    .content-image img {
        max-height: 250px;
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .hero-image img {
        max-height: 250px;
    }
    
    .product-image img,
    .review-image img {
        max-height: 200px;
    }
    
    .blog-image img {
        max-height: 180px;
    }
    
    .content-image img {
        max-height: 200px;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .nav-links a,
    .hero-cta,
    .product-link,
    .review-link,
    .blog-link,
    .view-all-btn,
    .buy-button,
    .cta-button {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-links a {
        padding: 1rem 0;
    }
    
    .hero-cta,
    .product-link,
    .review-link,
    .blog-link,
    .view-all-btn,
    .buy-button,
    .cta-button {
        padding: 1rem 1.5rem;
    }
    
    /* Improve touch targets for mobile */
    .mobile-menu-toggle {
        min-height: 44px;
        min-width: 44px;
        padding: 0.75rem;
    }
    
    /* Make sure all clickable elements are touch-friendly */
    a, button, input, select, textarea {
        min-height: 44px;
    }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .key-features,
    .parent-reviews,
    .faq-section,
    .more-products,
    .about {
        padding: 2rem 0;
    }
}

/* Performance optimizations for mobile */
@media (max-width: 768px) {
    /* Reduce animations on mobile for better performance */
    * {
        animation-duration: 0.2s !important;
        transition-duration: 0.2s !important;
    }
    
    /* Optimize scrolling */
    .nav-links {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Improve text rendering on mobile */
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }
    
    /* Optimize images for mobile */
    img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* High DPI display optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-icon {
        font-size: 1.5rem;
    }
    
    .feature-icon,
    .benefit-icon,
    .mission-icon {
        font-size: 2.5rem;
    }
}

/* Dark mode support for mobile */
@media (prefers-color-scheme: dark) and (max-width: 768px) {
    .nav-links {
        background: rgba(45, 55, 72, 0.98);
        color: white;
    }
    
    .nav-links a {
        color: white;
    }
    
    .nav-links a:hover {
        color: #d4a574;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print styles for mobile */
@media print {
    .mobile-menu-toggle,
    .nav-links {
        display: none !important;
    }
    
    .hero {
        padding: 1rem 0;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
}

/* Blog Page Styling */
.blog-header {
    background: linear-gradient(135deg, #fef7f0 0%, #f7fafc 100%);
    padding: 4rem 0;
    text-align: center;
}

.blog-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.blog-hero-subtitle {
    font-size: 1.2rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

.featured-reviews {
    padding: 4rem 0;
    background: white;
}

.featured-reviews h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2d3748;
    text-align: center;
    margin-bottom: 1rem;
}

.section-intro {
    font-size: 1.2rem;
    color: #718096;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.2);
}

.review-card.featured {
    border: 2px solid #d4a574;
    background: linear-gradient(135deg, #fef7f0, #ffffff);
    position: relative;
}

.review-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #fef7f0, #ffffff);
    z-index: -1;
}

.review-image {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    height: 200px;
}

.review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.review-image:hover img {
    transform: scale(1.05);
}

.review-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4a574, #f4a261);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.review-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.review-content p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.review-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4a574, #f4a261);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.rating {
    color: #d4a574;
    font-weight: 600;
}

.price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
}

.review-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.review-link {
    display: inline-block;
    background: linear-gradient(135deg, #d4a574, #f4a261);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    flex: 1;
    text-align: center;
    min-width: 140px;
}

.buy-link {
    display: inline-block;
    background: linear-gradient(135deg, #2d3748, #1a202c);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 55, 72, 0.3);
    flex: 1;
    text-align: center;
    min-width: 140px;
    border: 2px solid #d4a574;
}

.buy-link:hover {
    background: linear-gradient(135deg, #d4a574, #f4a261);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

.review-card:hover .review-link {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #f4a261, #d4a574);
    color: white;
}

.category-sections {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.category-sections h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2d3748;
    text-align: center;
    margin-bottom: 3rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.1);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.2);
}

.category-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.category-card p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.category-card ul {
    list-style: none;
    padding: 0;
}

.category-card li {
    margin-bottom: 0.8rem;
}

.category-card a {
    color: #d4a574;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.category-card a:hover {
    color: #f4a261;
}

/* Responsive Design for Blog */
@media (max-width: 768px) {
    .blog-hero-title {
        font-size: 2rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-card {
        padding: 1rem;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-card {
        padding: 1.5rem;
    }
}

/* Breadcrumb Navigation */
.breadcrumb {
    background: linear-gradient(135deg, #fef7f0 0%, #f7fafc 100%);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    color: #718096;
    font-size: 0.9rem;
}

.breadcrumb-list li a {
    color: #d4a574;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-list li a:hover {
    color: #f4a261;
}

.breadcrumb-list li span {
    margin: 0 0.5rem;
    color: #cbd5e0;
}

.breadcrumb-list li:last-child {
    color: #2d3748;
    font-weight: 600;
}

/* Trust Badge */
.trust-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4a574, #f4a261);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.post-meta .last-updated {
    color: #718096;
    font-size: 0.9rem;
    font-style: italic;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fef7f0, #f7fafc);
    border-radius: 12px;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-icon {
    font-size: 1.2rem;
}

.trust-text {
    color: #2d3748;
    font-weight: 500;
    font-size: 0.95rem;
}

.cta-note {
    text-align: center;
    color: #718096;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

/* Email Capture Section */
.email-capture {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    padding: 4rem 0;
    margin-top: 3rem;
}

.email-capture-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.email-capture-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.email-subtitle {
    color: #a0aec0;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: 2px solid rgba(212, 165, 116, 0.3);
    font-size: 1rem;
    background: white;
    color: #2d3748;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: #d4a574;
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.newsletter-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #d4a574, #f4a261);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #f4a261, #d4a574);
}

.privacy-note {
    color: #a0aec0;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.newsletter-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
}

.last-updated-hero {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.urgency-note {
    color: #dc2626;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.review-count-badge {
    font-size: 0.7em;
    color: #718096;
    font-weight: 400;
}

/* Price Comparison Table */
.price-comparison-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.price-comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.1);
}

.price-comparison-table thead {
    background: linear-gradient(135deg, #d4a574, #f4a261);
    color: white;
}

.price-comparison-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.price-comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
}

.price-comparison-table tbody tr:hover {
    background: #f7fafc;
}

.price-comparison-table tbody tr:last-child td {
    border-bottom: none;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4a574, #f4a261);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

/* Exit Intent Popup */
.exit-intent-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.exit-popup-content {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.exit-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #718096;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exit-popup-close:hover {
    color: #2d3748;
}

.exit-popup-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.exit-popup-content p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.exit-popup-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.exit-popup-form input {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
}

.exit-popup-form input:focus {
    outline: none;
    border-color: #d4a574;
}

.exit-popup-form button {
    padding: 1rem;
    background: linear-gradient(135deg, #d4a574, #f4a261);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.exit-popup-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.exit-popup-note {
    font-size: 0.85rem;
    color: #718096;
    text-align: center;
    margin-top: 1rem;
}

/* Pinterest Pin Button */
.pin-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #bd081c;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.pin-button:hover {
    background: #8b0a16;
    transform: scale(1.05);
}

.content-image {
    position: relative;
}

@media (max-width: 768px) {
    .price-comparison-table {
        font-size: 0.85rem;
    }
    
    .price-comparison-table th,
    .price-comparison-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 1.5rem;
        right: 1.5rem;
        font-size: 1.3rem;
    }
    
    .exit-popup-content {
        padding: 1.5rem;
    }
    
    .exit-popup-content h3 {
        font-size: 1.5rem;
    }
}

/* Mobile Responsive for New Elements */
@media (max-width: 768px) {
    .breadcrumb {
        padding: 0.75rem 0;
    }
    
    .breadcrumb-list {
        font-size: 0.85rem;
    }
    
    .trust-badge {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
    }
    
    .email-capture {
        padding: 3rem 0;
    }
    
    .email-capture-content h2 {
        font-size: 1.8rem;
    }
    
    .email-subtitle {
        font-size: 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input[type="email"] {
        width: 100%;
        min-width: auto;
    }
    
    .newsletter-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .breadcrumb-list {
        font-size: 0.8rem;
    }
    
    .trust-badge {
        font-size: 0.8rem;
    }
    
    .email-capture-content h2 {
        font-size: 1.5rem;
    }
}

/* Blog Sidebar */
.blog-sidebar {
    position: fixed;
    left: 0;
    top: 80px;
    width: 280px;
    height: calc(100vh - 80px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 2px 0 20px rgba(0,0,0,0.08);
    border-right: 1px solid rgba(212, 165, 116, 0.2);
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 90;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-search {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.sidebar-search input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Source Sans Pro', sans-serif;
    transition: border-color 0.3s ease;
}

.sidebar-search input:focus {
    outline: none;
    border-color: #d4a574;
}

.sidebar-search button {
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #d4a574, #f4a261);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.sidebar-search button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.sidebar-categories h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 0.75rem;
}

.category-list a {
    display: block;
    padding: 0.75rem 1rem;
    color: #4a5568;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
}

.category-list a:hover {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(244, 162, 97, 0.1));
    color: #d4a574;
    transform: translateX(5px);
}

.blog-main {
    margin-left: 280px;
    padding: 2rem;
    transition: margin-left 0.3s ease;
}

/* Adjust main content when sidebar is present */
body:has(.blog-sidebar) .hero .container,
body:has(.blog-sidebar) .blog-preview .container,
body:has(.blog-sidebar) .blog-posts .container,
body:has(.blog-sidebar) .blog-header .container,
body:has(.blog-sidebar) .breadcrumb .container,
body:has(.blog-sidebar) .featured-reviews .container,
body:has(.blog-sidebar) .key-features .container,
body:has(.blog-sidebar) .parent-reviews .container,
body:has(.blog-sidebar) .faq-section .container,
body:has(.blog-sidebar) .more-products .container,
body:has(.blog-sidebar) .email-capture .container,
body:has(.blog-sidebar) .about .container,
body:has(.blog-sidebar) .category-sections .container {
    margin-left: 280px;
    transition: margin-left 0.3s ease;
}

@media (max-width: 1024px) {
    body:has(.blog-sidebar) .hero .container,
    body:has(.blog-sidebar) .blog-preview .container,
    body:has(.blog-sidebar) .blog-posts .container,
    body:has(.blog-sidebar) .blog-header .container,
    body:has(.blog-sidebar) .breadcrumb .container,
    body:has(.blog-sidebar) .featured-reviews .container,
    body:has(.blog-sidebar) .key-features .container,
    body:has(.blog-sidebar) .parent-reviews .container,
    body:has(.blog-sidebar) .faq-section .container,
    body:has(.blog-sidebar) .more-products .container,
    body:has(.blog-sidebar) .email-capture .container,
    body:has(.blog-sidebar) .about .container,
    body:has(.blog-sidebar) .category-sections .container {
        margin-left: 0;
    }
}

/* Mobile Sidebar */
.sidebar-toggle {
    display: none;
    position: fixed;
    top: 90px;
    left: 20px;
    z-index: 100;
    background: linear-gradient(135deg, #d4a574, #f4a261);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

@media (max-width: 1024px) {
    .blog-sidebar {
        transform: translateX(-100%);
        width: 260px;
    }
    
    .blog-sidebar.active {
        transform: translateX(0);
    }
    
    .blog-main {
        margin-left: 0;
    }
    
    .sidebar-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .blog-sidebar {
        width: 100%;
        top: 70px;
        height: calc(100vh - 70px);
    }
    
    .sidebar-content {
        padding: 0;
    }
    
    .blog-main {
        padding: 1rem;
    }
    
    .sidebar-toggle {
        top: 80px;
        left: 10px;
        padding: 0.6rem 0.8rem;
        font-size: 1rem;
    }
}

