/**
* Theme Name: CBD Retailer Child
* Author: <a href="https://www.thunder-stores.com/">Thunderstores</a>
* Description: A flexible block theme suitable for CBD-based online store, beauty and health or cosmetic products.
* Tags: blog, one-column, custom-background, custom-colors, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, block-styles, wide-blocks
* Template: cbd-retailer
* Version: 1.0.21
* License: GNU General Public License v2 or later
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
* Text Domain: cbd-retailer
*/
.CategoryTable {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
  }

  .CategoryTable td, .CategoryTable th {
    border: none;
    padding: 10px;
  }

  .CategoryTable img {
    max-width: 100px;
    height: auto;
    display: block;
    margin: 0 auto;
  }

.category-gridDDD {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.category-itemDDD {
  width: 110px;
  text-align: center;
  background-color: #fff;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.category-itemDDD:hover {
  transform: scale(1.05);
}

.category-itemDDD img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
}

.category-itemDDD p {
  margin: 0;
  font-size: 13px;
  font-weight: 300;
  color: #333;
}

/* Responsive layout for smaller screens */
@media (max-width: 768px) {
  .category-itemDDD {
    width: 30%;
  }
}

@media (max-width: 480px) {
  .category-itemDDD {
    width: 30%;
  }
}