/*
Theme Name: Stackvara WordPress
Theme URI: https://stackvara.com
Author: Stackvara
Author URI: https://stackvara.com
Description: A premium dark mode WooCommerce FSE theme tailored for digital product marketplaces.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: stackvara-wordpress
Tags: full-site-editing, e-commerce, dark-mode
*/

/* Add global CSS resets and custom utilities if needed */

body {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ensure images don't exceed container */
img {
    max-width: 100%;
    height: auto;
}

/* Custom WooCommerce overrides */
.woocommerce ul.products li.product {
    background-color: var(--wp--preset--color--surface);
    border-radius: 8px;
    padding: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.woocommerce div.product p.price, .woocommerce div.product span.price {
    color: var(--wp--preset--color--foreground);
    font-weight: 800;
}

.woocommerce-product-gallery {
    border-radius: 12px;
    overflow: hidden;
}

.woocommerce-tabs ul.tabs {
    padding: 0;
}

/* Clean up button appearance */
.button, .wc-block-components-button {
    text-transform: none;
    transition: opacity 0.2s ease;
}

.button:hover, .wc-block-components-button:hover {
    opacity: 0.9;
}
