:root {
    /* Creative Spring Palette */
    --primary-bg: #fdfbf7; 
    --secondary-bg: #f1f8f1; /* Soft Sage */
    --accent-gold: #b8860b;
    --accent-pink: #fce4ec; /* Petal Pink */
    --accent-lavender: #f3e5f5;
    --accent-mint: #e8f5e9;
    --text-main: #1b3022; /* Deep Forest Green */
    --text-muted: #78909c;
    --white: #ffffff;
    
    /* Creative Layout Variables */
    --border-radius-organic: 60% 40% 30% 70% / 60% 30% 70% 40%;
    --transition-fancy: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Floating Motifs Animation */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.floating-motif {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
    animation: float 6s ease-in-out infinite;
}

/* Glassmorphism Header */
header {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(184, 134, 11, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--text-main);
}

/* Creative Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background: radial-gradient(circle at top right, var(--accent-pink), transparent),
                radial-gradient(circle at bottom left, var(--accent-mint), transparent);
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5.5rem;
    line-height: 1;
    margin-bottom: 20px;
}

.hero-visual {
    position: absolute;
    right: -5%;
    width: 50%;
    height: 80%;
    background: url('https://images.unsplash.com/photo-1490750967868-88aa4486c946?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; /* Organic shape */
    animation: morph 10s ease-in-out infinite;
    box-shadow: 0 40px 100px rgba(0,0,0,0.1);
}

@keyframes morph {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

/* Organic Product Cards */
.product-card {
    background: var(--white);
    padding: 30px;
    border-radius: 40px;
    transition: var(--transition-fancy);
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
    text-align: center;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(27, 48, 34, 0.08);
}

.product-img-wrapper {
    width: 100%;
    height: 300px;
    border-radius: var(--border-radius-organic);
    overflow: hidden;
    margin-bottom: 25px;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Creative Tabs */
.tab-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 60px 0;
}

.tab-btn {
    padding: 12px 30px;
    border-radius: 50px;
    border: 1px solid var(--text-main);
    background: transparent;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-fancy);
}

.tab-btn.active {
    background: var(--text-main);
    color: var(--white);
    transform: scale(1.1);
}

/* Bunny Mascot Accent */
.bunny-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 10px;
}

/* Section Transitions */
.organic-divider {
    height: 150px;
    width: 100%;
    background: var(--secondary-bg);
    clip-path: ellipse(50% 100% at 50% 100%);
    margin-top: -150px;
}

/* Buttons */
/* Butterfly Wing Flap */
@keyframes flap {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(75deg); }
}

/* Eratic Flight Paths */
@keyframes fly-1 {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(100px, -50px) rotate(15deg); }
    50% { transform: translate(200px, 20px) rotate(-10deg); }
    75% { transform: translate(100px, 80px) rotate(20deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes fly-2 {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-80px, 120px) rotate(-20deg); }
    66% { transform: translate(150px, -60px) rotate(10deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

.butterfly-container {
    position: absolute;
    pointer-events: none;
    z-index: 1001; /* Above header */
    width: 30px;
    height: 30px;
}

.butterfly {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.wing {
    position: absolute;
    width: 15px;
    height: 25px;
    border-radius: 50% 50% 0 50%;
    background: var(--accent-lavender);
    opacity: 0.8;
    animation: flap 0.2s infinite ease-in-out;
}

.wing-right {
    left: 15px;
    border-radius: 50% 50% 50% 0;
    transform-origin: left center;
}

.wing-left {
    transform-origin: right center;
    animation-delay: 0.1s;
}

.butterfly-1 { animation: fly-1 12s infinite linear; top: 20px; left: 10%; }
.butterfly-2 { animation: fly-2 15s infinite linear; top: 40px; right: 15%; }
.butterfly-3 { animation: fly-1 18s infinite linear; top: 10px; left: 40%; animation-delay: 2s; }

.butterfly-1 .wing { background: var(--accent-lavender); }
.butterfly-2 .wing { background: var(--accent-gold); opacity: 0.6; }
.butterfly-3 .wing { background: #b2dfdb; } /* Minty butterfly */

.btn-bloom {
    padding: 18px 45px;
    background: var(--text-main);
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: var(--transition-fancy);
    box-shadow: 0 10px 30px rgba(27, 48, 34, 0.2);
}

.btn-bloom:hover {
    transform: scale(1.05);
    background: var(--accent-gold);
}
