/* Minimal styles for APAR Products element */
.apar-products-grid { display: grid; gap: 24px; }
.apar-cat-col-1 { grid-template-columns: 1fr; }
.apar-cat-col-2 { grid-template-columns: repeat(2, 1fr); }
.apar-cat-col-3 { grid-template-columns: repeat(3, 1fr); }

.apar-product-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
  overflow: hidden;
}

.apar-product-card-image {
  overflow: hidden;
  height: 224px;
}

.apar-product-card-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.apar-product-card-image img:hover {
  transform: scale(1.10);
}

.apar-product-card-body {
  padding: 16px;
}

.apar-product-card-title {
  margin: 0 0 12px;
  font-size: 18px;
}

.apar-product-list {
  list-style-type: disc;
  margin-left: 10px;
}

.apar-product-list li {
  margin-bottom: 8px;
  color: #070400;
  position: relative;
}

.apar-product-list li::marker {
  color: #f7941d; /* brand orange bullets */
}

.apar-product-list li a {
  color: #070400;
  text-decoration: none;
  transition: color 0.3s ease;
}

.apar-product-list li a:hover {
  color: #f7941d; /* hover text color */
}

.apar-no-products {
  color: #777;
  font-size: 14px;
}

.apar-products.no-products {
  padding: 24px;
  text-align: center;
  color: #666;
}

/* Responsive Layouts */
@media (max-width: 800px) {
  .apar-cat-col-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .apar-cat-col-3, .apar-cat-col-2 { grid-template-columns: 1fr; }
}
