.elementor-931 .elementor-element.elementor-element-56e3bcb{--display:flex;}.elementor-931 .elementor-element.elementor-element-9d68b22.elementor-wc-products  ul.products{grid-column-gap:20px;grid-row-gap:40px;}/* Start custom CSS for wc-categories, class: .elementor-element-9d68b22 *//* ==========================================
   Product Card Container
   ========================================== */
.product-category {
    background: #f5f5f5 !important;
    border-radius: 12px !important;
    padding: 25px !important;
    text-align: center !important;
    overflow: hidden !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Card Hover Effect */
.product-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Make category link a flex block container */
.product-category > a {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-decoration: none !important;
}

/* Remove unwanted WooCommerce default overlays */
.product-category::before,
.product-category::after,
.product-category a::before,
.product-category a::after {
    display: none !important;
    content: none !important;
}

/* ==========================================
   Card Elements (Image, Title, Count)
   ========================================== */
/* Product Image */
.product-category img {
    width: 100% !important;
    height: 250px !important;
    object-fit: contain !important;
    margin-bottom: 20px !important;
}

/* Title Styled Directly as a Button */
.woocommerce-loop-category__title {
    display: inline-block !important;
    width: 100% !important;
    max-width: 200px !important; /* Limits width so it looks like a button */
    margin: 15px auto 0 !important;
    padding: 14px 20px !important;
    background: #000 !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    line-height: 1.4 !important;
    border-radius: 50px !important;
    transition: background 0.3s ease !important;
}

/* Change Title Button Color on Hover */
.product-category:hover .woocommerce-loop-category__title {
    background: #333 !important; /* Shifts to dark grey when card is hovered */
}

/* Hide the Product Count (e.g., "4 Products") */
.count {
    display: none !important;
}/* End custom CSS */