/*
 Theme Name:   Bootscore Child
 Description:  Bootscore Child Theme
 Author:       Bootscore
 Author URI:   https://bootscore.me
 Template:     bootscore
 Version:      6.0.0
 Requires at least: 5.0
 Tested up to: 6.6
 Requires PHP: 7.4
 License: MIT License
 License URI: https://github.com/bootscore/bootscore-child/blob/main/LICENSE
 Text Domain:  bootscore
*/

/* 
All style editing is done via /assets/scss/_bootscore_custom.scss
*/

/* Freccia animata nel titolo "Categorie" */
.card-header i.fa-chevron-down {
  transition: transform 0.3s ease;
}
.card-header[aria-expanded="true"] i.fa-chevron-down {
  transform: rotate(180deg);
}

/* === WooCommerce Category Cards Fix === */
.card .ratio {
  border-radius: .375rem .375rem 0 0;
}

.card img.object-fit-cover {
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover img.object-fit-cover {
  transform: scale(1.05);
}

