@import url(https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap);
body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f0fdf4 0%, #f3f4f6 100%);
    min-height: 100vh
}

.card-glass {
    background: rgb(255 255 255 / .85);
    backdrop-filter: blur(10px);
    border: 1px solid rgb(255 255 255 / .2);
    box-shadow: 0 8px 32px rgb(0 0 0 / .05)
}

.gradient-bg {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%)
}

.gradient-bg-alt {
    background: linear-gradient(135deg, #059669 0%, #10B981 100%)
}

.result-card {
    transition: all 0.3s ease
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px -10px rgb(16 185 129 / .2)
}

.food-item {
    transition: all 0.2s ease
}

.food-item:hover {
    transform: scale(1.02);
    background: rgb(16 185 129 / .1);
    border-color: #10B981;
}

.progress-bar {
    transition: width 1s ease-in-out
}

.floating-label {
    transform: translateY(-50%);
    background: #fff;
    padding: 0 .5rem
}

.nav-gradient {
    background: linear-gradient(90deg, #064E3B 0%, #065F46 100%)
}

.footer-bg {
    background: linear-gradient(180deg, #1f2937 0%, #111827 100%)
}

input[type="range"] {
    -webkit-appearance: none;
    height: 8px;
    width: 100%;
    border-radius: 5px;
    background: #e5e7eb;
    outline: none
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #10B981;
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgb(0 0 0 / .2)
}

input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid #d1d5db;
    outline: none;
    cursor: pointer;
    position: relative
}

input[type="checkbox"]:checked {
    background-color: #10B981;
    border-color: #10B981
}

input[type="checkbox"]:checked::before {
    content: "✓";
    position: absolute;
    color: #fff;
    font-size: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0
    }

    to {
        transform: translateX(0);
        opacity: 1
    }
}

.notification {
    animation: slideIn 0.3s ease-out
}

@keyframes bounce-slow {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-15px)
    }
}

.animate-bounce-slow {
    animation: bounce-slow 3s infinite ease-in-out
}

.animation-delay-500 {
    animation-delay: 0.5s
}

.animation-delay-1000 {
    animation-delay: 1s
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

.gradient-text {
    background: linear-gradient(90deg, #10B981, #059669, #F59E0B);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: #fff0;
    animation: gradient-shift 6s infinite linear
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0)
}

.hover-scale {
    transition: transform 0.3s ease-in-out
}

.hover-scale:hover {
    transform: scale(1.02)
}