/**
 * CBDFunhouse Core - Shop CSS
 * Loads on shop/category/tag pages only
 * Version: 1.0.0
 */

/* Product grid styling */
.products .product {
    transition: var(--cbdfh-transition);
}

.products .product:hover {
    transform: translateY(-3px);
    box-shadow: var(--cbdfh-shadow);
}

/* Product title */
.products .product .product-title a {
    color: var(--cbdfh-text);
    font-weight: 600;
}

.products .product .product-title a:hover {
    color: var(--cbdfh-primary);
}

/* Price styling */
.products .product .price {
    color: var(--cbdfh-primary);
    font-weight: 700;
}
