/* Product brand CTA block - scoped to products page */
.brand-cta {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid #e6e0f0;
  background: linear-gradient(90deg, #fdf9ff 0%, #f6f2ff 100%);
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand-cta-logo {
  flex: 0 0 auto;
}

.brand-cta-logo img {
  max-width: 130px;
  height: auto;
  display: block;
}

.brand-cta-content {
  flex: 1;
}

.brand-cta-title {
  font-size: 18px;
  font-weight: bold;
  color: #333333;
  margin-bottom: 6px;
}

.brand-cta-text {
  font-size: 14px;
  color: #666666;
  line-height: 22px;
  margin-bottom: 10px;
}

.brand-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid #d10dd1;
  font-size: 14px;
  color: #ffffff;
  background-color: #d10dd1;
  transition: all 0.3s ease;
}

.brand-cta-button:hover {
  background-color: #9b2e8f;
  border-color: #9b2e8f;
}

@media (max-width: 1023px) {
  .brand-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-cta-logo img {
    max-width: 110px;
  }
}

