/*
Theme Name: Buryan
Theme URI: https://example.com/buryan
Author: Your Name
Author URI: https://example.com
Description: Custom WordPress theme with WooCommerce support
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: buryan
Tags: woocommerce, e-commerce, custom
*/

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.site-title a {
    color: #333;
    text-decoration: none;
}

/* Navigation */
.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-navigation a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.main-navigation a:hover {
    color: #0066cc;
}

/* Main Content */
.site-main {
    padding: 40px 0;
    min-height: 60vh;
}

/* Footer */
.site-footer {
    background-color: #f5f5f5;
    padding: 30px 0;
    margin-top: 50px;
    text-align: center;
    border-top: 1px solid #eee;
}

/* WooCommerce Styles */
.woocommerce-page .container {
    max-width: 1200px;
    margin: 0 auto;
}

.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
}

.woocommerce ul.products li.product {
    text-align: center;
    border: 1px solid #eee;
    padding: 20px;
    transition: box-shadow 0.3s;
}

.woocommerce ul.products li.product:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.woocommerce ul.products li.product img {
    max-width: 100%;
    height: auto;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 18px;
    margin: 15px 0 10px;
}

.woocommerce ul.products li.product .price {
    font-size: 20px;
    color: #0066cc;
    font-weight: bold;
}

.woocommerce .button,
.woocommerce button.button {
    background-color: #0066cc;
    color: #fff;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

.woocommerce .button:hover,
.woocommerce button.button:hover {
    background-color: #0052a3;
}

/* Responsive */
@media (max-width: 768px) {
    .site-header .container {
        flex-direction: column;
        gap: 20px;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .woocommerce ul.products {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
}
