/* ===================================
   CUTE & PLAYFUL NARHUK STYLES 🌸
   =================================== */

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

:root {
    /* Pastel Color Palette */
    --pink: #FFB6C1;
    --mint-green: #98FB98;
    --light-blue: #B0E0E6;
    --lavender: #DDA0DD;
    --pastel-yellow: #FFFACD;
    --soft-pink: #FFC0CB;
    --soft-purple: #E6E6FA;
    --peach: #FFE5D9;
    --cream: #FFF9F0;
    
    /* Font Families */
    --font-heading: 'Fredoka', sans-serif;
    --font-playful: 'Mali', cursive;
    --font-body: 'Quicksand', sans-serif;
    
    /* Shadows */
    --shadow-soft: 0 4px 15px rgba(255, 182, 193, 0.3);
    --shadow-card: 0 8px 25px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 12px 35px rgba(0, 0, 0, 0.12);
}

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, #FFF9F0 0%, #FFE5D9 50%, #E6E6FA 100%);
    color: #5a5a5a;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   FLOATING DECORATIVE ELEMENTS 🌟
   =================================== */

.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.float-element {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
    opacity: 0.6;
}

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

/* ===================================
   HEADER & NAVIGATION 🌈
   =================================== */

.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--pink);
}

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

.logo-container {
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--pink) 0%, var(--lavender) 50%, var(--light-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: lowercase;
    letter-spacing: 1px;
}

.logo-heart {
    font-size: 1.5rem;
    animation: pulse 1.5s ease-in-out infinite;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--pink);
    background: rgba(255, 182, 193, 0.1);
}

.cart-icon {
    background: var(--pink);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.cart-icon:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.cart-count {
    background: white;
    color: var(--pink);
    padding: 0.2rem 0.5rem;
    border-radius: 50%;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

/* ===================================
   HERO SECTION 🎨
   =================================== */

.hero-section {
    padding: 4rem 2rem;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.mascot-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.mascot {
    animation: bounce 2s ease-in-out infinite;
}

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

.mascot-body {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--pink) 0%, var(--soft-pink) 100%);
    border-radius: 50%;
    position: relative;
    box-shadow: var(--shadow-card);
}

.mascot-face {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mascot-eyes {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 10px;
}

.eye {
    font-size: 1.5rem;
    color: #333;
}

.mascot-blush {
    display: flex;
    justify-content: space-between;
    width: 80px;
    margin: 0 auto;
}

.blush {
    width: 15px;
    height: 8px;
    background: rgba(255, 105, 180, 0.4);
    border-radius: 50%;
}

.mascot-mouth {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-top: 5px;
}

.mascot-ears {
    position: absolute;
    width: 100%;
    top: -10px;
}

.ear {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--pink);
    border-radius: 50% 50% 0 0;
    transform: rotate(-20deg);
}

.left-ear {
    left: 10px;
}

.right-ear {
    right: 10px;
    transform: rotate(20deg);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.brand-name {
    background: linear-gradient(135deg, var(--pink) 0%, var(--lavender) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.sparkle {
    display: inline-block;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-subtitle {
    font-family: var(--font-playful);
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 2rem;
}

.cta-button {
    background: linear-gradient(135deg, var(--pink) 0%, var(--lavender) 100%);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
    font-family: var(--font-heading);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.button-icon {
    margin-left: 0.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.cta-button:hover .button-icon {
    transform: translateX(5px);
}

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

.decoration-star,
.decoration-flower {
    position: absolute;
    font-size: 3rem;
    opacity: 0.3;
    animation: float 4s ease-in-out infinite;
}

.star-1 { top: 10%; left: 10%; animation-delay: 0s; }
.star-2 { top: 20%; right: 15%; animation-delay: 1s; }
.star-3 { bottom: 30%; left: 15%; animation-delay: 2s; }
.flower-1 { top: 50%; right: 10%; animation-delay: 1.5s; }
.flower-2 { bottom: 20%; right: 20%; animation-delay: 0.5s; }

/* ===================================
   FEATURES SECTION 💝
   =================================== */

.features-section {
    padding: 3rem 2rem;
    position: relative;
    z-index: 10;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--pink);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 2s ease-in-out infinite;
}

.feature-card:nth-child(2) .feature-icon {
    animation-delay: 0.3s;
}

.feature-card:nth-child(3) .feature-icon {
    animation-delay: 0.6s;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-family: var(--font-playful);
    color: #666;
    font-size: 1rem;
}

/* ===================================
   SHOP SECTION 🛍️
   =================================== */

.shop-section {
    padding: 4rem 2rem;
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.title-decoration {
    margin: 0 1rem;
    display: inline-block;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.section-subtitle {
    font-family: var(--font-playful);
    font-size: 1.3rem;
    color: #666;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--lavender);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 10;
    box-shadow: var(--shadow-soft);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.placeholder-image {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.product-card:hover .placeholder-image {
    transform: scale(1.05);
}

.image-icon {
    font-size: 5rem;
    opacity: 0.8;
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.product-description {
    font-family: var(--font-playful);
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--pink);
    font-weight: 700;
}

.add-to-cart {
    background: linear-gradient(135deg, var(--pink) 0%, var(--lavender) 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    white-space: nowrap;
}

.add-to-cart:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-soft);
}

.view-more {
    text-align: center;
}

.secondary-button {
    background: white;
    color: var(--pink);
    border: 3px solid var(--pink);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
}

.secondary-button:hover {
    background: var(--pink);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

/* ===================================
   NEWSLETTER SECTION 💌
   =================================== */

.newsletter-section {
    padding: 4rem 2rem;
    position: relative;
    z-index: 10;
}

.newsletter-content {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--lavender) 100%);
    padding: 3rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: var(--shadow-card);
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 2s ease-in-out infinite;
}

.newsletter-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.newsletter-content p {
    font-family: var(--font-playful);
    color: white;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-family: var(--font-body);
    box-shadow: var(--shadow-soft);
}

.newsletter-input:focus {
    outline: 3px solid white;
}

.subscribe-button {
    background: white;
    color: var(--lavender);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
    white-space: nowrap;
}

.subscribe-button:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-soft);
}

/* ===================================
   FOOTER 🌈
   =================================== */

.footer {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
    border-top: 3px solid var(--pink);
    position: relative;
    z-index: 10;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--pink) 0%, var(--lavender) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1rem;
}

.footer-section p {
    font-family: var(--font-playful);
    color: #666;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--pink);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    background: var(--pink);
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 182, 193, 0.3);
}

.footer-bottom p {
    font-family: var(--font-playful);
    color: #666;
}

/* ===================================
   RESPONSIVE DESIGN 📱
   =================================== */

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .mascot-body {
        width: 80px;
        height: 80px;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* ===================================
   ANIMATIONS & EFFECTS ✨
   =================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card,
.feature-card {
    animation: fadeIn 0.6s ease-out;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }
