/*
Theme Name: Storefront Child
Template: storefront
Version: 1.0
*/

ul.products {
    display:grid !important;
    grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
    gap:20px;
}

.product-card { list-style:none; }

.card-inner {
    background:#fff;
    border-radius:16px;
    padding:18px;
    box-shadow:0 10px 25px rgba(0,0,0,0.06);
    transition:0.2s;
}

.card-inner:hover { transform:translateY(-4px); }

.flag { width:28px; margin-bottom:10px; }

.country { font-size:13px; color:#666; }

.title { font-size:16px; margin:6px 0; }

.meta { font-size:12px; color:#999; }

.price { font-size:20px; font-weight:600; margin:10px 0; }

.buy-btn {
    display:block;
    background:#000;
    color:#fff;
    padding:10px;
    border-radius:10px;
    text-align:center;
    text-decoration:none;
}

.hero {
    text-align:center;
    padding:60px 20px;
}

.search {
    margin-top:20px;
    padding:12px;
    width:300px;
    border-radius:10px;
    border:1px solid #ddd;
}

.woocommerce ul.products li.product img {
    border-radius:12px;
    margin-bottom:10px;
}

.card-inner img {
    width:100%;
    border-radius:12px;
}