/* ===========================
   General
=========================== */

body{
    margin:0;
    font-family:Arial,sans-serif;
    background:#fafafa;
    color:#222;
}

.section-title{
    text-align:center;
    font-size:40px;
    margin-bottom:50px;
    color:#222;
}

/* ===========================
Categories
=========================== */

.categories-section{
    padding:80px 0;
    background:#fff;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.category-card{
    background:#fff;
    border-radius:18px;
    padding:35px 20px;
    text-align:center;
    text-decoration:none;
    color:#222;
    box-shadow:0 8px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.category-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.category-card h3{
    margin-top:18px;
    font-size:22px;
}

/* ===========================
Products
=========================== */

.featured-products,
.best-seller-section{
    padding:80px 0;
    background:#f8f8f8;
}

.woocommerce ul.products li.product{
    border-radius:18px;
    overflow:hidden;
    background:#fff;
    padding:15px;
    transition:.3s;
}

.woocommerce ul.products li.product:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.woocommerce ul.products li.product img{
    border-radius:12px;
}

/* ===========================
Features
=========================== */

.why-us{
    padding:80px 0;
    background:#fff;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.feature-box{
    background:#fafafa;
    padding:35px;
    border-radius:20px;
    text-align:center;
}

.feature-box h3{
    margin:20px 0 10px;
}

/* ===========================
Newsletter
=========================== */

.newsletter{
    padding:80px 20px;
    background:#1a1a1a;
    color:#fff;
    text-align:center;
}

.newsletter input{
    width:320px;
    max-width:90%;
    padding:15px;
    border:none;
    border-radius:40px;
}

.newsletter button{
    padding:15px 28px;
    border:none;
    border-radius:40px;
    background:#d4af37;
    color:#fff;
    cursor:pointer;
    margin-left:10px;
}