
/*
Theme Name: Basic WooCommerce Theme
Author: OpenAI
Version: 1.0
*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,sans-serif;
    background:#f5f5f5;
    color:#222;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

header{
    background:#111;
    padding:20px 0;
}

header .header-wrap{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

header a{
    color:#fff;
    text-decoration:none;
}

nav ul{
    display:flex;
    gap:20px;
    list-style:none;
}

.hero{
    background:#fff;
    padding:100px 0;
    text-align:center;
}

.hero h1{
    font-size:52px;
    margin-bottom:20px;
}

.hero p{
    margin-bottom:25px;
    font-size:18px;
}

.btn{
    display:inline-block;
    background:#111;
    color:#fff;
    padding:14px 24px;
    text-decoration:none;
    border-radius:6px;
}

.products{
    padding:60px 0;
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.product-card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    padding:20px;
    text-align:center;
}

.product-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.product-card h3{
    margin:15px 0 10px;
}

footer{
    background:#111;
    color:#fff;
    text-align:center;
    padding:25px 0;
    margin-top:40px;
}
