/*
Theme Name: My WooCommerce Theme
Theme URI: 
Author: Your Name
Author URI: 
Description: Custom WooCommerce Theme
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-woocommerce-theme
*/

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Header Styles */
header {
    background: #23282d;
    color: white;
    padding: 20px 0;
}

/* WooCommerce Specific Styles */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    width: 22%;
    margin-right: 3.8%;
}

.woocommerce .quantity .qty {
    width: 60px;
    padding: 8px;
}

.woocommerce button.button {
    background: #96588a;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
}

.woocommerce button.button:hover {
    background: #7e4a74;
}
/* Custom Header Styles */
.custom-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: relative;
    z-index: 999;
}

.custom-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-header .logo img {
    max-height: 60px;
    width: auto;
}

.custom-header .main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.custom-header .main-nav ul li {
    margin: 0 15px;
}

.custom-header .header-actions {
    display: flex;
    align-items: center;
}

/* Custom Footer Styles */
.custom-footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 40px 0 20px;
}

.custom-footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

.custom-footer .footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.custom-footer h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 18px;
}

.custom-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-footer ul li {
    margin-bottom: 10px;
}

.custom-footer ul li a {
    color: #ecf0f1;
    text-decoration: none;
}

.custom-footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
}





.header-cart {
    position: relative;
    display: inline-block;
    margin-left: 20px;
}
.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff0000;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
}