.cc_cz58wx1d_card_product_name .kombos-card-product-name {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.375rem;
  width: 100%;
  max-width: 100%;
  /* Reserve space on the right for the absolutely-positioned + button so
     the name text never sits under the button hit area. */
  padding-right: 2.5rem;
}

@media (min-width: 768px) {
.cc_cz58wx1d_card_product_name .kombos-card-product-name {
    padding-right: 0;
  }
}

.cc_cz58wx1d_card_product_name .kombos-card-product-name__link {
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--kombos-gray-900);
  text-decoration: none;
  min-width: 0;
}

.cc_cz58wx1d_card_product_name .kombos-card-product-name__link:hover {
  text-decoration: underline;
}

.cc_cz58wx1d_card_product_name .kombos-card-product-name__link--single-line {
  -webkit-line-clamp: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* Quick view "+" — mobile only. Absolutely positioned in the top-right
   of the name container so the 40×40 hit area can't overlap the name
   link (negative-margin approach caused intermittent taps to land on
   the link instead of the button). z-index keeps it above the link. */
.cc_cz58wx1d_card_product_name .kombos-card-product-name__quick-view {
  position: absolute;
  top: -0.25rem;
  right: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  color: var(--kombos-gray-900);
  font-size: 1rem;
  transition: color 0.15s ease;
}

.cc_cz58wx1d_card_product_name .kombos-card-product-name__quick-view svg {
  width: 1.125rem;
  height: 1.125rem;
}

.cc_cz58wx1d_card_product_name .kombos-card-product-name__quick-view:hover {
  color: var(--kombos-gray-700);
}

@media (min-width: 768px) {
.cc_cz58wx1d_card_product_name .kombos-card-product-name__quick-view {
    display: none;
  }
}
