/*
Theme Name: Elessi Theme Child
Theme URI: https://elessi.nasatheme.com
Description: This is a child theme for Elessi Theme
Author: NasaTheme team
Author URI: https://nasatheme.com
Template: elessi-theme
Version: 1.0
*/


/*************** ADD YOUR CUSTOM CSS IN THIS AREA ***************/


/* Category Grid Layout */
.page-id-99656 .woocommerce ul.products.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 25px 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Each Category Card */
.page-id-99656  .woocommerce ul.products li.product-category {
  background: #fff;
  border: 0;
  border-radius: 14px;
  text-align: center;
  padding: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  overflow: hidden;
  width: 100%;
}

/* Hover Effect */
.page-id-99656  .woocommerce ul.products li.product-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Category Images */
.page-id-99656 .woocommerce ul.products li.product-category img {
  width: 100%;
  height: auto;
  margin: 0 auto 15px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.page-id-99656 .woocommerce ul.products li.product-category:hover img {
  transform: scale(1.05);
}

/* Category Titles */
.page-id-99656 .woocommerce ul.products li.product-category h2.woocommerce-loop-category__title {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin: 0;
}

/* Product count styling */
.page-id-99656 .woocommerce ul.products li.product-category h2 mark.count {
  background: #f8f8f8;
  color: #555;
  font-size: 14px;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 6px;
}
