body{
    margin:0;
    padding:0;
    font-family:Arial,sans-serif;
}

.hero-section{
    background:#f5f5f5;
    padding:100px 20px;
    text-align:center;
}

.hero-section h1{
    font-size:48px;
    margin-bottom:20px;
}

.shop-btn{
    background:#1f5f2d;
    color:#fff;
    padding:14px 30px;
    text-decoration:none;
    border-radius:6px;
    display:inline-block;
}

.home-categories{
    padding:60px 20px;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.category-card{
    text-align:center;
    background:#fff;
    border-radius:14px;
    padding:20px;
    text-decoration:none;
    color:#000;
    box-shadow:0 2px 12px rgba(0,0,0,0.08);
}

.category-card img{
    width:100%;
    border-radius:10px;
}

.shop-page{
    padding:40px 20px;
}

.custom-products-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.product-card{
    background:#fff;
    border-radius:14px;
    padding:20px;
    text-align:center;
    box-shadow:0 2px 12px rgba(0,0,0,0.08);
}

.product-card img{
    width:100%;
    border-radius:10px;
}

.product-card h2{
    font-size:22px;
    margin-top:15px;
}

.product-card .price{
    color:#0b7a28;
    font-size:24px;
    font-weight:bold;
}

.site-footer{
    background:#111;
    color:#fff;
    padding:50px 20px;
}

.footer-inner{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.site-footer a{
    color:#fff;
    text-decoration:none;
}