@import url('https://fonts.googleapis.com/css2?family=Lilita+One&family=Nunito:wght@400;700&display=swap');

:root {
    --fuchsia: #FF006E;
    --yellow: #FFBE0B;
    --cyan: #3A86FF;
    --cream: #FFFBFA;
    --dark: #2D3047;
    --shadow: rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

h1, h2, h3, .logo {
    font-family: 'Lilita One', cursive;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Background Animation */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #fff 25%, transparent 25%),
                linear-gradient(-45deg, #fff 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, #fff 75%),
                linear-gradient(-45deg, transparent 75%, #fff 75%);
    background-size: 40px 40px;
    background-color: #fff9fc;
    opacity: 0.3;
    z-index: -1;
}

/* Layout */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    padding: 80px 0;
}

/* Header & Nav */
header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px var(--shadow);
    border-bottom: 3px solid var(--yellow);
}

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

.logo {
    font-size: 2rem;
    color: var(--fuchsia);
    text-decoration: none;
    text-shadow: 2px 2px var(--yellow);
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.1) rotate(-5deg);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

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

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

.cart-counter {
    background: var(--cyan);
    color: white;
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-left: 5px;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle, #fff, #ffeef8);
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    color: var(--fuchsia);
    text-shadow: 4px 4px var(--yellow);
    margin-bottom: 20px;
    animation: bounceIn 1s ease;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--cyan);
    font-weight: 700;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.2rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    box-shadow: 0 10px 0 var(--shadow);
}

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

.btn-primary:hover {
    background: var(--yellow);
    color: var(--dark);
    transform: translateY(-5px);
    box-shadow: 0 15px 0 var(--shadow);
}

/* Video Section */
.video-section {
    background: var(--cyan);
    color: white;
    text-align: center;
    border-radius: 60px 60px 0 0;
}

.video-container {
    max-width: 800px;
    margin: 40px auto;
    border: 10px solid var(--yellow);
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

video {
    width: 100%;
    display: block;
}

/* Product Grid */
.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 50px;
    color: var(--fuchsia);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 40px;
    padding: 20px;
    text-align: center;
    border: 3px solid #eee;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    border-color: var(--fuchsia);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow);
}

.product-card img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
}

.product-card h3 {
    margin-bottom: 10px;
    color: var(--dark);
}

.price {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--cyan);
    display: block;
    margin-bottom: 20px;
}

/* Why Choose Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.feature-card {
    padding: 40px;
    background: var(--yellow);
    border-radius: 40px;
    transition: var(--transition);
}

.feature-card:nth-child(even) {
    background: var(--cyan);
    color: white;
}

.feature-card i {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Banner CTA */
.cta-banner {
    background: var(--fuchsia);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 20px;
    border-radius: 60px 60px 0 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin-left: 20px;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--yellow);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Animations */
@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); opacity: 1; }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

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

.reveal {
    animation: fadeIn 0.8s ease forwards;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Simplification for now */
    }
    .hero-content h1 {
        font-size: 4rem;
    }
}
