/*
Theme Name: Monnataz WooCommerce Theme
Theme URI: https://monnataz.local/
Author: Monnataz Dev Team
Author URI: https://monnataz.local/
Description: A custom WooCommerce-ready WordPress theme optimized for e-commerce stores. Includes WooCommerce integration, custom templates, and responsive design.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: e-commerce, woocommerce, responsive, modern
Text Domain: monnataz-woocommerce
Requires PHP: 7.4
Requires at least: 5.8
*/

/* Reset & Base Typography */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #121212;
    color: #e0e0e0;
}

/* Basic Layout */
header, footer {
    background: #1f1f1f;
    color: #e0e0e0;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #333;
}

footer {
    border-top: 1px solid #333;
    border-bottom: none;
}

a {
    color: #bb86fc;
    text-decoration: none;
}

a:hover {
    color: #fff;
    text-decoration: underline;
}

/* WooCommerce Overrides */
.woocommerce ul.products li.product .price {
    color: #bb86fc;
    font-weight: bold;
}

.woocommerce button.button,
.woocommerce a.button {
    background-color: #bb86fc;
    color: #121212 !important;
    border-radius: 4px;
    padding: 10px 20px;
}

.woocommerce button.button:hover,
.woocommerce a.button:hover {
    background-color: #a06cd5;
}

/* Product Section */
.product-section {
    padding: 40px 0;
    text-align: center;
}

.product-section h2 {
    margin-bottom: 30px;
}