:root {
    /* Color Palette - Adjusted for better contrast with white text */
    --primary-pink: #FF758F;
    /* Darker Vivid Pink */
    --primary-blue: #5AA9E6;
    /* Darker Sky Blue */
    --primary-yellow: #FFD166;
    /* Vibrant Yellow */
    --primary-mint: #06D6A0;
    /* Vibrant Mint */
    --primary-lavender: #9D8189;
    /* Darker Lavender */
    --text-dark: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-xl: 50px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    color: --text-dark;
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

h1,
h2,
h3,
h4 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: #4A4A4A;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: var(--radius-xl);
    font-weight: 700;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background-color: var(--primary-pink);
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: var(--primary-blue);
    color: #fff;
    margin-left: 10px;
}

.btn-yellow {
    background-color: var(--primary-yellow);
    color: var(--text-dark);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
    border-radius: 20px;
    background-color: var(--primary-lavender);
    color: #fff;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #555;
    position: relative;
    display: inline-block;
    margin-left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 6px;
    background-color: var(--primary-yellow);
    border-radius: 10px;
    margin: 10px auto 30px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #FFFFFF;
    /* Solid White, no transparency */
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-pink);
    text-shadow: none;
    /* Ensure no blur/softness */
}

.logo img {
    height: 40px;
}

.nav-links a {
    margin: 0 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.nav-links a:hover {
    color: var(--primary-pink);
}

.btn-nav {
    background-color: var(--primary-mint);
    padding: 8px 24px;
    border-radius: 50px;
    color: #fff !important;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    background-color: var(--primary-blue);
    /* Fallback */
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    background: radial-gradient(circle at top left, var(--primary-yellow) 0%, rgba(255, 255, 255, 0) 40%),
        radial-gradient(circle at bottom right, var(--primary-blue) 0%, rgba(255, 255, 255, 0) 40%);
    padding-top: 60px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    padding-bottom: 100px;
}

.hero-text .tagline {
    display: inline-block;
    background-color: var(--primary-mint);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #4A4A4A;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 90%;
}

.image-wrapper {
    position: relative;
}

.image-wrapper img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    z-index: 2;
    position: relative;
    transition: transform 0.3s;
}

.image-wrapper img:hover {
    transform: scale(1.02);
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    opacity: 1;
    /* Removed transparency as requested */
}

.shape-1 {
    width: 200px;
    height: 200px;
    background-color: var(--primary-pink);
    top: -40px;
    right: -40px;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background-color: var(--primary-yellow);
    bottom: -30px;
    left: -30px;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.wave-bottom {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    line-height: 0;
    transform: scaleY(0.5);
    transform-origin: bottom;
}

/* Featured Products */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    border: 2px solid #f0f0f0;
    transition: 0.3s;
}

.product-card:hover {
    border-color: var(--primary-pink);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.product-image {
    background-color: #f9f9f9;
    padding: 20px;
    position: relative;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-height: 100%;
}

.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-yellow);
    color: #555;
    padding: 5px 12px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 700;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.price {
    color: var(--primary-pink);
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* Why Us */
.why-us {
    background-color: #fcfcfc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.icon-bg {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #fff;
}

.icon-bg.pink {
    background-color: var(--primary-pink);
}

.icon-bg.yellow {
    background-color: var(--primary-yellow);
    color: #555;
}

.icon-bg.blue {
    background-color: var(--primary-blue);
}

.icon-bg.mint {
    background-color: var(--primary-mint);
}

.feature-card h3 {
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}

.user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.user-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.user-info small {
    color: #999;
}

/* Promo Banner */
.promo {
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-lavender));
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.promo h2 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 2.2rem;
}

.promo p {
    margin-bottom: 30px;
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: #F9F9F9;
    padding-top: 80px;
    color: #666;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid #eee;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.footer-logo img {
    height: 35px;
}

.footer-brand p {
    max-width: 300px;
    line-height: 1.8;
}

.footer-links h4,
.footer-social h4 {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    margin-bottom: 12px;
    color: #888;
}

.footer-links a:hover {
    color: var(--primary-pink);
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    color: var(--primary-pink);
    font-size: 1.2rem;
}

.social-icons a:hover {
    background-color: var(--primary-pink);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    color: #aaa;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-bottom: 50px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 15px;
        display: block;
    }

    .hamburger {
        display: block;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .social-icons {
        justify-content: center;
    }
}