/*
Theme Name: My Tech Shop
Author: Your Name
Description: A custom WooCommerce theme for electronics and hardware.
Version: 1.0
*/

/* কিছু বেসিক রিসেট CSS */
body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}
/* হেডার ডিজাইন */
.site-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* লোগো */
.logo h1 {
    margin: 0;
    font-size: 24px;
}
.logo a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

/* মেনু */
.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.nav-menu li a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu li a:hover {
    color: #0073aa; /* আপনার ব্র্যান্ড কালার */
}

/* মোবাইল রেসপন্সিভ */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }
    .nav-menu {
        flex-direction: column;
        margin-top: 15px;
        gap: 10px;
    }
}

/* প্রোডাক্ট ইমেজের সাইজ ফিক্স করা */
.woocommerce ul.products li.product a img {
    width: 100%;
    height: 200px; /* ইমেজের হাইট ফিক্সড রাখা */
    object-fit: contain; /* ইমেজ ক্রপ না হয়ে পুরোটা দেখাবে */
    margin-bottom: 15px;
    background: #fff;
}

/* প্রোডাক্ট টাইটেল */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    min-height: 44px; /* দুই লাইন টাইটেলের জন্য জায়গা রাখা */
    margin-bottom: 10px;
}

/* দাম (Price) হাইলাইট করা */
.woocommerce ul.products li.product .price {
    color: #e74c3c; /* প্রাইসের জন্য লাল বা কড়া রং */
    font-weight: 700;
    font-size: 18px;
    display: block;
    margin-bottom: 15px;
}

/* Add to Cart বাটন ডিজাইন */
.woocommerce ul.products li.product .button {
    display: block;
    background: #222;
    color: #fff;
    padding: 10px;
    text-align: center;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

.woocommerce ul.products li.product .button:hover {
    background: #0073aa; /* আপনার ব্র্যান্ড কালার */
}