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

:root {
    --sky-blue: #e0faff;
    --sunny-yellow: #FFE135;
    --peach: #FFAB91;
    --coral: #FF7043;
    --leaf-green: #66BB6A;
    --cloud-white: #ffffff;
    --text-dark: #2E2E2E;
    --text-light: #5A5A5A;
    --pastel-pink: #F8BBD9;
    --pastel-purple: #C8A2C8;
    --gradient-summer: linear-gradient(135deg, #FFE135 0%, #FFAB91 50%, #FF7043 100%);
    --gradient-sky: linear-gradient(to bottom, #87CEEB 0%, #e0faff 100%);
    --shadow-soft: 0 8px 32px rgba(255, 225, 53, 0.3);
    --shadow-peach: 0 12px 40px rgba(255, 171, 145, 0.4);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--sky-blue);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

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

.hidden {
    display: none !important;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 3px solid var(--sunny-yellow);
    box-shadow: 0 4px 20px rgba(255, 225, 53, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    font-family: 'Fredoka', cursive;
    font-size: 1.8rem;
    background: var(--gradient-summer);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--gradient-summer);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-sky);
}

.summer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Clouds */
.clouds {
    position: absolute;
    width: 100%;
    height: 100%;
}

.cloud {
    position: absolute;
    background: var(--cloud-white);
    border-radius: 50px;
    opacity: 0.9;
    animation: float 20s ease-in-out infinite;
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: var(--cloud-white);
    border-radius: 50px;
}

.cloud-1 {
    width: 100px;
    height: 40px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

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

.cloud-1::after {
    width: 60px;
    height: 40px;
    top: -15px;
    right: 10px;
}

.cloud-2 {
    width: 80px;
    height: 30px;
    top: 15%;
    right: 20%;
    animation-delay: -5s;
}

.cloud-2::before {
    width: 40px;
    height: 40px;
    top: -20px;
    left: 8px;
}

.cloud-2::after {
    width: 50px;
    height: 35px;
    top: -12px;
    right: 8px;
}

.cloud-3 {
    width: 120px;
    height: 50px;
    top: 60%;
    left: 80%;
    animation-delay: -10s;
}

.cloud-3::before {
    width: 60px;
    height: 60px;
    top: -30px;
    left: 15px;
}

.cloud-3::after {
    width: 70px;
    height: 50px;
    top: -20px;
    right: 15px;
}

.cloud-4 {
    width: 90px;
    height: 35px;
    top: 70%;
    left: 5%;
    animation-delay: -15s;
}

.cloud-4::before {
    width: 45px;
    height: 45px;
    top: -22px;
    left: 12px;
}

.cloud-4::after {
    width: 55px;
    height: 40px;
    top: -15px;
    right: 12px;
}

@keyframes float {
    0%, 100% { transform: translateX(0px) translateY(0px); }
    25% { transform: translateX(20px) translateY(-10px); }
    50% { transform: translateX(40px) translateY(0px); }
    75% { transform: translateX(20px) translateY(10px); }
}

/* Sun with Sunglasses */
.sun {
    position: absolute;
    top: 15%;
    right: 15%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--sunny-yellow) 0%, #FFD700 100%);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px rgba(255, 225, 53, 0.6);
}

.sun::before {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, transparent 60%, var(--sunny-yellow) 70%, transparent 80%);
    border-radius: 50%;
    animation: rotate 15s linear infinite reverse;
}

.sunglasses {
    position: relative;
    z-index: 2;
}

.lens {
    width: 25px;
    height: 20px;
    background: #333;
    border-radius: 50%;
    position: absolute;
    top: 0;
}

.lens-left {
    left: -15px;
}

.lens-right {
    right: -15px;
}

.bridge {
    width: 8px;
    height: 3px;
    background: #333;
    position: absolute;
    top: 8px;
    left: -4px;
    border-radius: 2px;
}

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

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.kite {
    position: absolute;
    animation: kiteFloat 15s ease-in-out infinite;
}

.kite-body {
    width: 30px;
    height: 30px;
    background: var(--gradient-summer);
    transform: rotate(45deg);
    border-radius: 4px;
    position: relative;
}

.kite-body::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 40px;
    background: var(--text-dark);
}

.kite-tail {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 30px;
    background: var(--text-dark);
}

.kite-tail::before,
.kite-tail::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--peach);
    border-radius: 50%;
}

.kite-tail::before {
    top: 10px;
    left: -3px;
}

.kite-tail::after {
    bottom: 5px;
    left: -3px;
}

.kite-1 {
    top: 25%;
    left: 25%;
    animation-delay: 0s;
}

.kite-2 {
    top: 45%;
    right: 30%;
    animation-delay: -8s;
}

@keyframes kiteFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-30px) rotate(5deg); }
    50% { transform: translateY(-20px) rotate(-3deg); }
    75% { transform: translateY(-40px) rotate(7deg); }
}

.bird {
    position: absolute;
    width: 20px;
    height: 20px;
    animation: birdFly 12s ease-in-out infinite;
}

.bird::before,
.bird::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 4px;
    background: var(--text-dark);
    border-radius: 2px;
    animation: flap 2s ease-in-out infinite;
}

.bird::before {
    left: 0;
    transform: rotate(-20deg);
}

.bird::after {
    right: 0;
    transform: rotate(20deg);
}

.bird-1 {
    top: 30%;
    left: 60%;
    animation-delay: 0s;
}

.bird-2 {
    top: 35%;
    left: 65%;
    animation-delay: -3s;
}

.bird-3 {
    top: 40%;
    left: 70%;
    animation-delay: -6s;
}

@keyframes birdFly {
    0% { transform: translateX(0px) translateY(0px); }
    25% { transform: translateX(100px) translateY(-20px); }
    50% { transform: translateX(200px) translateY(-10px); }
    75% { transform: translateX(300px) translateY(-30px); }
    100% { transform: translateX(400px) translateY(-15px); }
}

@keyframes flap {
    0%, 100% { transform: rotate(-20deg) scaleY(1); }
    50% { transform: rotate(-20deg) scaleY(0.3); }
}

/* Plants */
.plants {
    position: absolute;
    width: 100%;
    height: 100%;
}

.plant {
    position: absolute;
    font-size: 2rem;
    animation: plantSway 6s ease-in-out infinite;
}

.plant-1 {
    bottom: 10%;
    left: 10%;
    animation-delay: 0s;
}

.plant-2 {
    bottom: 15%;
    right: 10%;
    animation-delay: -2s;
}

.plant-3 {
    bottom: 20%;
    left: 80%;
    animation-delay: -4s;
}

.plant-4 {
    bottom: 25%;
    left: 5%;
    animation-delay: -1s;
}

@keyframes plantSway {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(3deg); }
    75% { transform: rotate(-3deg); }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.collection-badge {
    margin-bottom: 30px;
    animation: bounce 2s ease-in-out infinite;
}

.collection-badge span {
    font-family: 'Fredoka', cursive;
    background: var(--cloud-white);
    color: var(--coral);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--sunny-yellow);
}

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

.hero-title {
    font-family: 'Pacifico', cursive;
    font-size: 4rem;
    background: var(--gradient-summer);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    filter: drop-shadow(2px 2px 4px rgba(255, 225, 53, 0.3));
    line-height: 1.2;
}

.hero-subtitle {
    font-family: 'Fredoka', cursive;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-weight: 500;
    letter-spacing: 1px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid var(--sunny-yellow);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    min-width: 120px;
}

.stat:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-peach);
}

.stat-number {
    font-family: 'Fredoka', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-summer);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    font-size: 2rem;
    animation: rotate 4s linear infinite;
}

/* Products Section */
.products-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--sky-blue) 0%, #f0fdff 100%);
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(255,225,53,0.1)"/><circle cx="90" cy="30" r="1.5" fill="rgba(255,171,145,0.1)"/><circle cx="30" cy="70" r="1" fill="rgba(102,187,106,0.1)"/><circle cx="70" cy="90" r="1.2" fill="rgba(255,225,53,0.1)"/></svg>') repeat;
    opacity: 0.5;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Pacifico', cursive;
    font-size: 3.5rem;
    background: var(--gradient-summer);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    filter: drop-shadow(2px 2px 4px rgba(255, 225, 53, 0.3));
}

.section-subtitle {
    font-family: 'Fredoka', cursive;
    font-size: 1.4rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 1px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  /* Optional for nice centering and max width: */
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center;
}


.product-card {
    background: var(--cloud-white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 225, 53, 0.2);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 3px solid transparent;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--gradient-summer);
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-peach);
}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 25px 25px 0 0;
    background: var(--gradient-sky);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1) rotate(2deg);
}

.product-info {
    padding: 25px;
    text-align: center;
    background: var(--cloud-white);
}

.product-name {
    font-family: 'Fredoka', cursive;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.product-price {
    font-family: 'Fredoka', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-summer);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.view-btn {
    font-family: 'Fredoka', cursive;
    background: var(--gradient-summer);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.view-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.view-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-peach);
}

.view-btn:hover::before {
    left: 100%;
}

/* Footer */
.footer {
    background: var(--cloud-white);
    padding: 40px 0 20px;
    border-top: 3px solid var(--sunny-yellow);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--sky-blue) 0%, var(--cloud-white) 100%);
    opacity: 0.3;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.footer-brand h3 {
    font-family: 'Fredoka', cursive;
    font-size: 1.8rem;
    background: var(--gradient-summer);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.footer-brand p {
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    font-size: 1rem;
    margin-top: 5px;
}

.footer-links a {
    color: var(--coral);
    font-size: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 50%;
    background: var(--sky-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.footer-links a:hover {
    background: var(--gradient-summer);
    color: white;
    transform: scale(1.2) rotate(360deg);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid var(--sky-blue);
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Notification */
.notification {
    position: fixed;
    top: 30px;
    right: 30px;
    background: var(--gradient-summer);
    color: white;
    padding: 15px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3000;
    transform: translateX(400px);
    transition: all 0.4s ease;
    box-shadow: var(--shadow-peach);
    font-family: 'Fredoka', cursive;
    font-weight: 600;
}

.notification.show {
    transform: translateX(0);
    animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
    0% { transform: translateX(400px); }
    60% { transform: translateX(-10px); }
    100% { transform: translateX(0); }
}

/* Loading State */
.loading {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
    font-family: 'Fredoka', cursive;
    grid-column: 1 / -1;
    font-size: 1.2rem;
}

.loading::after {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    margin: 20px auto;
    border: 4px solid var(--sky-blue);
    border-top: 4px solid var(--sunny-yellow);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-top: 2px solid var(--sunny-yellow);
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .product-card {
        margin: 0 auto;
        max-width: 320px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--sky-blue);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-summer);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--coral);
}

/* Selection styling */
::selection {
    background: var(--sunny-yellow);
    color: var(--text-dark);
}

::-moz-selection {
    background: var(--sunny-yellow);
    color: var(--text-dark);
}
