/*
WOO CUSTOM STYLESHEET
---------------------

Instructions:

Add your custom styles in this file instead of style.css so it
is easier to update the theme. Simply copy an existing style
from style.css to this file, and modify it to your liking. */


/* GLOBAL STYLES
----------------
Add styles beneath this line that you want to be applied across your entire site */




/* DESKTOP STYLES
-----------------
Add styles inside the media query below that you only want to be applied to the desktop layout of your site */
@media only screen and (min-width: 768px) {
	/* Desktop styles go below this line */


	
}

// Add Hyperlinks to Attributes in Additional Information Tab on Product Page
add_filter ('woocommerce_attribute', 'rb_link_attributes', 10, 3);
	function rb_link_attributes($attributes_string, $attribute, $terms) {
		global $post;
		$taxonomy = get_taxonomy( $attribute['name'] );

		if ( $taxonomy && ! is_wp_error( $taxonomy ) ) {
			$attribute_string = '';
			$terms = wp_get_post_terms( $post->ID, $taxonomy->name );

			if ( !empty( $terms ) ) {
				foreach ( $terms as $term ) {
					if (strlen($attribute_string) > 0) {
						$attribute_string .= ', ';
					}
					$archive_link = get_term_link( $term->slug, $attribute['name'] );
					$attribute_string .= '<a href="' . $archive_link . '">'. $term->name . '</a>';
				}
			}
		}
		return '<p>'.$attribute_string.'</p>';
	}

/* Product list */
h2.woocommerce-loop-product__title{
font-size:20px!important
}