.cp-grid-container {
  max-width: 1200px;
  margin: 0 auto;
}
.cp-detail-view {
  margin-bottom: 30px;
}
.cp-detail-content {
  display: flex;
  flex-direction: row-reverse; /* image on right, text on left in RTL :contentReference[oaicite:3]{index=3} */
  gap: 40px;
  align-items: center;
}
.cp-detail-image img {
  max-width: 35%;
  height: auto;
  display: block;
}
.cp-detail-text {
  flex: 1;
  text-align: left; /* force LTR for text layout */
}
.cp-detail-text h2 {
  margin-top: 0;
}
.cp-detail-text .button {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #000;
  color: #fff;
  text-decoration: none;
}
.cp-detail-image {
    width: 35%;
}
.cp-grid-items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.cp-grid-item {
  cursor: pointer;
  width: calc(33% - 10px);
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 15px;
  text-align: center;
  transition: transform .2s;
}
.cp-grid-item:hover {
  transform: translateY(-5px);
}
.cp-grid-item img {
  max-width: 80px;
  height: auto;
  margin-bottom: 10px;
}
.cp-grid-item h4 {
  margin: 0;
  font-size: 1rem;
}
