/*
Theme Name: Decofur Child
Theme URI: https://decofur.themejr.net
Author: PressLayouts
Description: This is a child theme for Decofur
Version: 1.0
Author URI: https://www.templatemonster.com/authors/themejr/
Template: decofur
Text Domain: themejr-theme-child
*/

/* ── Category title: remove white box, use white text + wide shadow ── */
.products .product-category .woocommerce-loop-category__title>a {
    background-color: transparent;
    color: #ffffff;
    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.6),
        0 0 8px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(0, 0, 0, 0.25);
    font-weight: 500;
    letter-spacing: 0.02em;
    max-width: none;
    padding: 9px 14px;
}

.products .product-category .woocommerce-loop-category__title>a:hover {
    color: #ffffff;
    text-shadow:
        0 1px 4px rgba(0, 0, 0, 0.7),
        0 0 10px rgba(0, 0, 0, 0.5),
        0 0 24px rgba(0, 0, 0, 0.3);
}

.products .product-category .woocommerce-loop-category__title .product-count {
    color: rgba(255, 255, 255, 0.85);
    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.5),
        0 0 8px rgba(0, 0, 0, 0.3),
        0 0 16px rgba(0, 0, 0, 0.2);
}

/* ── Force all category images to same aspect ratio ── */
.products .product-category .category-image {
    aspect-ratio: 700 / 450;
    overflow: hidden;
}

.products .product-category .category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}