/* Shared mobile listing cards. Product pages and desktop layouts stay unchanged. */
@media (max-width: 640px) {
  .aq-catalog .aq-catalog__grid,
  .aq-kit-catalog .aq-kit-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .aq-catalog .aq-product,
  .aq-kit-catalog .aq-kit-card {
    border-radius: 22px;
  }

  .aq-catalog .aq-product__img,
  .aq-kit-catalog .aq-kit-card__visual {
    height: 200px;
    /* Overrides the older inline !important image padding. */
    padding: 20px !important;
    flex-shrink: 0;
  }

  .aq-catalog .aq-product__brand,
  .aq-kit-catalog .aq-kit-card__visual span {
    top: 12px;
    left: 12px;
    padding: 6px 10px;
    font-size: 0.75rem;
  }

  .aq-catalog .aq-product__body {
    padding: 14px 16px 16px;
  }

  .aq-kit-catalog .aq-kit-card__body {
    padding: 14px 16px 12px;
  }

  .aq-catalog .aq-product__title,
  .aq-kit-catalog .aq-kit-card h2 {
    margin: 0 0 10px;
    font-size: 1.25rem;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .aq-catalog .aq-product__specs {
    gap: 6px;
    margin-bottom: 12px;
    font-size: 0.875rem;
    line-height: 1.4;
  }

  .aq-catalog .aq-product__specs div {
    gap: 10px;
    padding-bottom: 5px;
  }

  .aq-catalog .aq-product__specs b,
  .aq-catalog .aq-product__specs span {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .aq-kit-catalog .aq-kit-card__specs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 12px;
  }

  .aq-kit-catalog .aq-kit-card__specs span {
    padding: 8px 4px;
    font-size: 0.875rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .aq-kit-catalog .aq-kit-card__specs b {
    font-size: 0.875rem;
    white-space: normal;
  }

  .aq-catalog .aq-product__price,
  .aq-kit-catalog .aq-kit-card__price {
    font-size: 1.5rem;
    line-height: 1.25;
  }

  .aq-catalog .aq-product__price {
    margin-bottom: 12px;
  }

  .aq-catalog .aq-product__buttons,
  .aq-kit-catalog .aq-kit-card__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .aq-kit-catalog .aq-kit-card__actions {
    padding: 0 16px 16px;
  }

  .aq-catalog .aq-product__btn,
  .aq-kit-catalog .aq-kit-card__actions a {
    min-width: 0;
    min-height: 48px;
    height: auto;
    padding: 10px 8px;
    font-size: 0.875rem;
    line-height: 1.3;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
  }
}
