/* ===== CSS Variables ===== */
:root {
    --primary: #0066cc;
    --primary-light: #00ccff;
    --primary-dark: #004499;
    --secondary: #00d4aa;
    --accent: #00ccff;
    --bg-dark: #0a1628;
    --bg-darker: #050d1a;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-highlight: rgba(255, 255, 255, 0.2);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --gradient-hero: linear-gradient(135deg, #0a1628 0%, #001a33 50%, #0066cc 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    --shadow-glow: 0 0 40px rgba(0, 204, 255, 0.3);
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.3);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* ===== Glassmorphic Floating Navigation ===== */
.nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    width: calc(100% - 40px);
    max-width: 1200px;
    z-index: 1000;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 50%,
        rgba(0, 204, 255, 0.05) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.37),
        0 0 40px rgba(0, 204, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
}

.nav:hover {
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(0, 204, 255, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ===== Ripple Logo Animation ===== */
.ripple-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    position: relative;
}

.logo-ripple-container {
    width: 50px;
    height: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-ripple-container.small {
    width: 40px;
    height: 40px;
}

.logo-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(0, 204, 255, 0.5));
}

.ripple-circle {
    animation: ripple-pulse 2s ease-out infinite;
    transform-origin: center;
}

.ripple-circle-inner {
    animation: ripple-pulse-inner 2s ease-out infinite;
    animation-delay: 0.3s;
    transform-origin: center;
}

@keyframes ripple-pulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    50% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes ripple-pulse-inner {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.15);
        opacity: 0;
    }
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, var(--primary-light) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 204, 255, 0.5));
    animation: logo-pulse 2s ease-out infinite;
}

@keyframes logo-pulse {
    0% {
        transform: scale(0.95);
        filter: drop-shadow(0 0 10px rgba(0, 204, 255, 0.5));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 20px rgba(0, 204, 255, 0.8));
    }
    100% {
        transform: scale(0.95);
        filter: drop-shadow(0 0 10px rgba(0, 204, 255, 0.5));
    }
}

.ripple-logo:hover .logo-img {
    animation: logo-hover 0.5s ease forwards;
}

@keyframes logo-hover {
    to {
        transform: scale(1.1);
        filter: drop-shadow(0 0 30px rgba(0, 204, 255, 1));
    }
}

/* ===== Nav Links with Liquid Wave Underline ===== */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: color 0.3s ease;
}

.link-text {
    position: relative;
    z-index: 1;
}

.wave-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--secondary), var(--primary-light));
    border-radius: 3px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.wave-underline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.8) 50%,
        transparent 100%);
    animation: wave-shine 2s ease-in-out infinite;
}

@keyframes wave-shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover .wave-underline {
    transform: scaleX(1);
}

/* ===== Morphing Droplet Contact Button ===== */
.droplet-btn {
    position: relative;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 15px rgba(0, 102, 204, 0.4),
        0 0 20px rgba(0, 204, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.droplet-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;
}

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

.droplet-btn:hover {
    border-radius: 50% 50% 50% 5%;
    transform: rotate(-45deg) scale(1.05);
    box-shadow: 
        0 8px 25px rgba(0, 102, 204, 0.5),
        0 0 40px rgba(0, 204, 255, 0.5);
    padding: 0.8rem;
}

.btn-text {
    transition: all 0.3s ease;
}

.droplet-btn:hover .btn-text {
    opacity: 0;
    transform: scale(0.8);
}

.droplet-icon {
    font-size: 1.2rem;
    opacity: 0;
    transform: scale(0) rotate(45deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg) scale(0);
}

.droplet-btn:hover .droplet-icon {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(45deg) scale(1);
}


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

#hero-canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.title-line {
    display: block;
}

.title-line.highlight {
    background: linear-gradient(135deg, #fff 0%, var(--primary-light) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 1rem 2.5rem;
    background: var(--primary);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.5);
}

.btn-primary.glow {
    box-shadow: 0 0 30px rgba(0, 204, 255, 0.5), 0 0 60px rgba(0, 204, 255, 0.3);
    animation: pulse-glow 2s ease-in-out infinite;
}

.btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: var(--glass-bg);
    border-color: var(--primary-light);
}

.btn-secondary .arrow {
    animation: bounce 1.5s infinite;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 13px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8), rgba(0,204,255,0.3));
    animation: float-bubble 8s ease-in-out infinite;
}

.bubble-1 { width: 20px; height: 20px; left: 10%; top: 20%; animation-delay: 0s; }
.bubble-2 { width: 15px; height: 15px; right: 15%; top: 40%; animation-delay: 2s; }
.bubble-3 { width: 25px; height: 25px; left: 20%; bottom: 30%; animation-delay: 4s; }
.bubble-4 { width: 18px; height: 18px; right: 25%; bottom: 20%; animation-delay: 6s; }

/* ===== Products Section ===== */
.products {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0d1f3a 100%);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 204, 255, 0.1);
    border: 1px solid rgba(0, 204, 255, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.carousel-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.carousel-wrapper {
    overflow: hidden;
    padding: 2rem 0;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card {
    flex: 0 0 calc(25% - 1.5rem);
    min-width: 280px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 204, 255, 0.2);
    border-color: var(--primary-light);
}

.product-card.active {
    background: rgba(0, 102, 204, 0.15);
    border-color: var(--primary);
    transform: scale(1.05);
}

/* ===== Product Card Bottle Images ===== */
.bottle-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px;
}

.bottle-image-wrapper.jar-wrapper {
    border-radius: 15px;
}

.bottle-image {
    width: auto;
    height: 90%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 102, 204, 0.3));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: bottle-float 4s ease-in-out infinite;
}

.jar-image {
    height: 85%;
    border-radius: 10px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 204, 255, 0.1) 0%,
        transparent 50%,
        rgba(0, 102, 204, 0.1) 100%
    );
    pointer-events: none;
    border-radius: inherit;
}

.product-card:hover .bottle-image {
    transform: scale(1.08) translateY(-10px);
    filter: drop-shadow(0 20px 40px rgba(0, 204, 255, 0.4));
}

.product-card.active .bottle-image {
    animation: bottle-float-active 3s ease-in-out infinite;
}

@keyframes bottle-float-active {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
        filter: drop-shadow(0 10px 30px rgba(0, 102, 204, 0.3));
    }
    50% { 
        transform: translateY(-15px) rotate(2deg);
        filter: drop-shadow(0 25px 50px rgba(0, 204, 255, 0.5));
    }
}

.bottle-3d {
    position: relative;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(0,204,255,0.3) 50%, rgba(255,255,255,0.8) 100%);
    border-radius: 20px;
    box-shadow: 
        inset 0 0 30px rgba(255,255,255,0.5),
        0 10px 40px rgba(0, 102, 204, 0.3),
        0 0 60px rgba(0, 204, 255, 0.2);
    animation: bottle-float 4s ease-in-out infinite;
}

.small-bottle { width: 60px; height: 140px; }
.medium-bottle { width: 80px; height: 180px; }
.large-bottle { width: 90px; height: 200px; }
.jar-bottle { width: 120px; height: 160px; border-radius: 10px; }

.bottle-3d::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 20%;
    width: 30%;
    height: 60%;
    background: linear-gradient(180deg, rgba(255,255,255,0.8) 0%, transparent 100%);
    border-radius: 10px;
}

.bottle-3d::after {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 20px;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    border-radius: 5px 5px 0 0;
}

.condensation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.8) 1px, transparent 1px),
        radial-gradient(circle at 60% 50%, rgba(255,255,255,0.6) 2px, transparent 2px),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.7) 1.5px, transparent 1.5px),
        radial-gradient(circle at 40% 70%, rgba(255,255,255,0.5) 1px, transparent 1px),
        radial-gradient(circle at 70% 80%, rgba(255,255,255,0.8) 1.5px, transparent 1.5px);
    opacity: 0.7;
    animation: condensation-shimmer 3s ease-in-out infinite;
}

.size-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: var(--primary);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.card-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.use-case {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.card-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature {
    font-size: 0.8rem;
    color: var(--primary-light);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 0.75rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background: var(--primary-light);
    border-color: var(--primary-light);
    box-shadow: 0 0 15px rgba(0, 204, 255, 0.5);
}

.use-cases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 4rem auto 0;
}

.use-case-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.use-case-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-light);
}

.use-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.use-case-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.use-case-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===== Customization Section ===== */
.customize {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, #0d1f3a 0%, var(--bg-darker) 100%);
    position: relative;
}

.customize-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.preview-panel {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#customize-canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
}

.preview-overlay {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bottle-preview-real {
    position: relative;
    width: 200px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.customize-bottle-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 102, 204, 0.4));
    animation: bottle-rotate-real 8s ease-in-out infinite;
}

@keyframes bottle-rotate-real {
    0%, 100% { 
        transform: perspective(500px) rotateY(-5deg);
    }
    50% { 
        transform: perspective(500px) rotateY(5deg);
    }
}

.bottle-preview-real .label-preview {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 100px;
    background: linear-gradient(135deg, #0066cc 0%, #00ccff 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
    z-index: 10;
}

.bottle-preview {
    display: none;
}

.label-preview {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateY(0deg);
    width: 160px;
    height: 120px;
    background: linear-gradient(135deg, #0066cc 0%, #00ccff 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
}

.label-content {
    text-align: center;
    padding: 0.75rem;
}

.label-logo {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.label-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    line-height: 1.3;
    word-wrap: break-word;
}

.label-date {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.8);
    margin-top: 0.5rem;
}

.preview-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
}

.rotate-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.rotate-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.rotate-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.design-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
}

.panel-section {
    margin-bottom: 2rem;
}

.panel-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.option-group {
    margin-bottom: 1.5rem;
}

.option-group label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.option-group input[type="text"] {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.option-group input[type="text"]:focus {
    outline: none;
    border-color: var(--primary-light);
    background: rgba(0, 0, 0, 0.3);
}

.text-presets {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.preset-btn {
    padding: 0.5rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.preset-btn:hover, .preset-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.upload-area {
    border: 2px dashed var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.upload-area:hover {
    border-color: var(--primary-light);
    background: rgba(0, 204, 255, 0.05);
}

.upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
}

.upload-icon {
    font-size: 2rem;
}

.color-presets {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.color-btn {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    border: 3px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.color-btn.active {
    border-color: white;
    transform: scale(1.1);
}

.color-btn:hover {
    transform: scale(1.1);
}

.font-presets {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.font-btn {
    padding: 0.75rem 1.25rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.font-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.font-btn[data-font="elegant"] { font-family: 'Georgia', serif; }
.font-btn[data-font="modern"] { font-family: 'Inter', sans-serif; }
.font-btn[data-font="playful"] { font-family: 'Comic Sans MS', cursive; }

.pricing {
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.price-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-light);
}

.full-width {
    width: 100%;
}

/* ===== Process Section ===== */
.process {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, var(--bg-darker) 0%, #0a1628 100%);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(0, 204, 255, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 102, 204, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.process-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.flow-path {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    height: 200px;
    pointer-events: none;
    z-index: 1;
}

.flow-svg {
    width: 100%;
    height: 100%;
}

.flow-line {
    stroke-dasharray: 10, 5;
    animation: flow-dash 2s linear infinite;
}

.stages-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 10;
    margin-top: 3rem;
}

.stage-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.5rem 1rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.stage-card:hover {
    transform: translateY(-10px);
    background: rgba(0, 204, 255, 0.1);
    border-color: var(--primary-light);
    box-shadow: 0 20px 40px rgba(0, 204, 255, 0.2);
}

.stage-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 204, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.stage-icon span {
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.stage-number {
    display: block;
    font-size: 0.75rem;
    color: var(--primary-light);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stage-content h3 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.stage-content p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.process-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--glass-border);
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ===== Immersive 3D Footer ===== */
.immersive-footer {
    position: relative;
    padding: 0 0 2rem;
    background: linear-gradient(180deg, #0a1628 0%, #050d1a 50%, #020812 100%);
    overflow: hidden;
    border-top: none;
}

/* Animated Water Wave Top Edge */
.wave-container {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.wave-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.wave-path {
    animation: wave-move 8s ease-in-out infinite;
}

.wave-back {
    animation-delay: 0s;
    opacity: 0.6;
}

.wave-mid {
    animation-delay: -2s;
    opacity: 0.8;
}

.wave-front {
    animation-delay: -4s;
    opacity: 1;
}

@keyframes wave-move {
    0%, 100% {
        d: path("M0,60 C240,100 480,20 720,60 C960,100 1200,20 1440,60 L1440,120 L0,120 Z");
    }
    25% {
        d: path("M0,70 C240,20 480,100 720,70 C960,20 1200,100 1440,70 L1440,120 L0,120 Z");
    }
    50% {
        d: path("M0,50 C240,90 480,30 720,50 C960,90 1200,30 1440,50 L1440,120 L0,120 Z");
    }
    75% {
        d: path("M0,65 C240,30 480,90 720,65 C960,30 1200,90 1440,65 L1440,120 L0,120 Z");
    }
}

/* Floating Bubbles in Footer */
.footer-bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.footer-bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8), rgba(0,204,255,0.3));
    box-shadow: 
        inset 0 0 20px rgba(255,255,255,0.5),
        0 0 20px rgba(0,204,255,0.3);
    animation: footer-bubble-float 10s ease-in-out infinite;
}

.bubble-sm { width: 15px; height: 15px; animation-duration: 8s; }
.bubble-md { width: 25px; height: 25px; animation-duration: 12s; }
.bubble-lg { width: 40px; height: 40px; animation-duration: 15s; }
.bubble-xl { width: 60px; height: 60px; animation-duration: 18s; }

@keyframes footer-bubble-float {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translateY(-40px) translateX(15px) scale(1.1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) translateX(-10px) scale(0.9);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-50px) translateX(8px) scale(1.05);
        opacity: 0.8;
    }
}

/* Footer Content Grid */
.immersive-footer .footer-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

/* Brand Column */
.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.footer-logo .logo-text {
    font-size: 1.8rem;
}

.brand-tagline {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 280px;
}

.brand-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.mini-stat {
    display: flex;
    flex-direction: column;
}

.mini-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mini-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Quick Links Column */
.footer-col {
    display: flex;
    flex-direction: column;
}

.col-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.col-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--secondary));
    border-radius: 3px;
}

.footer-link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

.link-arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--primary-light);
}

.footer-link:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}

.footer-link:hover .link-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Social Column */
.social-handle {
    font-size: 1rem;
    color: var(--primary-light);
    font-weight: 500;
    margin-bottom: 1rem;
}

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

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon svg {
    width: 22px;
    height: 22px;
    transition: all 0.3s ease;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    border-color: transparent;
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon:hover svg {
    color: white;
    transform: scale(1.1);
}

/* Instagram glow effect */
.social-icon.instagram:hover {
    box-shadow: 
        0 5px 20px rgba(225, 48, 108, 0.5),
        0 0 30px rgba(225, 48, 108, 0.3);
}

/* WhatsApp glow effect */
.social-icon.whatsapp:hover {
    box-shadow: 
        0 5px 20px rgba(37, 211, 102, 0.5),
        0 0 30px rgba(37, 211, 102, 0.3);
}

.social-icon.instagram:hover::before {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #f77737);
}

.social-icon.whatsapp:hover::before {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

/* Newsletter */
.newsletter p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.newsletter-input {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input input:focus {
    border-color: var(--primary-light);
    background: rgba(255, 255, 255, 0.05);
}

.newsletter-input input::placeholder {
    color: var(--text-muted);
}

.newsletter-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 204, 255, 0.4);
}

/* Founder's Note Column */
.founder-col {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.founder-content {
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary-light);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: -1rem;
    font-family: Georgia, serif;
}

.founder-quote {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1rem;
}

.founder-signature {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.founder-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.founder-title {
    font-size: 0.8rem;
    color: var(--primary-light);
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    position: relative;
    z-index: 10;
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
    margin-top: 2rem;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright-with-bottle {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Rotating 3D Bottle Icon */
.rotating-bottle {
    width: 30px;
    height: 50px;
    animation: bottle-rotate-3d 4s ease-in-out infinite;
    transform-style: preserve-3d;
    perspective: 200px;
}

.bottle-icon-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(0, 204, 255, 0.5));
}

@keyframes bottle-rotate-3d {
    0%, 100% {
        transform: rotateY(0deg);
    }
    25% {
        transform: rotateY(15deg);
    }
    50% {
        transform: rotateY(0deg);
    }
    75% {
        transform: rotateY(-15deg);
    }
}

.copyright-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.company-name {
    color: var(--primary-light);
    font-weight: 600;
}

.bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.bottom-links a:hover {
    color: var(--primary-light);
}

.separator {
    color: var(--glass-border);
}


/* ===== Animations ===== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes float-bubble {
    0%, 100% { 
        transform: translateY(0) translateX(0);
        opacity: 0.6;
    }
    25% { 
        transform: translateY(-30px) translateX(10px);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-20px) translateX(-5px);
        opacity: 0.6;
    }
    75% { 
        transform: translateY(-40px) translateX(5px);
        opacity: 0.9;
    }
}

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

@keyframes bottle-rotate {
    0%, 100% { transform: translateX(-50%) translateY(-50%) rotateY(0deg); }
    25% { transform: translateX(-50%) translateY(-50%) rotateY(5deg); }
    75% { transform: translateX(-50%) translateY(-50%) rotateY(-5deg); }
}

@keyframes condensation-shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 30px rgba(0, 204, 255, 0.5), 0 0 60px rgba(0, 204, 255, 0.3); }
    50% { box-shadow: 0 0 50px rgba(0, 204, 255, 0.7), 0 0 100px rgba(0, 204, 255, 0.5); }
}

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

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

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

@keyframes flow-dash {
    to { stroke-dashoffset: -30; }
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
    .stages-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .customize-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-card {
        flex: 0 0 calc(33.333% - 1.33rem);
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    
    .nav {
        width: calc(100% - 20px);
        padding: 0.6rem 1rem;
    }
    
    .droplet-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .stages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .product-card {
        flex: 0 0 calc(50% - 1rem);
    }
    
    .use-cases {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .immersive-footer .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .founder-col {
        grid-column: span 2;
    }
    
    .process-stats {
        gap: 2rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .nav {
        top: 10px;
        padding: 0.5rem 1rem;
        width: calc(100% - 20px);
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .logo-ripple-container {
        width: 40px;
        height: 40px;
    }
    
    .droplet-btn .btn-text {
        display: none;
    }
    
    .droplet-btn {
        padding: 0.6rem;
        border-radius: 50%;
    }
    
    .droplet-icon {
        opacity: 1;
        position: static;
        transform: none;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-card {
        flex: 0 0 100%;
    }
    
    .use-cases {
        grid-template-columns: 1fr;
    }
    
    .immersive-footer .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .founder-col {
        grid-column: span 1;
    }
    
    .wave-container {
        height: 80px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .process-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .bottle-preview {
        width: 150px;
        height: 280px;
    }
    
    .label-preview {
        width: 120px;
        height: 90px;
    }
    
    .label-text {
        font-size: 0.6rem;
    }
    
    .design-panel {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .stages-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .color-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
}

/* ===== Theme Variations ===== */
[data-theme="sunset"] .label-preview {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
}

[data-theme="forest"] .label-preview {
    background: linear-gradient(135deg, #2d5016 0%, #4ade80 100%);
}

[data-theme="royal"] .label-preview {
    background: linear-gradient(135deg, #4c1d95 0%, #c084fc 100%);
}

[data-theme="elegant"] .label-preview {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(255,255,255,0.2);
}

[data-font="elegant"] .label-text {
    font-family: 'Georgia', serif;
    font-style: italic;
}

[data-font="modern"] .label-text {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

[data-font="playful"] .label-text {
    font-family: 'Comic Sans MS', cursive;
}
