
    .td1-card {
      width: 200px;
      min-width: 200px;
      background: #fff;
      border: 1px solid #e5e7eb;
      border-radius: 12px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      margin: 0 8px;
      transition: all .3s ease;
      cursor: pointer;
      position: relative;
    }
    
    .td1-image-box {
      height: 160px;
      margin: 12px;
      border-radius: 8px;
      background: linear-gradient(135deg,#f9fafb,#f3f4f6);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .td1-image-box img {
      max-width: 90%;
      max-height: 90%;
      object-fit: contain;
    }
    
    
    /* Title */
    .td1-title {
      font-size: 13px;
      font-weight: 500;
      color: #1f2937;
      margin: 0 12px 6px;
      line-height: 1.4;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    
    /* Price */
    .td1-price-wrap {
      margin: 0 12px 6px;
      display: flex;
      gap: 6px;
      align-items: center;
    }
    
    .td1-price { font-size: 12px; font-weight: 700; }
    .td1-mrp { font-size: 11px; color: #9ca3af; text-decoration: line-through; }
    
    /* Rating */
    .td1-rating {
      margin: 0 12px 6px;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    
    .td1-stars i {
      font-size: 13px;
      color: #FFD700;
    }
    
    .td1-rating-badge {
      font-size: 10px;
      background: #16a34a;
      color: #fff;
      padding: 2px 6px;
      border-radius: 5px;
    }
    
    /* BV / CB */
    .td1-bv-cb {
      margin: 0 12px 6px;
      font-size: 12px;
      background: #ecfdf5;
      color: #059669;
      padding: 6px 8px;
      border-radius: 6px;
      font-weight: 600;
    }
    
    
    /* Tablet */
    @media (max-width: 1024px) {
      .td1-card {
        width: 200px;
        min-width: 180px;
      }
    }
    
    @media (max-width: 640px) {
      .td1-card {
        width: calc(50% - 8px);
        min-width: calc(50% - 8px);
        margin: 0 4px;
      }
    
      .td1-image-box {
        height: 120px;
        margin: 10px;
      }
    
      .td1-title {
        font-size: 13px;
      }
    
      .td1-price {
        font-size: 12px;
      }
    
      .td1-mrp {
        font-size: 12px;
      }
    } .badge-discount {
   

      position: absolute;
      background: #388e3c;
      color: #fff;
      font-size: 10px;
      padding: 3px 6px;
      border-radius: 3px;
    }
    
    