/*
Theme Name: Artday Child Theme
Theme URI: http://artday-wp.wossthemes.com
Description: Ecommerce Single Product Theme that can be used by a creative artist, agency, shop, for selling your prints. 
Author: WossThemes
Author URI: http://themeforest.net/user/wossthemes
Template: artday
Version: 1.1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: light, white, red
Text Domain: artday
*/

/* Import the original Parent Theme Styles */
@import url("../artday/style.css");

h3.ws-item-title {
    font-size: 16px;
}
.ws-page-container ul.products li.product h2, .woocommerce ul.products li.product h2.woocommerce-loop-product__title {
    font-size: 16px;
}

.ws-shop-nav {
    list-style: none;
    display: flex;
    flex-wrap: wrap; /* Wrap if there are many categories */
	padding:revert !important;
}

.ws-shop-nav .category-item {
    margin-right: 20px;
    display: flex; /* Use flexbox to align subcategories with parent */
    align-items: center; /* Vertically align items */
}

.ws-shop-nav .category-item > a {
    margin-right: 10px; /* Space between parent category and subcategories */
}
ul.ws-shop-nav li a{
	padding:0 12px;
}
.subcategory-list {
    display: flex; /* Ensure subcategories are in a row */
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.archive ul.ws-shop-nav:first-child {
    display: none;
}
.subcategory-list .subcategory-item {
    display: inline-block; /* Subcategories inline */
    margin-right: 10px; /* Space between subcategories */
}

.subcategory-list .subcategory-item:last-child {
    margin-right: 0; /* Remove margin from the last subcategory */
}

.ws-shop-nav a {
    text-decoration: none;
    color: #000;
    padding: 5px;
}

.ws-shop-nav a:hover {
    text-decoration: underline;
}
/* Hide Add to Cart button and quantity input when Get a Quote button is visible */
body.get-quote-button-active .single_add_to_cart_button,
body.get-quote-button-active .quantity {
    display: none;
}

