<!-- start Simple Custom CSS and JS -->
<style type="text/css">
.producer-item {
  border: 1px solid #eae4ec;
  padding: 40px;
  box-sizing: border-box;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;	
   transition: 0.3s;
}

.producer-item:hover {
  border: 1px solid #7c1c92;	
}

.producer-item.producer-box {
  height: auto;
}

.product-description-col h3 {
  margin-bottom: -22px;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 600;
}

.product-description-col p {
  text-align: justify;
}

.product-item {
  border: 1px solid #eae4ec;
  background: #fbf8fd;
  text-align: center;
  padding: 40px;
  box-sizing: border-box;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;	
  min-height: 300px;
  transition: 0.3s;	
}

.product-item:hover {
  background: #7c1c92;
  color: #fff	
}

.product-item h5 {
  color: #7c1c92;
  text-transform: uppercase;
    transition: 0.3s;		
}

.product-item:hover h5 {
  color: #fff	
}

.prod-tab-wrap {
  overflow: hidden;
  padding: 20px;
  background: #fbf8fd;
}

.prod-tab-item {
  display: flex;
  align-items: center;
  padding: 5% 2%;
  gap: 20px;
  border-bottom: 1px solid rgba(161,12,75,.08);
}

.prod-tab-item-param {
  flex-basis: 44%;
  text-align: right;
  line-height: 22px;
}

.prod-tab-item-value {
  flex-basis: 50%;
  font-weight: 600;
  line-height: 22px;
}

.prod-tab-item:last-child {
  border-bottom: none;
}

.prod-pdf-grids {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  justify-content: center;
}

.prod-pdf-grid {
  background-color: #fbf8fd;
  text-align: center;
  padding: 25px 15px;
  text-decoration: none;
  color: #000;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
	border: 1px solid #fbf8fd;
}

.prod-pdf-grid:hover {
  border: 1px solid #7c1c92;
}

.prod-pdf-grid img {
  width: 60px;
  height: auto;
  margin-bottom: 15px;
  transition: transform 0.2s ease;
}

.prod-pdf-grid span {
  display: block;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  line-height: 20px;
}

/* 📱 Responsywność – na mobilnych 1 kafelek */
@media (max-width: 768px) {
  .prod-pdf-grids {
    grid-template-columns: 1fr;
  }
}
</style>
<!-- end Simple Custom CSS and JS -->
