  /* --- Product Grid --- */
  .link-product {
      text-decoration: none;
  }

  .product-card {
      border: 1px solid var(--border-color);
      border-radius: 12px;
      transition: all 0.3s;
      display: flex;
      flex-direction: column;
      text-align: center;
  }

  .product-card:hover {
      border-color: var(--primary-color);
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  }

  .product-img-container {
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 15px;
      background-color: #fcfcfc;
      border-bottom: 1px solid var(--border-color);
      height: 50%;
  }

  .product-img-container img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
  }

  .to-price {
      font-family: var(--Regular);
  }

  .price-tag {
      font-family: var(--Bold);
      /* font-weight: 700; */
      color: var(--primary-color);
      font-size: 0.95rem;
  }

  .btn-primary {
      font-family: var(--Regular) !important;
      background-color: var(--secondary-color) !important;
      border-color: var(--secondary-color) !important;
  }

  .text-primary {
      color: var(--primary-color) !important;
  }

  /* 7 columnas en escritorio */
  @media (min-width: 1200px) {
      .col-xl-7-cols {
          flex: 0 0 auto;
          width: 14.2857%;
      }
  }

  .product-card .card-title {
      font-family: var(--Regular);
      font-size: 1rem;
      height: 1.3rem;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
  }