/* =========================================
   RATION GENERAL - REFINED BRAND STYLES
   ========================================= */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:wght@700;800&display=swap");

@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
    --brand-red: #dc2626;
    --brand-red-hover: #b91c1c;
    --brand-blue: #1e3a8a;
    --brand-green: #059669;
    --bg-warm: #fffbeb; /* Amber-50: Critical for "Sahel" feel */
}

body {
    font-family: "Inter", sans-serif;
    background-color: var(--bg-warm);
    color: #1f2937;
    -webkit-font-smoothing: antialiased; /* Better font rendering on mobile */
}

/* --- TYPOGRAPHY REFINEMENT --- */
/* Only H1/H2 get uppercase. H3+ stay mixed case for readability */
h1,
h2,
.brand-uppercase {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    text-transform: none; /* FIXED: Better readability on mobile */
}

/* --- BUTTONS --- */
.btn-primary {
    background-color: var(--brand-red);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.2s;
    box-shadow: 0 4px 6px -1px rgba(220, 38, 38, 0.2); /* Red shadow */
}
.btn-primary:hover {
    background-color: var(--brand-red-hover);
    transform: translateY(-1px);
}

/* --- CARDS & PRICING --- */
.product-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: transform 0.2s;
}

.price-tag {
    color: var(--brand-green);
    font-weight: 800;
    font-size: 1.25rem;
    font-family: "Montserrat", sans-serif;
    letter-spacing: -0.03em;
}

/* --- NEW: TRUST BADGES (Context-Aware) --- */
/* Cyan: Information (Origin, Type) */
.badge-info {
    background-color: #ecfeff; /* cyan-50 */
    color: #0e7490; /* cyan-700 */
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    display: inline-block;
    border: 1px solid #cffafe;
}

/* Green: Certification (ISRA, Organic) */
.badge-cert {
    background-color: #ecfdf5; /* emerald-50 */
    color: #047857; /* emerald-700 */
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    display: inline-block;
    border: 1px solid #d1fae5;
}

/* Amber: Duration (Cycle: 90 days) */
.badge-cycle {
    background-color: #fffbeb; /* amber-50 */
    color: #b45309; /* amber-700 */
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    display: inline-block;
    border: 1px solid #fef3c7;
}
