/* ===== MOBILE PRODUCT TILE STYLES ===== */
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr !important;
  }

  .product-tile {
    padding: 16px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 16px;
  }

  .product-tile img {
    width: 100%;
    height: auto;
    border-radius: 6px;
  }

  .product-info h2 {
    font-size: 16px;
    margin: 12px 0 8px;
  }

  .product-info .price {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-bottom: 6px;
  }

  .condition-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    color: white;
    margin-bottom: 6px;
  }

  .badge-shiny {
    background-color: #28a745; /* green */
  }

  .badge-sturdy {
    background-color: #fd7e14; /* orange */
  }

  .badge-stallone {
    background-color: #dc3545; /* red */
  }

  .product-meta-details {
    display: none;
    margin-top: 8px;
    font-size: 13px;
    color: #555;
  }

  .tile-cta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
  }

  .tile-cta .button {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    border-radius: 6px;
  }

  .expand-details {
    font-size: 13px;
    color: #0073aa;
    text-align: center;
    margin-top: 8px;
    cursor: pointer;
  }
}
