/*
Theme Name: Reforge Roast
Theme URI: https://reforgeroast.com
Author: Custom Build
Description: Custom standalone theme for Reforge Roast, replacing Blocksy.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: reforgeroast
*/

/* Modern, minimal scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #ffffff;
}
.dark ::-webkit-scrollbar-track {
    background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 4px;
}
.dark ::-webkit-scrollbar-thumb {
    background: #374151;
}
::-webkit-scrollbar-thumb:hover {
    background: #d97706;
}

/* Override default WooCommerce columns to match our Tailwind grid */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
    gap: 2rem !important;
}
@media (min-width: 1024px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}
.woocommerce ul.products li.product {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    clear: none !important;
}

/* Fix generic add to cart button text styling inside our custom wrapper */
.woocommerce ul.products li.product .add_to_cart_button {
    color: inherit;
    text-decoration: none;
}
