/* ==========================================
        FARMERKART DESIGN SYSTEM
========================================== */

/* Google Font */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Reset */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* Root Variables */

:root{

    --primary:#2E7D32;
    --primary-light:#4CAF50;

    --secondary:#FF9800;

    --dark:#222222;

    --gray:#666666;

    --light:#F8F9FA;

    --white:#ffffff;

    --border:#E5E7EB;

    --radius:16px;

    --shadow:0 8px 25px rgba(0,0,0,.08);

}

/* Body */

body{

    font-family:'Poppins',sans-serif;

    background:#F5F6FA;

    color:var(--dark);

    overflow-x:hidden;

}

/* Images */

img{

    width:100%;

    display:block;

}

/* Links */

a{

    text-decoration:none;

    color:inherit;

}

/* Lists */

ul{

    list-style:none;

}

/* Buttons */

button{

    cursor:pointer;

    border:none;

    outline:none;

}

/* Inputs */

input{

    outline:none;

}

/* Section */

section{

    padding:60px 0;

}

/* Container */

.container{

    width:92%;

    max-width:1400px;

    margin:auto;

}

/* Titles */

.section-title{

    font-size:36px;

    font-weight:700;

    margin-bottom:10px;

}

.section-subtitle{

    color:var(--gray);

    margin-bottom:40px;

}

/* Cards */

.card{

    background:var(--white);

    border-radius:16px;

    box-shadow:var(--shadow);

}