/* Mayura Shop Custom Styling */
:root {
    --primary-green: #15803d;
    --primary-dark: #166534;
    --accent-light: #f0fdf4;
    --accent-yellow: #eab308;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: #f9fafb;
    color: #1f2937;
}

.bg-leaf {
    background-color: var(--primary-green);
}

.bg-leaf-dark {
    background-color: var(--primary-dark);
}

.text-leaf {
    color: var(--primary-green);
}

.btn-leaf {
    background-color: var(--primary-green);
    color: white;
    transition: all 0.2s ease-in-out;
}

.btn-leaf:hover {
    background-color: var(--primary-dark);
    color: white;
}

.product-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.badge-stock {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
}
