/* আরিয়ানো স্টাইল - কমপ্লিট ওভাররাইড */
* { box-sizing: border-box; }
body { font-family: sans-serif; margin: 0; padding: 0; background: #fff; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }

/* হেডার ও মেনুবার */
.site-header { padding: 20px 0; border-bottom: 1px solid #eee; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }
.main-navigation { background: #fff; border-bottom: 2px solid #e91e63; margin-bottom: 30px; }
.main-navigation ul { display: flex; list-style: none; padding: 0; margin: 0; }
.main-navigation ul li { padding: 15px 20px; font-weight: bold; }

/* প্রোডাক্ট গ্রিড (৪ কলাম) */
.woocommerce ul.products { 
    display: grid !important; 
    grid-template-columns: repeat(4, 1fr) !important; 
    gap: 20px !important; 
    list-style: none !important; 
    padding: 0 !important;
}
.woocommerce ul.products li.product { 
    border: 1px solid #eee; 
    padding: 15px; 
    text-align: center; 
    transition: 0.3s;
}

/* বাটন ও প্রাইস */
.button.add_to_cart_button { background: #000; color: #fff; padding: 10px 20px; text-transform: uppercase; font-size: 12px; display: inline-block; }
.woocommerce ul.products li.product .price { font-weight: bold; display: block; margin: 10px 0; }

/* মোবাইল রেসপন্সিভ */
@media (max-width: 768px) {
    .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; }
}