/* css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@600;700&display=swap');

:root {
    --primary: #15803d;
    --primary-dark: #166534;
}

* { font-family: 'Inter', system_ui, sans-serif; }
.logo-font { font-family: 'Poppins', sans-serif; }

.hero-bg {
    background: linear-gradient(rgba(21, 128, 61, 0.78), rgba(21, 128, 61, 0.78)), 
                url('https://picsum.photos/id/1015/1920/1080') center/cover no-repeat;
}

.product-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.15);
}

.search-bar {
    background: white;
    border: 2px solid #a7f3d0;
    border-radius: 9999px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.search-bar:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(21, 128, 61, 0.15);
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    padding: 12px 28px;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-primary:hover { background-color: var(--primary-dark); transform: translateY(-2px); }

.btn-secondary {
    padding: 12px 28px;
    border-radius: 9999px;
    font-weight: 600;
    border: 2px solid var(--primary);
    color: var(--primary);
    transition: all 0.3s;
}
.btn-secondary:hover { background-color: #f0fdf4; }

.large-button {
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: 9999px;
    font-weight: 600;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f1f5f9;
    padding: 6px 16px;
    border-radius: 9999px;
}

.avatar {
    width: 36px; height: 36px;
    background: #d1fae5;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.modal { animation: modalPop 0.3s ease forwards; }
@keyframes modalPop {
    from { opacity: 0; transform: scale(0.95) translateY(30px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}