
  .tv-prod-section {
    padding: 40px 32px;
    background-color: #f6f3f2;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
  }

  .tv-prod-inner {
    max-width: 1280px;
    margin: 0 auto;
  }

  .tv-prod-inner h2 {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #1b1c1c;
    letter-spacing: -0.02em;
    text-align: center;
    margin: 0 0 64px 0;
  }

  .tv-prod-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  @media (min-width: 768px) {
    .tv-prod-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .tv-prod-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(193, 198, 215, 0.15);
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
  }

  .tv-prod-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    transform: translateY(-4px);
  }

  .tv-prod-img-wrap {
    height: 256px;
    overflow: hidden;
  }

  .tv-prod-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
  }

  .tv-prod-card:hover .tv-prod-img-wrap img {
    transform: scale(1.08);
  }

  .tv-prod-body {
    padding: 32px;
  }

  .tv-prod-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 8px;
  }

  .tv-prod-title-row h3 {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #1b1c1c;
    margin: 0;
  }

  .tv-prod-badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .tv-prod-badge-new  { background: #d8e2ff; color: #0057bf; }
  .tv-prod-badge-hot  { background: #FF6600; color: #ffffff; }
  .tv-prod-badge-eco  { background: #d8e2ff; color: #0d4491; }

  .tv-prod-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #414754;
    font-size: 0.875rem;
  }

  .tv-prod-features li {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .tv-prod-features .tv-check {
    font-family: 'Material Symbols Outlined';
    font-size: 16px;
    color: #0057bf;
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    line-height: 1;
    flex-shrink: 0;
  }

  .tv-prod-btn {
    display: block;
    width: 100%;
    padding: 12px 0;
    border-radius: 12px;
    border: 2px solid #0057bf;
    background: transparent;
    color: #0057bf;
    font-family: 'Manrope', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
  }

  .tv-prod-btn:hover {
    background: #0057bf;
    color: #ffffff;
  }
