/* ✅ Force 5-column layout for Product Categories Designs plugin */
.pcdfwoo-product-cat .pcdfwoo-medium-3 {
  width: 20% !important; /* 100% ÷ 5 columns */
  float: left !important;
  box-sizing: border-box;
  padding: 15px;
}

/* ✅ Clear floats after each row */
.pcdfwoo-product-cat::after {
  content: "";
  display: table;
  clear: both;
}

/* ✅ Responsive adjustments */
@media (max-width: 1024px) {
  .pcdfwoo-product-cat .pcdfwoo-medium-3 {
    width: 33.33% !important; /* 3 columns on tablets */
  }
}

@media (max-width: 768px) {
  .pcdfwoo-product-cat .pcdfwoo-medium-3 {
    width: 50% !important; /* 2 columns on mobile */
  }
}

@media (max-width: 480px) {
  .pcdfwoo-product-cat .pcdfwoo-medium-3 {
    width: 100% !important; /* 1 column on very small screens */
  }
}