/*
Theme Name: FabloShop
Theme URI: https://fablo.com.tr
Author: Fablo
Author URI: https://fablo.com.tr
Description: Custom WooCommerce theme for Fablo Shop
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fabloshop
Tags: woocommerce, custom, shop
*/

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #333;
}

/* WooCommerce specific styles */
.woocommerce {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Product grid styles */
.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

/* Product card styles */
.product {
    border-radius: 8px;
    transition: transform 0.2s;
}

.product:hover {
    transform: none;
    box-shadow: none;
}

/* Button styles */
.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.button:hover {
    background-color: #005177;
}
