* {
    font-family: 'Inter', sans-serif;
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

html {
    scroll-behavior: smooth;
}

.page {
    display: none;
    animation: fadeIn 0.4s ease;
}

    .page.active {
        display: block;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.pulse-dot::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: inherit;
    animation: pulse-ring 2s infinite;
}

.glass {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
}

.hero-bg {
    background: linear-gradient(135deg, rgba(6,78,59,0.88) 0%, rgba(20,83,45,0.75) 50%, rgba(21,128,61,0.55) 100%);
}

.nav-link {
    position: relative;
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: #059669;
        transition: width 0.3s;
    }

    .nav-link:hover::after, .nav-link.active::after {
        width: 100%;
    }

.product-card {
    transition: all 0.3s;
}

    .product-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    }

.btn-primary {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

    .btn-primary:hover {
        background: linear-gradient(135deg, #047857 0%, #059669 100%);
    }

.admin-sidebar {
    background: linear-gradient(180deg, #064e3b 0%, #065f46 100%);
}

.admin-tab.active {
    background: rgba(16,185,129,0.2);
    border-left: 3px solid #10b981;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16,185,129,0.2);
}

.modal-overlay {
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
}

.toast {
    animation: slideIn 0.3s ease;
}
.leaf-pattern {
    background-image: radial-gradient(circle at 20% 50%, rgba(16,185,129,0.06) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(132,204,22,0.06) 0%, transparent 50%);
}

.logo-img {
    height: 82px;
    width: auto;
}
