﻿@tailwind base;
@tailwind components;
@tailwind utilities;

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
    color: #0f172a;
    margin: 0;
}

.bg-primary {
    background: #06142f;
}

.container-site {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.menu-link {
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: all .2s ease;
}

    .menu-link:hover {
        color: #10b981;
    }

.btn-primary {
    background: #10b981;
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
}

.card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15,23,42,.08);
}

.stock-card {
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(15,23,42,.08);
}

.category-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(15,23,42,.08);
    transition: .2s;
}

    .category-card:hover {
        transform: translateY(-4px);
    }

.section-title {
    font-size: 32px;
    font-weight: 700;
}

.rounded-card {
    border-radius: 24px;
}

.text-accent {
    color: #10b981;
}

.bg-primary {
    background: radial-gradient(circle at top right,#10b98133,transparent 30%), #06142f;
}
