/* Bright Sun product-card button repair layer */
.product-card-actions {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
  justify-content: stretch !important;
  gap: 16px !important;
  width: 100% !important;
  margin-top: auto !important;
}
.product-card-actions > a {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  min-height: 52px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 14px 20px !important;
  border-radius: 8px !important;
  text-align: center !important;
  line-height: 1.2 !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  text-decoration: none !important;
}
.product-card-actions .secondary-detail-link {
  background: #fff !important;
  border: 1px solid rgba(15,56,48,.24) !important;
  color: var(--brand-primary) !important;
}
.product-card-actions .inquiry-btn {
  padding: 16px 24px !important;
  border: 0 !important;
  color: #fff !important;
  background: linear-gradient(135deg, var(--brand-orange), #d75f0d) !important;
  box-shadow: 0 10px 24px rgba(242,124,34,.24) !important;
}
.product-card-actions .inquiry-btn:hover {
  background: linear-gradient(135deg, #ff8b32, #c95008) !important;
}
.product-card-actions .inquiry-btn span,
.product-card-actions .secondary-detail-link span {
  min-width: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: auto !important;
  text-align: center !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
}
body.rtl .product-card-actions,
html[dir="rtl"] .product-card-actions {
  direction: rtl !important;
}
body.rtl .product-card-actions .inquiry-btn,
body.rtl .product-card-actions .secondary-detail-link,
html[dir="rtl"] .product-card-actions .inquiry-btn,
html[dir="rtl"] .product-card-actions .secondary-detail-link {
  flex-direction: row-reverse !important;
}
body.rtl .product-card-actions .fa-arrow-right,
html[dir="rtl"] .product-card-actions .fa-arrow-right {
  transform: scaleX(-1) !important;
}
@media (max-width: 760px) {
  .product-card-actions {
    flex-direction: column !important;
  }
  .product-card-actions > a {
    width: 100% !important;
    flex-basis: auto !important;
  }
}
