/**
 * IT-Room Datasheet - Front Office Styles
 * Compatible PrestaShop 1.7 & 8.x
 */

.product-datasheet {
  margin: 30px 0;
  padding: 20px;
  background-color: #f9f9f9;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
}

.product-datasheet .datasheet-title {
  font-size: 20px;
  font-weight: 600;
  color: #363a41;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #25b9d7;
}

.product-datasheet .datasheet-image-wrapper {
  text-align: center;
  background-color: #fff;
  padding: 15px;
  border-radius: 4px;
}

.product-datasheet .datasheet-image {
  max-width: 100%;
  height: auto;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  transition: transform 0.3s ease;
}

.product-datasheet .datasheet-image:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: zoom-in;
}

/* Responsive */
@media (max-width: 768px) {
  .product-datasheet {
    margin: 20px 0;
    padding: 15px;
  }

  .product-datasheet .datasheet-title {
    font-size: 18px;
  }

  .product-datasheet .datasheet-image-wrapper {
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .product-datasheet {
    padding: 10px;
    margin: 15px 0;
  }

  .product-datasheet .datasheet-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

