/* ==========================================
   FARMERKART HOME PAGE
========================================== */

.hero{
    background:#f5fbf4;
    padding:70px 0;
}

.grid-2{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.hero-tag{
    display:inline-block;
    background:#e8f5e9;
    color:#2e7d32;
    padding:10px 20px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:20px;
}

.hero h1{
    font-size:56px;
    line-height:1.15;
    font-weight:700;
    color:#222;
    margin-bottom:25px;
}

.hero p{
    font-size:20px;
    color:#555;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.hero-image img{
    width:100%;
    max-width:650px;
    display:block;
    margin:auto;
}

/* ==========================================
   SECTION
========================================== */

.section{
    padding:70px 0;
}

.section-title{
    font-size:38px;
    font-weight:700;
    margin-bottom:35px;
    color:#222;
}

/* ==========================================
   CATEGORY
========================================== */

.category-slider{
    display:flex;
    gap:20px;
    overflow-x:auto;
    padding-bottom:10px;
    scrollbar-width:none;
}

.category-slider::-webkit-scrollbar{
    display:none;
}

.category-card{
    min-width:120px;
    background:#fff;
    border-radius:18px;
    text-align:center;
    padding:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
    cursor:pointer;
}

.category-card:hover{
    transform:translateY(-6px);
}

.category-icon{
    font-size:40px;
    margin-bottom:12px;
}

.category-name{
    font-weight:600;
    color:#333;
}

/* ==========================================
   PRODUCTS
========================================== */

.products-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.product-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.product-card:hover{
    transform:translateY(-8px);
}

.product-image{
    height:220px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fafafa;
}

.product-image img{
    width:80%;
}

.product-info{
    padding:20px;
}

.product-title{
    font-size:18px;
    font-weight:600;
    margin-bottom:10px;
}

.product-price{
    font-size:28px;
    font-weight:700;
    color:#2e7d32;
    margin-bottom:18px;
}

.product-btn{
    display:block;
    width:100%;
    background:#2e7d32;
    color:#fff;
    text-align:center;
    padding:14px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.product-btn:hover{
    background:#1b5e20;
}
/* ==========================================
   TRUST SECTION
========================================== */

.trust-section{
    background:#ffffff;
}

.section-header{
    text-align:center;
    margin-bottom:50px;
}

.section-subtitle{
    max-width:700px;
    margin:15px auto 0;
    color:#666;
    font-size:18px;
    line-height:1.7;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.trust-card{
    background:#fff;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.trust-card:hover{
    transform:translateY(-8px);
}

.trust-icon{
    font-size:52px;
    margin-bottom:20px;
}

.trust-card h3{
    font-size:22px;
    margin-bottom:15px;
    color:#222;
}

.trust-card p{
    color:#666;
    line-height:1.7;
}

/* Mobile */

@media(max-width:768px){

.trust-grid{
    grid-template-columns:1fr;
}

}